View Single Post
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