Thread Tools Display Modes
05-25-16, 06:24 PM   #21
galvin
A Frostmaul Preserver
AddOn Author - Click to view addons
Join Date: Nov 2006
Posts: 265
Do animation groups have a maxfps they wont go over?
http://wow.gamepedia.com/API_SetMaxAnimFramerate

This doesn't exist on beta.

Animation by default goes by the frame rate. And there is a max fps setting.
So need to know if there is a limit on beta.
 
05-25-16, 07:02 PM   #22
dssd
A Fallenroot Satyr
Join Date: May 2016
Posts: 25
Originally Posted by galvin View Post
Do animation groups have a maxfps they wont go over?
http://wow.gamepedia.com/API_SetMaxAnimFramerate

This doesn't exist on beta.

Animation by default goes by the frame rate. And there is a max fps setting.
So need to know if there is a limit on beta.
There is no more rate limiting on animations. They are updated every frame.
 
05-28-16, 07:00 AM   #23
Simca
An Aku'mai Servant
 
Simca's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2012
Posts: 33
Going to correct the capitalization on Semlar's Live CVar dump and diff it against Nodus' Legion Beta CVar dump. Hopefully that will be a lot more accurate while still allowing people to see what was removed or added.
__________________
Assistant admin for MMO-Champion
WoW database file expert - ask me anything
 
06-22-16, 11:19 PM   #24
Tercioo
An Aku'mai Servant
 
Tercioo's Avatar
AddOn Author - Click to view addons
Join Date: Aug 2014
Posts: 38
Wondering what is the trick to get the cvar list, I know there is the console command "cvarlist" but I think the console only shows 200 lines, am I right?
 
06-23-16, 01:45 AM   #25
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2008
Posts: 1,740
You can select all lines in the console with your mouse. Just copy them. If you enhance the console the to fullscreen you select a lot of them. May take some time. But the benefit is that you can sort those entries later in Excel by name.
__________________
| Simple is beautiful.
| WoWI AddOns | GitHub | Zork (WoW)

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)
 
06-23-16, 09:43 PM   #26
galvin
A Frostmaul Preserver
AddOn Author - Click to view addons
Join Date: Nov 2006
Posts: 265
Cvar cameraDistanceMax has been removed in latest build. Any idea what we're suppose to use now?
 
06-25-16, 07:03 AM   #27
Wetxius
A Murloc Raider
AddOn Author - Click to view addons
Join Date: Oct 2010
Posts: 7
Originally Posted by galvin View Post
Cvar cameraDistanceMax has been removed in latest build. Any idea what we're suppose to use now?
SetCVar("cameraDistanceMaxFactor", 1.9)
 
06-25-16, 05:59 PM   #28
Stanzilla
An Aku'mai Servant
AddOn Author - Click to view addons
Join Date: Dec 2007
Posts: 34
Originally Posted by Tercioo View Post
Wondering what is the trick to get the cvar list, I know there is the console command "cvarlist" but I think the console only shows 200 lines, am I right?
A debugger
 
06-25-16, 07:00 PM   #29
Ketho
A Pyroguard Emberseer
 
Ketho's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 1,026
Originally Posted by Wetxius View Post
SetCVar("cameraDistanceMaxFactor", 1.9)
I think Galvin was referring to the previous max camera distance of 50 yards
That cvar is the same as setting the in-game slider to max

There is a blue post by Watcher

http://us.battle.net/wow/en/forum/topic/20745744692#18
https://www.reddit.com/r/wow/comment...t_the_removed/
http://www.mmo-champion.com/content/...ance-Reduction
 
07-20-16, 07:10 PM   #30
tonyis3l33t
A Cyclonian
 
tonyis3l33t's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2006
Posts: 47
Unhappy

I really wish Blizzard gave us a more official documentation and list of changes. I know they track it in house.... I do appreciate the work to fill their void!

Last edited by tonyis3l33t : 07-20-16 at 07:22 PM.
 
07-25-16, 12:38 PM   #31
Ketho
A Pyroguard Emberseer
 
Ketho's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 1,026
There is a list here that distinguishes between character-specific and game-wide console variables
http://wow.gamepedia.com/Console_var...ific_Variables

Currently I'm jumping between 2 characters and check whether the cvar changed or not, or read the character-specific config-cache.wtf
But is there a straightforward way to know if a cvar is character-specific or not?

For example the new nameplateMaxDistance and noBuffDebuffFilterOnTarget cvars seem to be specific to your character

Last edited by Ketho : 07-25-16 at 02:28 PM.
 
07-25-16, 02:21 PM   #32
TOM_RUS
A Warpwood Thunder Caller
AddOn Author - Click to view addons
Join Date: Sep 2008
Posts: 95
Originally Posted by Ketho View Post
But is there a straightforward way to know if a cvar is character-specific or not?
CVar flags may be? Both nameplateMaxDistance and noBuffDebuffFilterOnTarget have 0x20 flag set (see http://paste2.org/baJpFxh1).
 
07-25-16, 03:02 PM   #33
Ketho
A Pyroguard Emberseer
 
Ketho's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 1,026
Originally Posted by TOM_RUS View Post
CVar flags may be? Both nameplateMaxDistance and noBuffDebuffFilterOnTarget have 0x20 flag set (see http://paste2.org/baJpFxh1).

I tried to filter all cvars through 0x20, and that looks pretty likely to me. Thanks for the help
Lua Code:
  1. local t = {
  2.     activeCUFProfile = 0x20,
  3.     assistAttack = 0x20,
  4.     autoFilledMultiCastSlots = 0x20,
  5.     autoLootDefault = 0x20,
  6.     autoLootRate = 0x20,
  7.     autoQuestPopUps = 0x20,
  8.     autoSelfCast = 0x20,
  9.     blockChannelInvites = 0x20,
  10.     blockTrades = 0x20,
  11.     calendarShowBattlegrounds = 0x20,
  12.     calendarShowDarkmoon = 0x20,
  13.     calendarShowLockouts = 0x20,
  14.     calendarShowResets = 0x20,
  15.     calendarShowWeeklyHolidays = 0x20,
  16.     cameraSavedDistance = 0x20,
  17.     cameraSavedPetBattleDistance = 0x20,
  18.     cameraSavedPitch = 0x20,
  19.     cameraSavedVehicleDistance = 0x20,
  20.     closedInfoFrames = 0x20,
  21.     currencyCategoriesCollapsed = 0x120,
  22.     currencyTokensBackpack1 = 0x20,
  23.     currencyTokensBackpack2 = 0x20,
  24.     currencyTokensUnused1 = 0x20,
  25.     currencyTokensUnused2 = 0x20,
  26.     dangerousShipyardMissionWarningAlreadyShown = 0x20,
  27.     digSites = 0x20,
  28.     displaySpellActivationOverlays = 0x20,
  29.     EJDungeonDifficulty = 0x20,
  30.     EJLootClass = 0x20,
  31.     EJLootSpec = 0x20,
  32.     EJRaidDifficulty = 0x20,
  33.     friendsSmallView = 0x20,
  34.     friendsViewButtons = 0x20,
  35.     fullSizeFocusFrame = 0x28,
  36.     garrisonCompleteTalent = 0x28,
  37.     garrisonCompleteTalentType = 0x28,
  38.     guildNewsFilter = 0x120,
  39.     guildRewardsCategory = 0x20,
  40.     guildRewardsUsable = 0x20,
  41.     guildRosterView = 0x20,
  42.     hardTrackedQuests = 0x120,
  43.     hardTrackedWorldQuests = 0x120,
  44.     lastGarrisonMissionTutorial = 0x20,
  45.     lastTransmogOutfitID = 0x20,
  46.     lastVoidStorageTutorial = 0x20,
  47.     lfdCollapsedHeaders = 0x120,
  48.     lfdSelectedDungeons = 0x120,
  49.     lfgSelectedRoles = 0x120,
  50.     lfGuildComment = 0x20,
  51.     lfGuildSettings = 0x20,
  52.     lockedWorldMap = 0x20,
  53.     lossOfControl = 0x20,
  54.     lossOfControlDisarm = 0x220,
  55.     lossOfControlFull = 0x220,
  56.     lossOfControlInterrupt = 0x220,
  57.     lossOfControlRoot = 0x220,
  58.     lossOfControlSilence = 0x220,
  59.     mapFade = 0x20,
  60.     minimapInsideZoom = 0x20,
  61.     minimapShapeshiftTracking = 0x120,
  62.     minimapShowArchBlobs = 0x20,
  63.     minimapShowQuestBlobs = 0x20,
  64.     minimapTrackedInfov2 = 0x20,
  65.     minimapZoom = 0x20,
  66.     miniWorldMap = 0x20,
  67.     missingTransmogSourceInItemTooltips = 0x20,
  68.     nameplateClassResourceTopInset = 0x28,
  69.     nameplateGlobalScale = 0x28,
  70.     NamePlateHorizontalScale = 0x28,
  71.     nameplateLargeBottomInset = 0x28,
  72.     nameplateLargerScale = 0x28,
  73.     nameplateLargeTopInset = 0x28,
  74.     nameplateMaxAlpha = 0x28,
  75.     nameplateMaxAlphaDistance = 0x28,
  76.     nameplateMaxDistance = 0x28,
  77.     nameplateMaxScale = 0x28,
  78.     nameplateMaxScaleDistance = 0x28,
  79.     nameplateMinAlpha = 0x28,
  80.     nameplateMinAlphaDistance = 0x28,
  81.     nameplateMinScale = 0x28,
  82.     nameplateMinScaleDistance = 0x28,
  83.     nameplateMotion = 0x28,
  84.     nameplateMotionSpeed = 0x28,
  85.     nameplateOtherBottomInset = 0x28,
  86.     nameplateOtherTopInset = 0x28,
  87.     nameplateResourceOnTarget = 0x28,
  88.     nameplateSelectedAlpha = 0x28,
  89.     nameplateSelectedScale = 0x28,
  90.     nameplateSelfAlpha = 0x28,
  91.     nameplateSelfBottomInset = 0x28,
  92.     nameplateSelfScale = 0x28,
  93.     nameplateSelfTopInset = 0x28,
  94.     nameplateShowAll = 0x28,
  95.     nameplateShowEnemies = 0x28,
  96.     nameplateShowEnemyGuardians = 0x28,
  97.     nameplateShowEnemyMinions = 0x1028,
  98.     nameplateShowEnemyMinus = 0x28,
  99.     nameplateShowEnemyPets = 0x28,
  100.     nameplateShowEnemyTotems = 0x28,
  101.     nameplateShowFriendlyGuardians = 0x28,
  102.     nameplateShowFriendlyMinions = 0x1028,
  103.     nameplateShowFriendlyPets = 0x28,
  104.     nameplateShowFriendlyTotems = 0x28,
  105.     nameplateShowFriends = 0x28,
  106.     nameplateShowSelf = 0x28,
  107.     nameplateTargetBehindMaxDistance = 0x28,
  108.     NamePlateVerticalScale = 0x28,
  109.     noBuffDebuffFilterOnTarget = 0x20,
  110.     orderHallMissionTutorial = 0x20,
  111.     playerStatLeftDropdown = 0x20,
  112.     playerStatRightDropdown = 0x20,
  113.     primaryProfessionsFilter = 0x20,
  114.     pvpBlacklistMaps0 = 0x20,
  115.     pvpBlacklistMaps1 = 0x20,
  116.     pvpSelectedRoles = 0x120,
  117.     questLogOpen = 0x20,
  118.     questPOI = 0x20,
  119.     raidFramesDisplayAggroHighlight = 0x20,
  120.     raidFramesDisplayClassColor = 0x20,
  121.     raidFramesDisplayOnlyDispellableDebuffs = 0x20,
  122.     raidFramesDisplayPowerBars = 0x20,
  123.     raidFramesHealthText = 0x20,
  124.     raidFramesHeight = 0x20,
  125.     raidFramesPosition = 0x20,
  126.     raidFramesWidth = 0x20,
  127.     raidOptionDisplayMainTankAndAssist = 0x20,
  128.     raidOptionDisplayPets = 0x20,
  129.     raidOptionIsShown = 0x20,
  130.     raidOptionKeepGroupsTogether = 0x20,
  131.     raidOptionLocked = 0x20,
  132.     raidOptionShowBorders = 0x20,
  133.     raidOptionSortMode = 0x20,
  134.     reputationsCollapsed = 0x20,
  135.     secondaryProfessionsFilter = 0x20,
  136.     shipyardMissionTutorialAreaBuff = 0x20,
  137.     shipyardMissionTutorialBlockade = 0x20,
  138.     shipyardMissionTutorialFirst = 0x20,
  139.     showArenaEnemyCastbar = 0x20,
  140.     showArenaEnemyFrames = 0x28,
  141.     showArenaEnemyPets = 0x28,
  142.     showBattlefieldMinimap = 0x20,
  143.     showCastableBuffs = 0x20,
  144.     ShowClassColorInNameplate = 0x20,
  145.     showDispelDebuffs = 0x20,
  146.     showHonorAsExperience = 0x20,
  147.     ShowNamePlateLoseAggroFlash = 0x20,
  148.     showPartyPets = 0x28,
  149.     showQuestObjectivesOnMap = 0x20,
  150.     showQuestTrackingTooltips = 0x20,
  151.     showTamers = 0x20,
  152.     showTokenFrame = 0x20,
  153.     showTokenFrameHonor = 0x20,
  154.     showVKeyCastbarOnlyOnTarget = 0x20,
  155.     showVKeyCastbarSpellName = 0x20,
  156.     splashScreenBoost = 0x28,
  157.     splashScreenNormal = 0x28,
  158.     stopAutoAttackOnTargetChange = 0x20,
  159.     talentPointsSpent = 0x20,
  160.     threatWarning = 0x20,
  161.     trackedAchievements = 0x120,
  162.     trackedQuests = 0x120,
  163.     trackedWorldQuests = 0x120,
  164.     transmogCurrentSpecOnly = 0x20,
  165.     useCompactPartyFrames = 0x28,
  166.     worldMapOpacity = 0x20,
  167. }

(Edit) that must mean alot of cvars from that wowpedia page were changed to be account-wide, like cameraTerrainTiltSmartMoveFactor

(Edit 7/31) SetSortBagsRightToLeft() and SetInsertItemsLeftToRight() also seem to be character-specific

Last edited by Ketho : 07-31-16 at 07:19 AM. Reason: oops, fixed dec2hex
 
 

WoWInterface » Site Forums » Archived Beta Forums » Legion Beta archived threads » Consolidated Changes of all Types - Live vs Build 21691

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off