[WoW] [5.4.0 17538] Release x86 Info Dump Thread menu

User Tag List

Page 2 of 2 FirstFirst 12
Results 16 to 29 of 29
  1. #16
    JuJuBoSc's Avatar Banned for scamming CoreCoins Purchaser
    Reputation
    1019
    Join Date
    May 2007
    Posts
    922
    Thanks G/R
    1/3
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by charles420 View Post
    anyone got auto loot pointer and offset and auto attack flag and mask plz and ty cant seem to find them

    ok after alot of beating head vers wall Autoloot is who would of though autoloot search in ida / dumb face
    Rebase
    Pointer = 0xD43D10,
    Offset = 0x30,
    Code:
    signed int __cdecl Script_UnitAffectingCombat(int lua_State)
    {
      signed int result; // eax@2
      int unitId; // eax@3
      int wowUnit; // eax@3
    
      if ( lua_isstring(lua_State, 1) )
      {
        unitId = lua_tolstring(lua_State, 1, 0);
        wowUnit = GetObjectFromUnitId(unitId);
        if ( wowUnit && (*(_DWORD *)(*(_DWORD *)(wowUnit + 0xDC) + 0xD4) >> 0x13) & 1 )
          lua_pushnumber(lua_State, 1.0);
        else
          lua_pushnil(lua_State);
        result = 1;
      }
      else
      {
        sub_D299B(lua_State, "Usage: UnitAffectingCombat(\"unit\")");
        result = 0;
      }
      return result;
    No that hard
    Last edited by JuJuBoSc; 11-21-2013 at 09:41 AM.

    [WoW] [5.4.0 17538] Release x86 Info Dump Thread
  2. #17
    charles420's Avatar Elite User
    Reputation
    335
    Join Date
    Jun 2009
    Posts
    337
    Thanks G/R
    25/123
    Trade Feedback
    0 (0%)
    Mentioned
    10 Post(s)
    Tagged
    0 Thread(s)
    Ty very much

  3. #18
    homer91's Avatar Active Member CoreCoins Purchaser
    Reputation
    79
    Join Date
    Oct 2008
    Posts
    259
    Thanks G/R
    59/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Alisamix View Post
    Does someone have a pdb with the function names for this version? I need some more adresses
    AFAIK the only PDB avaible to public is the alpha one. You should check out the 15662 OS X binary tho...

  4. #19
    JuJuBoSc's Avatar Banned for scamming CoreCoins Purchaser
    Reputation
    1019
    Join Date
    May 2007
    Posts
    922
    Thanks G/R
    1/3
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by charles420 View Post
    Does Anyone Have CameraPointer / CameraOffset / CameraX / CameraY / CameraZ / CameraMatrix Offsets by chance been digging no luck so far /cry


    CameraPointer 0xD42E14
    Offset 0x8208

    Pos at 0x8
    ViewMatrix at 0x14

  5. #20
    AriDEV's Avatar Member
    Reputation
    1
    Join Date
    Jan 2011
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    IDA Database for client build 5.4.1.17538 (requires IDA Pro 6.1).

    Offsets NOT rebased!

  6. #21
    Tambel's Avatar Member
    Reputation
    6
    Join Date
    Nov 2013
    Posts
    36
    Thanks G/R
    5/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by eracer View Post
    Descriptors
    Code:
    public enum CGObjectData
    {
        Guid = 0, // size 2, flags MIRROR_ALL
        Data = 2, // size 2, flags MIRROR_ALL
        Type = 4, // size 1, flags MIRROR_ALL
        EntryID = 5, // size 1, flags MIRROR_VIEWER_DEPENDENT
        DynamicFlags = 6, // size 1, flags MIRROR_VIEWER_DEPENDENT, MIRROR_URGENT
        Scale = 7, // size 1, flags MIRROR_ALL
        End = 8
    }
    
    public enum CGItemData
    {
        Owner = CGObjectData.End + 0, // size 2, flags MIRROR_ALL
        ContainedIn = CGObjectData.End + 2, // size 2, flags MIRROR_ALL
        Creator = CGObjectData.End + 4, // size 2, flags MIRROR_ALL
        GiftCreator = CGObjectData.End + 6, // size 2, flags MIRROR_ALL
        StackCount = CGObjectData.End + 8, // size 1, flags MIRROR_OWNER
        Expiration = CGObjectData.End + 9, // size 1, flags MIRROR_OWNER
        SpellCharges = CGObjectData.End + 10, // size 5, flags MIRROR_OWNER
        DynamicFlags = CGObjectData.End + 15, // size 1, flags MIRROR_ALL
        Enchantment = CGObjectData.End + 16, // size 39, flags MIRROR_ALL
        PropertySeed = CGObjectData.End + 55, // size 1, flags MIRROR_ALL
        RandomPropertiesID = CGObjectData.End + 56, // size 1, flags MIRROR_ALL
        Durability = CGObjectData.End + 57, // size 1, flags MIRROR_OWNER
        MaxDurability = CGObjectData.End + 58, // size 1, flags MIRROR_OWNER
        CreatePlayedTime = CGObjectData.End + 59, // size 1, flags MIRROR_ALL
        ModifiersMask = CGObjectData.End + 60, // size 1, flags MIRROR_OWNER
        End = CGObjectData.End + 61
    }
    
    public enum CGContainerData
    {
        Slots = CGItemData.End + 0, // size 72, flags MIRROR_ALL
        NumSlots = CGItemData.End + 72, // size 1, flags MIRROR_ALL
        End = CGItemData.End + 73
    }
    
    public enum CGUnitData
    {
        Charm = CGObjectData.End + 0, // size 2, flags MIRROR_ALL
        Summon = CGObjectData.End + 2, // size 2, flags MIRROR_ALL
        Critter = CGObjectData.End + 4, // size 2, flags MIRROR_SELF
        CharmedBy = CGObjectData.End + 6, // size 2, flags MIRROR_ALL
        SummonedBy = CGObjectData.End + 8, // size 2, flags MIRROR_ALL
        CreatedBy = CGObjectData.End + 10, // size 2, flags MIRROR_ALL
        DemonCreator = CGObjectData.End + 12, // size 2, flags MIRROR_ALL
        Target = CGObjectData.End + 14, // size 2, flags MIRROR_ALL
        BattlePetCompanionGUID = CGObjectData.End + 16, // size 2, flags MIRROR_ALL
        ChannelObject = CGObjectData.End + 18, // size 2, flags MIRROR_ALL, MIRROR_URGENT
        ChannelSpell = CGObjectData.End + 20, // size 1, flags MIRROR_ALL, MIRROR_URGENT
        SummonedByHomeRealm = CGObjectData.End + 21, // size 1, flags MIRROR_ALL
        Sex = CGObjectData.End + 22, // size 1, flags MIRROR_ALL
        DisplayPower = CGObjectData.End + 23, // size 1, flags MIRROR_ALL
        OverrideDisplayPowerID = CGObjectData.End + 24, // size 1, flags MIRROR_ALL
        Health = CGObjectData.End + 25, // size 1, flags MIRROR_ALL
        Power = CGObjectData.End + 26, // size 5, flags MIRROR_ALL
        MaxHealth = CGObjectData.End + 31, // size 1, flags MIRROR_ALL
        MaxPower = CGObjectData.End + 32, // size 5, flags MIRROR_ALL
        PowerRegenFlatModifier = CGObjectData.End + 37, // size 5, flags MIRROR_SELF, MIRROR_OWNER, MIRROR_UNIT_ALL
        PowerRegenInterruptedFlatModifier = CGObjectData.End + 42, // size 5, flags MIRROR_SELF, MIRROR_OWNER, MIRROR_UNIT_ALL
        Level = CGObjectData.End + 47, // size 1, flags MIRROR_ALL
        EffectiveLevel = CGObjectData.End + 48, // size 1, flags MIRROR_ALL
        FactionTemplate = CGObjectData.End + 49, // size 1, flags MIRROR_ALL
        VirtualItemID = CGObjectData.End + 50, // size 3, flags MIRROR_ALL
        Flags = CGObjectData.End + 53, // size 1, flags MIRROR_ALL
        Flags2 = CGObjectData.End + 54, // size 1, flags MIRROR_ALL
        AuraState = CGObjectData.End + 55, // size 1, flags MIRROR_ALL
        AttackRoundBaseTime = CGObjectData.End + 56, // size 2, flags MIRROR_ALL
        RangedAttackRoundBaseTime = CGObjectData.End + 58, // size 1, flags MIRROR_SELF
        BoundingRadius = CGObjectData.End + 59, // size 1, flags MIRROR_ALL
        CombatReach = CGObjectData.End + 60, // size 1, flags MIRROR_ALL
        DisplayID = CGObjectData.End + 61, // size 1, flags MIRROR_VIEWER_DEPENDENT, MIRROR_URGENT
        NativeDisplayID = CGObjectData.End + 62, // size 1, flags MIRROR_ALL, MIRROR_URGENT
        MountDisplayID = CGObjectData.End + 63, // size 1, flags MIRROR_ALL, MIRROR_URGENT
        MinDamage = CGObjectData.End + 64, // size 1, flags MIRROR_SELF, MIRROR_OWNER, MIRROR_EMPATH
        MaxDamage = CGObjectData.End + 65, // size 1, flags MIRROR_SELF, MIRROR_OWNER, MIRROR_EMPATH
        MinOffHandDamage = CGObjectData.End + 66, // size 1, flags MIRROR_SELF, MIRROR_OWNER, MIRROR_EMPATH
        MaxOffHandDamage = CGObjectData.End + 67, // size 1, flags MIRROR_SELF, MIRROR_OWNER, MIRROR_EMPATH
        AnimTier = CGObjectData.End + 68, // size 1, flags MIRROR_ALL
        PetNumber = CGObjectData.End + 69, // size 1, flags MIRROR_ALL
        PetNameTimestamp = CGObjectData.End + 70, // size 1, flags MIRROR_ALL
        PetExperience = CGObjectData.End + 71, // size 1, flags MIRROR_OWNER
        PetNextLevelExperience = CGObjectData.End + 72, // size 1, flags MIRROR_OWNER
        ModCastingSpeed = CGObjectData.End + 73, // size 1, flags MIRROR_ALL
        ModSpellHaste = CGObjectData.End + 74, // size 1, flags MIRROR_ALL
        ModHaste = CGObjectData.End + 75, // size 1, flags MIRROR_ALL
        ModRangedHaste = CGObjectData.End + 76, // size 1, flags MIRROR_ALL
        ModHasteRegen = CGObjectData.End + 77, // size 1, flags MIRROR_ALL
        CreatedBySpell = CGObjectData.End + 78, // size 1, flags MIRROR_ALL
        NpcFlags = CGObjectData.End + 80, // size 2, flags MIRROR_ALL
        EmoteState = CGObjectData.End + 81, // size 1, flags MIRROR_ALL
        Stats = CGObjectData.End + 82, // size 5, flags MIRROR_SELF, MIRROR_OWNER
        StatPosBuff = CGObjectData.End + 87, // size 5, flags MIRROR_SELF, MIRROR_OWNER
        StatNegBuff = CGObjectData.End + 92, // size 5, flags MIRROR_SELF, MIRROR_OWNER
        Resistances = CGObjectData.End + 97, // size 7, flags MIRROR_SELF, MIRROR_OWNER, MIRROR_EMPATH
        ResistanceBuffModsPositive = CGObjectData.End + 104, // size 7, flags MIRROR_SELF, MIRROR_OWNER
        ResistanceBuffModsNegative = CGObjectData.End + 111, // size 7, flags MIRROR_SELF, MIRROR_OWNER
        BaseMana = CGObjectData.End + 118, // size 1, flags MIRROR_ALL
        BaseHealth = CGObjectData.End + 119, // size 1, flags MIRROR_SELF, MIRROR_OWNER
        ShapeshiftForm = CGObjectData.End + 120, // size 1, flags MIRROR_ALL
        AttackPower = CGObjectData.End + 121, // size 1, flags MIRROR_SELF, MIRROR_OWNER
        AttackPowerModPos = CGObjectData.End + 122, // size 1, flags MIRROR_SELF, MIRROR_OWNER
        AttackPowerModNeg = CGObjectData.End + 123, // size 1, flags MIRROR_SELF, MIRROR_OWNER
        AttackPowerMultiplier = CGObjectData.End + 124, // size 1, flags MIRROR_SELF, MIRROR_OWNER
        RangedAttackPower = CGObjectData.End + 125, // size 1, flags MIRROR_SELF, MIRROR_OWNER
        RangedAttackPowerModPos = CGObjectData.End + 126, // size 1, flags MIRROR_SELF, MIRROR_OWNER
        RangedAttackPowerModNeg = CGObjectData.End + 127, // size 1, flags MIRROR_SELF, MIRROR_OWNER
        RangedAttackPowerMultiplier = CGObjectData.End + 128, // size 1, flags MIRROR_SELF, MIRROR_OWNER
        MinRangedDamage = CGObjectData.End + 129, // size 1, flags MIRROR_SELF, MIRROR_OWNER
        MaxRangedDamage = CGObjectData.End + 130, // size 1, flags MIRROR_SELF, MIRROR_OWNER
        PowerCostModifier = CGObjectData.End + 131, // size 7, flags MIRROR_SELF, MIRROR_OWNER
        PowerCostMultiplier = CGObjectData.End + 138, // size 7, flags MIRROR_SELF, MIRROR_OWNER
        MaxHealthModifier = CGObjectData.End + 145, // size 1, flags MIRROR_SELF, MIRROR_OWNER
        HoverHeight = CGObjectData.End + 146, // size 1, flags MIRROR_ALL
        MinItemLevel = CGObjectData.End + 147, // size 1, flags MIRROR_ALL
        MaxItemLevel = CGObjectData.End + 148, // size 1, flags MIRROR_ALL
        WildBattlePetLevel = CGObjectData.End + 149, // size 1, flags MIRROR_ALL
        BattlePetCompanionNameTimestamp = CGObjectData.End + 150, // size 1, flags MIRROR_ALL
        InteractSpellID = CGObjectData.End + 151, // size 1, flags MIRROR_ALL
        End = CGObjectData.End + 152
    }
    
    public enum CGPlayerData
    {
        DuelArbiter = CGUnitData.End + 0, // size 2, flags MIRROR_ALL
        PlayerFlags = CGUnitData.End + 2, // size 1, flags MIRROR_ALL
        GuildRankID = CGUnitData.End + 3, // size 1, flags MIRROR_ALL
        GuildDeleteDate = CGUnitData.End + 4, // size 1, flags MIRROR_ALL
        GuildLevel = CGUnitData.End + 5, // size 1, flags MIRROR_ALL
        HairColorID = CGUnitData.End + 6, // size 1, flags MIRROR_ALL
        RestState = CGUnitData.End + 7, // size 1, flags MIRROR_ALL
        ArenaFaction = CGUnitData.End + 8, // size 1, flags MIRROR_ALL
        DuelTeam = CGUnitData.End + 9, // size 1, flags MIRROR_ALL
        GuildTimeStamp = CGUnitData.End + 10, // size 1, flags MIRROR_ALL
        QuestLog = CGUnitData.End + 11, // size 750, flags MIRROR_PARTY
        VisibleItems = CGUnitData.End + 761, // size 38, flags MIRROR_ALL
        PlayerTitle = CGUnitData.End + 799, // size 1, flags MIRROR_ALL
        FakeInebriation = CGUnitData.End + 800, // size 1, flags MIRROR_ALL
        VirtualPlayerRealm = CGUnitData.End + 801, // size 1, flags MIRROR_ALL
        CurrentSpecID = CGUnitData.End + 802, // size 1, flags MIRROR_ALL
        TaxiMountAnimKitID = CGUnitData.End + 803, // size 1, flags MIRROR_ALL
        CurrentBattlePetBreedQuality = CGUnitData.End + 804, // size 1, flags MIRROR_ALL
        InvSlots = CGUnitData.End + 805, // size 172, flags MIRROR_SELF
        FarsightObject = CGUnitData.End + 977, // size 2, flags MIRROR_SELF
        KnownTitles = CGUnitData.End + 979, // size 10, flags MIRROR_SELF
        Coinage = CGUnitData.End + 989, // size 2, flags MIRROR_SELF
        XP = CGUnitData.End + 991, // size 1, flags MIRROR_SELF
        NextLevelXP = CGUnitData.End + 992, // size 1, flags MIRROR_SELF
        Skill = CGUnitData.End + 993, // size 448, flags MIRROR_SELF
        CharacterPoints = CGUnitData.End + 1441, // size 1, flags MIRROR_SELF
        MaxTalentTiers = CGUnitData.End + 1442, // size 1, flags MIRROR_SELF
        TrackCreatureMask = CGUnitData.End + 1443, // size 1, flags MIRROR_SELF
        TrackResourceMask = CGUnitData.End + 1444, // size 1, flags MIRROR_SELF
        MainhandExpertise = CGUnitData.End + 1445, // size 1, flags MIRROR_SELF
        OffhandExpertise = CGUnitData.End + 1446, // size 1, flags MIRROR_SELF
        RangedExpertise = CGUnitData.End + 1447, // size 1, flags MIRROR_SELF
        CombatRatingExpertise = CGUnitData.End + 1448, // size 1, flags MIRROR_SELF
        BlockPercentage = CGUnitData.End + 1449, // size 1, flags MIRROR_SELF
        DodgePercentage = CGUnitData.End + 1450, // size 1, flags MIRROR_SELF
        ParryPercentage = CGUnitData.End + 1451, // size 1, flags MIRROR_SELF
        CritPercentage = CGUnitData.End + 1452, // size 1, flags MIRROR_SELF
        RangedCritPercentage = CGUnitData.End + 1453, // size 1, flags MIRROR_SELF
        OffhandCritPercentage = CGUnitData.End + 1454, // size 1, flags MIRROR_SELF
        SpellCritPercentage = CGUnitData.End + 1455, // size 7, flags MIRROR_SELF
        ShieldBlock = CGUnitData.End + 1462, // size 1, flags MIRROR_SELF
        ShieldBlockCritPercentage = CGUnitData.End + 1463, // size 1, flags MIRROR_SELF
        Mastery = CGUnitData.End + 1464, // size 1, flags MIRROR_SELF
        PvpPowerDamage = CGUnitData.End + 1465, // size 1, flags MIRROR_SELF
        PvpPowerHealing = CGUnitData.End + 1466, // size 1, flags MIRROR_SELF
        ExploredZones = CGUnitData.End + 1467, // size 200, flags MIRROR_SELF
        RestStateBonusPool = CGUnitData.End + 1667, // size 1, flags MIRROR_SELF
        ModDamageDonePos = CGUnitData.End + 1668, // size 7, flags MIRROR_SELF
        ModDamageDoneNeg = CGUnitData.End + 1675, // size 7, flags MIRROR_SELF
        ModDamageDonePercent = CGUnitData.End + 1682, // size 7, flags MIRROR_SELF
        ModHealingDonePos = CGUnitData.End + 1689, // size 1, flags MIRROR_SELF
        ModHealingPercent = CGUnitData.End + 1690, // size 1, flags MIRROR_SELF
        ModHealingDonePercent = CGUnitData.End + 1691, // size 1, flags MIRROR_SELF
        ModPeriodicHealingDonePercent = CGUnitData.End + 1692, // size 1, flags MIRROR_SELF
        WeaponDmgMultipliers = CGUnitData.End + 1693, // size 3, flags MIRROR_SELF
        ModSpellPowerPercent = CGUnitData.End + 1696, // size 1, flags MIRROR_SELF
        ModResiliencePercent = CGUnitData.End + 1697, // size 1, flags MIRROR_SELF
        OverrideSpellPowerByAPPercent = CGUnitData.End + 1698, // size 1, flags MIRROR_SELF
        OverrideAPBySpellPowerPercent = CGUnitData.End + 1699, // size 1, flags MIRROR_SELF
        ModTargetResistance = CGUnitData.End + 1700, // size 1, flags MIRROR_SELF
        ModTargetPhysicalResistance = CGUnitData.End + 1701, // size 1, flags MIRROR_SELF
        LifetimeMaxRank = CGUnitData.End + 1702, // size 1, flags MIRROR_SELF
        SelfResSpell = CGUnitData.End + 1703, // size 1, flags MIRROR_SELF
        PvpMedals = CGUnitData.End + 1704, // size 1, flags MIRROR_SELF
        BuybackPrice = CGUnitData.End + 1705, // size 12, flags MIRROR_SELF
        BuybackTimestamp = CGUnitData.End + 1717, // size 12, flags MIRROR_SELF
        YesterdayHonorableKills = CGUnitData.End + 1729, // size 1, flags MIRROR_SELF
        LifetimeHonorableKills = CGUnitData.End + 1730, // size 1, flags MIRROR_SELF
        WatchedFactionIndex = CGUnitData.End + 1731, // size 1, flags MIRROR_SELF
        CombatRatings = CGUnitData.End + 1732, // size 27, flags MIRROR_SELF
        PvpInfo = CGUnitData.End + 1759, // size 24, flags MIRROR_SELF
        MaxLevel = CGUnitData.End + 1783, // size 1, flags MIRROR_SELF
        RuneRegen = CGUnitData.End + 1784, // size 4, flags MIRROR_SELF
        NoReagentCostMask = CGUnitData.End + 1788, // size 4, flags MIRROR_SELF
        GlyphSlots = CGUnitData.End + 1792, // size 6, flags MIRROR_SELF
        Glyphs = CGUnitData.End + 1798, // size 6, flags MIRROR_SELF
        GlyphSlotsEnabled = CGUnitData.End + 1804, // size 1, flags MIRROR_SELF
        PetSpellPower = CGUnitData.End + 1805, // size 1, flags MIRROR_SELF
        Researching = CGUnitData.End + 1806, // size 8, flags MIRROR_SELF
        ProfessionSkillLine = CGUnitData.End + 1814, // size 2, flags MIRROR_SELF
        UiHitModifier = CGUnitData.End + 1816, // size 1, flags MIRROR_SELF
        UiSpellHitModifier = CGUnitData.End + 1817, // size 1, flags MIRROR_SELF
        HomeRealmTimeOffset = CGUnitData.End + 1818, // size 1, flags MIRROR_SELF
        ModPetHaste = CGUnitData.End + 1819, // size 1, flags MIRROR_SELF
        SummonedBattlePetGUID = CGUnitData.End + 1820, // size 2, flags MIRROR_SELF
        OverrideSpellsID = CGUnitData.End + 1822, // size 1, flags MIRROR_SELF, MIRROR_URGENT_SELF_ONLY
        LfgBonusFactionID = CGUnitData.End + 1823, // size 1, flags MIRROR_SELF
        LootSpecID = CGUnitData.End + 1824, // size 1, flags MIRROR_SELF
        OverrideZonePVPType = CGUnitData.End + 1825, // size 1, flags MIRROR_SELF, MIRROR_URGENT_SELF_ONLY
        ItemLevelDelta = CGUnitData.End + 1826, // size 1, flags MIRROR_SELF
        End = CGUnitData.End + 1827
    }
    
    public enum CGGameObjectData
    {
        CreatedBy = CGObjectData.End + 0, // size 2, flags MIRROR_ALL
        DisplayID = CGObjectData.End + 2, // size 1, flags MIRROR_ALL
        Flags = CGObjectData.End + 3, // size 1, flags MIRROR_ALL, MIRROR_URGENT
        ParentRotation = CGObjectData.End + 4, // size 4, flags MIRROR_ALL
        FactionTemplate = CGObjectData.End + 8, // size 1, flags MIRROR_ALL
        Level = CGObjectData.End + 9, // size 1, flags MIRROR_ALL
        PercentHealth = CGObjectData.End + 10, // size 1, flags MIRROR_ALL, MIRROR_URGENT
        StateSpellVisualID = CGObjectData.End + 11, // size 1, flags MIRROR_ALL, MIRROR_URGENT
        End = CGObjectData.End + 12
    }
    
    public enum CGDynamicObjectData
    {
        Caster = CGObjectData.End + 0, // size 2, flags MIRROR_ALL
        TypeAndVisualID = CGObjectData.End + 2, // size 1, flags MIRROR_VIEWER_DEPENDENT
        SpellID = CGObjectData.End + 3, // size 1, flags MIRROR_ALL
        Radius = CGObjectData.End + 4, // size 1, flags MIRROR_ALL
        CastTime = CGObjectData.End + 5, // size 1, flags MIRROR_ALL
        End = CGObjectData.End + 6
    }
    
    public enum CGCorpseData
    {
        Owner = CGObjectData.End + 0, // size 2, flags MIRROR_ALL
        PartyGUID = CGObjectData.End + 2, // size 2, flags MIRROR_ALL
        DisplayID = CGObjectData.End + 4, // size 1, flags MIRROR_ALL
        Items = CGObjectData.End + 5, // size 19, flags MIRROR_ALL
        SkinID = CGObjectData.End + 24, // size 1, flags MIRROR_ALL
        FacialHairStyleID = CGObjectData.End + 25, // size 1, flags MIRROR_ALL
        Flags = CGObjectData.End + 26, // size 1, flags MIRROR_ALL
        DynamicFlags = CGObjectData.End + 27, // size 1, flags MIRROR_VIEWER_DEPENDENT
        End = CGObjectData.End + 28
    }
    
    public enum CGAreaTriggerData
    {
        Caster = CGObjectData.End + 0, // size 2, flags MIRROR_ALL
        Duration = CGObjectData.End + 2, // size 1, flags MIRROR_ALL
        SpellID = CGObjectData.End + 3, // size 1, flags MIRROR_ALL
        SpellVisualID = CGObjectData.End + 4, // size 1, flags MIRROR_VIEWER_DEPENDENT
        ExplicitScale = CGObjectData.End + 5, // size 1, flags MIRROR_ALL, MIRROR_URGENT
        End = CGObjectData.End + 6
    }
    
    public enum CGSceneObjectData
    {
        ScriptPackageID = CGObjectData.End + 0, // size 1, flags MIRROR_ALL
        RndSeedVal = CGObjectData.End + 1, // size 1, flags MIRROR_ALL
        CreatedBy = CGObjectData.End + 2, // size 2, flags MIRROR_ALL
        SceneType = CGObjectData.End + 4, // size 1, flags MIRROR_ALL
        End = CGObjectData.End + 5
    }
    
    public enum CGItemDynamicData
    {
    	m_modifiers,
    }
    
    public enum CGUnitDynamicData
    {
    	passiveSpells,
    	worldEffects,
    }
    
    public enum CGPlayerDynamicData
    {
    	researchSites,
    	researchSiteProgress,
    	dailyQuestsCompleted,
    }
    I have a right result, only if i multiply that values to 4? is that ok?)

  7. #22
    hardcpp's Avatar Active Member
    Reputation
    26
    Join Date
    Mar 2012
    Posts
    16
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    CDataStore functions
    Code:
    CDataSore__StoreAndCheck22Bits                                                                                                                                                                                  .text 004AEE55 00000026 R . . . B . .
    CDataStore::Clear(void)                                                                                                                                                                                         .text 0040EE88 00000005 R . . . . . .
    CDataStore::InternalDestroy(uchar *&,uint &,uint &)                                                                                                                                                             .text 00408F3F 00000017 R . . . . . .
    CDataStore__Append                                                                                                                                                                                              .text 0040F06F 00000077 R . . . B . .
    CDataStore__CanRead                                                                                                                                                                                             .text 0040F1BA 00000059 R . . . B . .
    CDataStore__CanWrite                                                                                                                                                                                            .text 00408E25 00000045 R . . . B . .
    CDataStore__CheckAndStore17Bits                                                                                                                                                                                 .text 0072E66A 00000079 R . . . B . .
    CDataStore__CheckAndStore19Bits                                                                                                                                                                                 .text 0072DFED 0000006D R . . . B . .
    CDataStore__CheckAndStore20Bits                                                                                                                                                                                 .text 0070471B 0000006D R . . . B . .
    CDataStore__CheckAndStore20Bits_0                                                                                                                                                                               .text 00704788 0000006D R . . . B . .
    CDataStore__CheckAndStore21Bits                                                                                                                                                                                 .text 007047F5 00000056 R . . . B . .
    CDataStore__CheckAndStore21Bits_0                                                                                                                                                                               .text 0072E2A5 00000026 R . . . B . .
    CDataStore__Copy                                                                                                                                                                                                .text 0040EE04 0000001C R . . . B . .
    CDataStore__FlushBits                                                                                                                                                                                           .text 0065DB1B 0000008D R . . . B . .
    CDataStore__GetData                                                                                                                                                                                             .text 0040F510 00000035 R . . . B . .
    CDataStore__GetFloat                                                                                                                                                                                            .text 0040F30E 00000030 R . . . B . .
    CDataStore__GetInt16                                                                                                                                                                                            .text 0040F273 00000032 R . . . B . .
    CDataStore__GetInt32                                                                                                                                                                                            .text 0040F2A5 00000030 R . . . B . .
    CDataStore__GetInt64                                                                                                                                                                                            .text 0040F2D5 00000039 R . . . B . .
    CDataStore__GetInt64Direct                                                                                                                                                                                      .text 006595B8 0000001E R . . . B . .
    CDataStore__GetInt8                                                                                                                                                                                             .text 0040F244 0000002F R . . . B . .
    CDataStore__GetString                                                                                                                                                                                           .text 0040F33E 000000BB R . . . B . .
    CDataStore__PutCString                                                                                                                                                                                          .text 0040F213 00000031 R . . . B . .
    CDataStore__PutData                                                                                                                                                                                             .text 0040F174 00000009 R . . . B . .
    CDataStore__PutFloat                                                                                                                                                                                            .text 0040F03D 00000032 R . . . B . .
    CDataStore__PutIn32                                                                                                                                                                                             .text 0040EFDA 0000002E R . . . B . .
    CDataStore__PutInt16                                                                                                                                                                                            .text 0040EFAA 00000030 R . . . B . .
    CDataStore__PutInt32AtPos                                                                                                                                                                                       .text 0040EF53 0000002A R . . . B . .
    CDataStore__PutInt64                                                                                                                                                                                            .text 0040F008 00000035 R . . . B . .
    CDataStore__PutInt8                                                                                                                                                                                             .text 0040EF7D 0000002D R . . . B . .
    CDataStore__Read10Bits                                                                                                                                                                                          .text 006943B7 00000035 R . . . B . .
    CDataStore__Read11Bits                                                                                                                                                                                          .text 006640B5 00000035 R . . . B . .
    CDataStore__Read12Bits                                                                                                                                                                                          .text 006943EC 00000035 R . . . B . .
    CDataStore__Read13Bits                                                                                                                                                                                          .text 006640EA 00000035 R . . . B . .
    CDataStore__Read16Bits                                                                                                                                                                                          .text 006BB831 00000035 R . . . B . .
    CDataStore__Read17Bits                                                                                                                                                                                          .text 00694421 00000042 R . . . B . .
    CDataStore__Read18Bits                                                                                                                                                                                          .text 0069BA21 0000004B R . . . B . .
    CDataStore__Read19Bits                                                                                                                                                                                          .text 0069BA6C 0000004B R . . . B . .
    CDataStore__Read20Bits                                                                                                                                                                                          .text 0068E8B4 0000004B R . . . B . .
    CDataStore__Read21Bits                                                                                                                                                                                          .text 0069BAB7 0000004B R . . . B . .
    CDataStore__Read22Bits                                                                                                                                                                                          .text 0068E8FF 0000004B R . . . B . .
    CDataStore__Read23Bits                                                                                                                                                                                          .text 00694463 0000004B R . . . B . .
    CDataStore__Read24Bits                                                                                                                                                                                          .text 006944AE 0000003B R . . . B . .
    CDataStore__Read25Bits                                                                                                                                                                                          .text 006F4C42 00000042 R . . . B . .
    CDataStore__Read2Bits                                                                                                                                                                                           .text 00689E7B 00000087 R . . . B . .
    CDataStore__Read30Bits                                                                                                                                                                                          .text 0068E94A 0000004B R . . . B . .
    CDataStore__Read3Bits                                                                                                                                                                                           .text 0065D90B 00000087 R . . . B . .
    CDataStore__Read4Bits                                                                                                                                                                                           .text 00689F02 00000087 R . . . B . .
    CDataStore__Read5Bits                                                                                                                                                                                           .text 0065D992 00000087 R . . . B . .
    CDataStore__Read6Bits                                                                                                                                                                                           .text 00689F89 00000087 R . . . B . .
    CDataStore__Read7Bits                                                                                                                                                                                           .text 0065DA19 00000084 R . . . B . .
    CDataStore__Read8Bits                                                                                                                                                                                           .text 0065DBE2 0000005C R . . . B . .
    CDataStore__ReadBit                                                                                                                                                                                             .text 0065DBA8 0000003A R . . . B . .
    CDataStore__ReadFloat                                                                                                                                                                                           .text 00688688 00000017 R . . . B . .
    CDataStore__ReadPackGuid                                                                                                                                                                                        .text 00C464FE 00000059 R . . . B . .
    CDataStore__ReadPackXYZ                                                                                                                                                                                         .text 007FE1F9 0000007B R . . . . . .
    CDataStore__ReadPacketTime                                                                                                                                                                                      .text 00A43D95 00000022 R . . . B . .
    CDataStore__ReadSizedString2                                                                                                                                                                                    .text 0040F507 00000009 R . . . B . .
    CDataStore__ReadUInt32                                                                                                                                                                                          .text 0063DB7B 00000016 R . . . B . .
    CDataStore__ReadUInt8                                                                                                                                                                                           .text 0050E270 00000016 R . . . B . .
    CDataStore__Release                                                                                                                                                                                             .text 0040EEB5 00000039 R . . . B . .
    CDataStore__StoreAndCheck19Bits                                                                                                                                                                                 .text 0075F826 00000054 R . . . B . .
    CDataStore__StoreAndCheck19Bits_0                                                                                                                                                                               .text 006A53E5 0000006F R . . . B . .
    CDataStore__StoreAndCheck20Bits                                                                                                                                                                                 .text 0049B94D 00000053 R . . . B . .
    CDataStore__StoreAndCheck20Bits_0                                                                                                                                                                               .text 00753387 0000006D R . . . B . .
    CDataStore__StoreAndCheck21Bits                                                                                                                                                                                 .text 0075F7DA 00000026 R . . . B . .
    CDataStore__StoreAndCheck21Bits_0                                                                                                                                                                               .text 0049B9A0 00000047 R . . . B . .
    CDataStore__StoreAndCheck22Bits                                                                                                                                                                                 .text 0044CFBF 00000026 R . . . B . .
    CDataStore__StoreAndCheck22Bits_0                                                                                                                                                                               .text 0050DCE4 00000026 R . . . B . .
    CDataStore__StoreAndCheck23Bits                                                                                                                                                                                 .text 0049B9E7 00000026 R . . . B . .
    CDataStore__StoreAndCheck24Bits                                                                                                                                                                                 .text 006676DF 00000026 R . . . B . .
    CDataStore__Write10Bits                                                                                                                                                                                         .text 00663EF7 0000003B R . . . B . .
    CDataStore__Write11Bits                                                                                                                                                                                         .text 00663F32 0000003B R . . . B . .
    CDataStore__Write13Bits                                                                                                                                                                                         .text 00663FA8 0000003B R . . . B . .
    CDataStore__Write14Bits                                                                                                                                                                                         .text 00C6E2CE 0000003B R . . . B . .
    CDataStore__Write20Bits                                                                                                                                                                                         .text 0068E866 0000004E R . . . B . .
    CDataStore__Write21Bits                                                                                                                                                                                         .text 00663FE3 0000004E R . . . B . .
    CDataStore__Write22Bits                                                                                                                                                                                         .text 00664031 0000004E R . . . B . .
    CDataStore__Write22Bits_0                                                                                                                                                                                       .text 0061E59A 00000037 R . . . B . .
    CDataStore__Write23Bits                                                                                                                                                                                         .text 0068704A 0000004E R . . . B . .
    CDataStore__Write24Bits                                                                                                                                                                                         .text 0066407F 00000036 R . . . B . .
    CDataStore__Write2Bits                                                                                                                                                                                          .text 0065D617 0000007E R . . . B . .
    CDataStore__Write30Bits                                                                                                                                                                                         .text 0066A1D4 0000004E R . . . B . .
    CDataStore__Write3Bits                                                                                                                                                                                          .text 0065D695 0000007E R . . . B . .
    CDataStore__Write4Bits                                                                                                                                                                                          .text 0065D713 0000007E R . . . B . .
    CDataStore__Write5Bits                                                                                                                                                                                          .text 0065D791 0000007E R . . . B . .
    CDataStore__Write6Bits                                                                                                                                                                                          .text 0065D80F 0000007E R . . . B . .
    CDataStore__Write7Bits                                                                                                                                                                                          .text 0065D88D 0000007E R . . . B . .
    CDataStore__Write8Bits                                                                                                                                                                                          .text 0065DACB 00000050 R . . . B . .
    CDataStore__WriteBit                                                                                                                                                                                            .text 0065DA9D 0000002E R . . . B . .
    DBC functions
    Code:
    DBCache<CGPetition,int,HASHKEY_DWORD,NullXInfo>::DBCache(ulong,char  const*,uint,uint,bool,bool,bool,uint)                                                                                                      .text 0062558E 000000B7 R . . . B . .
    DBCache<CreatureStats_C,int,HASHKEY_DWORD,NullXInfo>::DBCache(ulong,char  const*,uint,uint,bool,bool,bool,uint)                                                                                                 .text 00624DB6 000000B7 R . . . B . .
    DBCache<CreatureStats_C,int,HASHKEY_DWORD,NullXInfo>::Load(void)                                                                                                                                                .text 006271C3 00000340 R . . . B . .
    DBCache<GameObjectStats_C,int,HASHKEY_DWORD,NullXInfo>::DBCache(ulong,char  const*,uint,uint,bool,bool,bool,uint)                                                                                               .text 00624EB1 000000B7 R . . . B . .
    DBCache<GameObjectStats_C,int,HASHKEY_DWORD,NullXInfo>::Load(void)                                                                                                                                              .text 006276C1 00000340 R . . . B . .
    DBCache<GuildStats_C,ulong long,CHashKeyGUID,NullXInfo>::CancelCallback(ulong long,void *,void *)                                                                                                               .text 00620D1E 00000081 R . . . B . .
    DBCache<GuildStats_C,ulong long,CHashKeyGUID,NullXInfo>::DBCache(ulong,char  const*,uint,uint,bool,bool,bool,uint)                                                                                              .text 006251A2 000000B7 R . . . B . .
    DBCache<GuildStats_C,ulong long,CHashKeyGUID,NullXInfo>::GetRecord2(ulong long,ulong long  const&,void (*)(ulong long  const&,ulong long  const&,void *,bool),void *,bool)                                      .text 0062AB9A 00000022 R . . . B . .
    DBCache<GuildStats_C,ulong long,CHashKeyGUID,NullXInfo>::Load(void)                                                                                                                                             .text 00628227 00000364 R . . . B . .
    DBCache<ItemTextCache_C,ulong long,CHashKeyGUID,NullXInfo>::DBCache(ulong,char  const*,uint,uint,bool,bool,bool,uint)                                                                                           .text 00625689 000000B7 R . . . B . .
    DBCache<ItemTextCache_C,ulong long,CHashKeyGUID,NullXInfo>::GetRecord(ulong long,ulong long  const&,void (*)(int,ulong long  const&,void *,bool),void *,bool)                                                   .text 0062B078 00000022 R . . . B . .
    DBCache<NPCText,int,HASHKEY_DWORD,NullXInfo>::DBCache(ulong,char  const*,uint,uint,bool,bool,bool,uint)                                                                                                         .text 00624FAC 000000B7 R . . . B . .
    DBCache<NPCText,int,HASHKEY_DWORD,NullXInfo>::Load(void)                                                                                                                                                        .text 00627B9E 00000337 R . . . B . .
    DBCache<NameCache,ulong long,CHashKeyGUID,NameCacheXInfo>::CancelCallback(ulong long,void *,void *)                                                                                                             .text 00620B86 00000081 R . . . B . .
    DBCache<NameCache,ulong long,CHashKeyGUID,NameCacheXInfo>::DBCache(ulong,char  const*,uint,uint,bool,bool,bool,uint)                                                                                            .text 006250A7 000000B7 R . . . B . .
    DBCache<NameCache,ulong long,CHashKeyGUID,NameCacheXInfo>::Load(void)                                                                                                                                           .text 0062A80C 0000036C R . . . B . .
    DBCache<PageTextCache_C,int,HASHKEY_DWORD,NullXInfo>::DBCache(ulong,char  const*,uint,uint,bool,bool,bool,uint)                                                                                                 .text 00625398 000000B7 R . . . B . .
    DBCache<PetNameCache,int,HASHKEY_DWORD,NullXInfo>::DBCache(ulong,char  const*,uint,uint,bool,bool,bool,uint)                                                                                                    .text 00625493 000000B7 R . . . B . .
    DBCache<QuestCache,int,HASHKEY_DWORD,NullXInfo>::DBCache(ulong,char  const*,uint,uint,bool,bool,bool,uint)                                                                                                      .text 0062529D 000000B7 R . . . B . .
    DBCache<QuestCache,int,HASHKEY_DWORD,NullXInfo>::GetRecord(int,ulong long  const&,void (*)(int,ulong long  const&,void *,bool),void *,bool)                                                                     .text 0062ABBC 00000022 R . . . B . .
    DBCache<QuestCache,int,HASHKEY_DWORD,NullXInfo>::GetRecordBase(int  const&,ulong long  const&,NullXInfo const&,DBCacheNotifyFunc_CallbackType,void *,void *,bool)                                               .text 0062858B 0000012B R . . . B . .
    DBCache<QuestCache,int,HASHKEY_DWORD,NullXInfo>::Load(void)                                                                                                                                                     .text 0062874D 00000340 R . . . B . .
    DBCache<RealmCache,ulong,HASHKEY_DWORD,NullXInfo>::DBCache(ulong,char  const*,uint,uint,bool,bool,bool,uint)                                                                                                    .text 0062587F 000000B7 R . . . B . .
    DBCache<WardenCachedModule,CWardenKey,CWardenKey,NullXInfo>::DBCache(ulong,char  const*,uint,uint,bool,bool,bool,uint)                                                                                          .text 00625784 000000B7 R . . . B . .
    DBCache_Initialize(void)                                                                                                                                                                                        .text 005FAC09 00000082 R . . . . . .
    DBCache_Initialize(void)                                                                                                                                                                                        .text 005FAFF8 00000005 R . . . . . .
    DBCache_NameCache__GetRecord                                                                                                                                                                                    .text 0062A728 0000002B R . . . B . .
    DBCache_PetNameCache__GetRecord                                                                                                                                                                                 .text 0062AC00 00000022 R . . . B . .
    DBCache_RealmCache__GetRecord                                                                                                                                                                                   .text 0062B0BC 00000022 R . . . B . .
    FrameScripts
    Code:
    FrameScript_ExecuteBuffer                                                                                                                                                                                       .text 0044F9EC 000000EC R . . . B . .
    FrameScript_GetContext(void)                                                                                                                                                                                    .text 0082E61E 00000005 R . . . . . .
    FrameScript_GetContext(void)                                                                                                                                                                                    .text 0044E854 00000006 R . . . . . .
    FrameScript_GetErrorHandlerReference(void)                                                                                                                                                                      .text 0044FAE5 00000006 R . . . . . .
    FrameScript_GetPluralIndex                                                                                                                                                                                      .text 0044E7B5 0000005F R . . . B . .
    FrameScript_HookWrapper(lua_State *)                                                                                                                                                                            .text 0044DB6C 000001A0 R . . . B . .
    FrameScript_Initialize                                                                                                                                                                                          .text 004508D9 000001E8 R . . . . . .
    FrameScript_Object::GetScriptByNameCamelCase(char  const*,FrameScript_Object::ScriptData &)                                                                                                                     .text 00450707 0000004E R . . . B . .
    FrameScript_Object::HookScript(lua_State *)                                                                                                                                                                     .text 004510C8 000002BC R . . . B . .
    FrameScript_Object::RegisterScriptObject(char  const*)                                                                                                                                                          .text 004504FA 0000017A R . . . B . .
    FrameScript_RegisterFunction                                                                                                                                                                                    .text 0044EAB6 00000038 R . . . B . .
    FrameScript_SetVariable                                                                                                                                                                                         .text 0044EB21 0000003B R . . . B . .
    FrameScript__GetLocalizedText                                                                                                                                                                                   .text 00809F01 00000043 R . . . B . .
    FrameScript__GetParamValue                                                                                                                                                                                      .text 0045ADD7 00000078 R . . . B . .
    FrameScript__GetText                                                                                                                                                                                            .text 00450AC1 00000104 R . . . B . .
    FrameScript__GetVariable                                                                                                                                                                                        .text 0044EB5C 00000054 R . . . B . .
    FrameScript__ShouldSignalEvent                                                                                                                                                                                  .text 00450CDC 0000005C R . . . B . .
    FrameScript__SignalEvent                                                                                                                                                                                        .text 0045264E 00000019 R . . . B T .
    FrameScript__UnregisterFunction                                                                                                                                                                                 .text 0044EAEE 00000033 R . . . B . .
    FrameScript__objlen
    NetClient
    Code:
    NetClient::ClientConnectionAuthChallengeHandler(ClientConnectionAuthChallenge *)                                                                                                                                .text 0078E4A6 000002CD R . . . B . .
    NetClient::Connect(SockAddr  const&,ushort)                                                                                                                                                                     .text 0078F5B5 0000006A R . . . B . .
    NetClient::ConnectInternal(SockAddr  const&,ushort)                                                                                                                                                             .text 0078F116 00000093 R . . . B . .
    NetClient::DecompressAndProcess(WowConnection *,uchar *,int)                                                                                                                                                    .text 0078EB2B 00000128 R . . . B . .
    NetClient::Destroy(void)                                                                                                                                                                                        .text 0078F46D 00000148 R . . . B . .
    NetClient::GotChunkedData(WowConnection *,uchar *,int,bool)                                                                                                                                                     .text 0078D35B 00000077 R . . . B . .
    NetClient::HandleCantConnect(void)                                                                                                                                                                              .text 005F433F 00000016 R . . . B . .
    NetClient::InitCompression(NetClient::CONNECTIONS)                                                                                                                                                              .text 0078DDEF 00000078 R . . . B . .
    NetClient::Initialize(void)                                                                                                                                                                                     .text 0078DF1F 00000100 R . . . B . .
    NetClient::JAMClientConnectionDispatch(WowConnection *,ulong,ushort,CDataStore *)                                                                                                                               .text 00C684B4 0000019D R . . . B . .
    NetClient::NetClient(void)                                                                                                                                                                                      .text 0078F880 000001A9 R . . . B . .
    NetClient::OneMessageReady(WowConnection *,ulong,uchar *,int)                                                                                                                                                   .text 0078E773 00000304 R . . . B . .
    NetClient::Ping(CONNECTION_ID)                                                                                                                                                                                  .text 0078DB65 000000BD R . . . B . .
    NetClient::ProcessMessage(ulong,CDataStore *,int)                                                                                                                                                               .text 0078D225 00000136 R . . . B T .
    NetClient::SendDisconnectReason(WowConnection *,DISCONNECT_REASON)                                                                                                                                              .text 0078ED58 00000046 R . . . B . .
    NetClient::SendDisconnectReason(WowConnection *,DISCONNECT_REASON)                                                                                                                                              .text 0078DDBE 00000031 R . . . B . .
    NetClient::SendOnConnection(JamClientMessage *,WowConnection *)                                                                                                                                                 .text 0078DA27 00000065 R . . . B . .
    NetClient::WCPacketReady(WowConnection *,ulong,PPBuf  const&)                                                                                                                                                   .text 0078EE95 00000047 R . . . B . .
    NetClient__Disconnect                                                                                                                                                                                           .text 00A525C9 00000033 R . . . B . .
    NetClient__JamClient__CalculateOffset                                                                                                                                                                           .text 0078CF4F 0000004F R . . . B . .
    NetClient__Send                                                                                                                                                                                                 .text 0078F1A9 00000180 R . . . B . .
    NetClient__WriteAddonData
    WowConnection
    Code:
    WowConnection::Connect(SockAddr  const&,ushort,int)                                                                                                                                                             .text 00A418CA 00000029 R . . . B T .
    WowConnection::Disconnect(void)                                                                                                                                                                                 .text 00A405A8 00000031 R . . . . . .
    WowConnection::InitOsNet(bool (*)(NETADDR  const*),void (*)(void),int,bool)                                                                                                                                     .text 00A4195A 00000099 R . . . B T .
    WowConnection::Send(PPBuf  const*,int)                                                                                                                                                                          .text 00A402E0 00000048 R . . . B . .
    WowConnection::SetPipe(IPacketPipe *)                                                                                                                                                                           .text 00A405D9 0000005A R . . . B . .
    WowConnection::SetPipeActual(IPacketPipe *)                                                                                                                                                                     .text 00A40328 00000046 R . . . B . .
    WowConnection::WowConnection(WowConnectionResponse *,IPacketPipe *,void (*)(void))
    Code:
                                                                                                                                                                         .text 00C7B6A0 00000034 R . . . . . .
    ClientServices::Send2(CDataStore *)                                                                                                                                                                             .text 00A537B9 0000001F R . . . B . .
    ClientServices__GetConnectionID                                                                                                                                                                                 .text 00A5368F 0000001F R . . . . . .
    ClientServices__GetSelectedRealm                                                                                                                                                                                .text 00A528EE 00000011 R . . . . . .
    ClientServices__Initialize                                                                                                                                                                                      .text 00A53EB0 00000099 R . . . . . .
    ClientServices__Send
    Object Manager
    Code:
    ClntObjMgrDestroyShared                                                                                                                                                                                         .text 00792519 00000053 R . . . B . .
    ClntObjMgrDestroyStd                                                                                                                                                                                            .text 00792B0F 00000030 R . . . . . .
    ClntObjMgrEnumVisibleObjects                                                                                                                                                                                    .text 007909C3 00000057 R . . . B . .
    ClntObjMgrEnumVisibleObjects(int (*)(ulong long,void *),void *)                                                                                                                                                 .text 007A161D 00000022 R . . . B . .
    ClntObjMgrGetActivePlayer                                                                                                                                                                                       .text 00404E5A 0000001C R . . . . . .
    ClntObjMgrGetActivePlayer(void)                                                                                                                                                                                 .text 0078FE86 0000001C R . . . . . .
    ClntObjMgrGetActivePlayer(void)                                                                                                                                                                                 .text 00876ED5 0000002E R . . . . . .
    ClntObjMgrGetActivePlayerGuid                                                                                                                                                                                   .text 0078FE23 0000001C R . . . . . .
    ClntObjMgrGetActivePlayerObj                                                                                                                                                                                    .text 0062A6E9 0000003F R . . . B . .
    ClntObjMgrGetCurrent(void)                                                                                                                                                                                      .text 0078FDF6 00000006 R . . . . . .
    ClntObjMgrGetMapID                                                                                                                                                                                              .text 0078FE4B 00000013 R . . . . . .
    ClntObjMgrGetMovementGlobals(void)                                                                                                                                                                              .text 0078FE5E 00000011 R . . . . . .
    ClntObjMgrGetPlayerType(void)                                                                                                                                                                                   .text 0078FE3F 0000000C R . . . . . .
    ClntObjMgrInitializeShared                                                                                                                                                                                      .text 00790946 0000007D R . . . . . .
    ClntObjMgrInitializeStd                                                                                                                                                                                         .text 00793558 000000A9 R . . . B . .
    ClntObjMgrInitializeStd(uint)                                                                                                                                                                                   .text 00792959 000000A4 R . . . B . .
    ClntObjMgrObjectPtr(ulong long,OBJECT_TYPE,char  const*,uint)                                                                                                                                                   .text 00790CDD 0000002D R . . . B . .
    ClntObjMgrPop(void)                                                                                                                                                                                             .text 0078FDE0 00000016 R . . . . . .
    ClntObjMgrPush                                                                                                                                                                                                  .text 0078FDBB 00000025 R . . . B . .
    ClntObjMgrPush(ClntObjMgr *)                                                                                                                                                                                    .text 0078D6B9 00000012 R . . . . . .
    ClntObjMgrSetMovementGlobals(void *)                                                                                                                                                                            .text 0078FE6F 00000017 R . . . B . .
    ClntObjMgrSetTypeMirrorHandler                                                                                                                                                                                  .text 0079163D 00000050 R . . . B . .
    ClntObjMgrSetTypeMirrorHandler(OBJECT_TYPE_ID,ulong,uint,int (*)(ulong long,uint,uint,void  const*,void *,uint),int,void *,HANDLER_PRIORITY,int,uint,int (*)(ulong long,void *),void *)                         .text 007915A9 00000057 R . . . B . .
    ClntObjMgrUnlockObject(ulong long,char  const*,uint)

  8. #23
    Rage Hunter's Avatar Sergeant
    Reputation
    59
    Join Date
    Jun 2008
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    CGUnitData.NpcFlags = CGObjectData.End + 80, // size 2, flags MIRROR_ALL
    Not work for me
    Code:
    CGObjectData.End = 8
    CGUnitData.NpcFlags = CGObjectData.End + 79, // size 2, flags MIRROR_ALL
    Work for me

    Is this correct? Or not?

  9. #24
    xalcon's Avatar Contributor ふたなり
    Authenticator enabled
    Reputation
    198
    Join Date
    Oct 2008
    Posts
    291
    Thanks G/R
    20/58
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Well, it seems there is an error in the descriptor dumps:
    Code:
        ModHasteRegen = CGObjectData.End + 77, // size 1, flags MIRROR_ALL
        CreatedBySpell = CGObjectData.End + 78, // size 1, flags MIRROR_ALL
        NpcFlags = CGObjectData.End + 80, // size 2, flags MIRROR_ALL
        EmoteState = CGObjectData.End + 81, // size 1, flags MIRROR_ALL
    I'm not superior in math, but my calculator says 78 + 1 (size) is 79
    I have to look into my own dumps later.
    "Threads should always commit suicide - they should never be murdered" - DirectX SDK

  10. #25
    charles420's Avatar Elite User
    Reputation
    335
    Join Date
    Jun 2009
    Posts
    337
    Thanks G/R
    25/123
    Trade Feedback
    0 (0%)
    Mentioned
    10 Post(s)
    Tagged
    0 Thread(s)
    yes rage u are right i played with these offsets for 2 hrs /cry

  11. #26
    JuJuBoSc's Avatar Banned for scamming CoreCoins Purchaser
    Reputation
    1019
    Join Date
    May 2007
    Posts
    922
    Thanks G/R
    1/3
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hehe UNKW0 stuff something like that

  12. #27
    xalcon's Avatar Contributor ふたなり
    Authenticator enabled
    Reputation
    198
    Join Date
    Oct 2008
    Posts
    291
    Thanks G/R
    20/58
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JuJuBoSc View Post
    hehe UNKW0 stuff something like that
    Nope, I dont think so eracer does have an error in his dump.
    CreatedBySpell is at CGObjectData.End + 78(*4) and 4 bytes in size, so NpcFlags should be at CGObjectData.End + 79(*4) or CreatedBySpell + 1(*4)
    The size of the NpcFlags does not matter in this case.
    Here is my dump: (Multiply by 4 to get the byte offset)
    Code:
    enum CGObjectData
    {
    	Guid = 0, // size 2, flags 0x0001
    	Data = 2, // size 2, flags 0x0001
    	Type = 4, // size 1, flags 0x0001
    	EntryID = 5, // size 1, flags 0x0080
    	DynamicFlags = 6, // size 1, flags 0x0180
    	Scale = 7, // size 1, flags 0x0001
    	End = 8
    }
    
    enum CGItemData
    {
    	Owner = CGObjectData.End + 0, // size 2, flags 0x0001
    	ContainedIn = CGObjectData.End + 2, // size 2, flags 0x0001
    	Creator = CGObjectData.End + 4, // size 2, flags 0x0001
    	GiftCreator = CGObjectData.End + 6, // size 2, flags 0x0001
    	StackCount = CGObjectData.End + 8, // size 1, flags 0x0004
    	Expiration = CGObjectData.End + 9, // size 1, flags 0x0004
    	SpellCharges = CGObjectData.End + 10, // size 5, flags 0x0004
    	DynamicFlags = CGObjectData.End + 15, // size 1, flags 0x0001
    	Enchantment = CGObjectData.End + 16, // size 39, flags 0x0001
    	PropertySeed = CGObjectData.End + 55, // size 1, flags 0x0001
    	RandomPropertiesID = CGObjectData.End + 56, // size 1, flags 0x0001
    	Durability = CGObjectData.End + 57, // size 1, flags 0x0004
    	MaxDurability = CGObjectData.End + 58, // size 1, flags 0x0004
    	CreatePlayedTime = CGObjectData.End + 59, // size 1, flags 0x0001
    	ModifiersMask = CGObjectData.End + 60, // size 1, flags 0x0004
    	End = CGObjectData.End + 61
    }
    
    enum CGContainerData
    {
    	NumSlots = CGItemData.End + 0, // size 1, flags 0x0001
    	End = CGItemData.End + 1
    }
    
    enum CGUnitData
    {
    	Charm = CGObjectData.End + 0, // size 2, flags 0x0001
    	Summon = CGObjectData.End + 2, // size 2, flags 0x0001
    	Critter = CGObjectData.End + 4, // size 2, flags 0x0002
    	CharmedBy = CGObjectData.End + 6, // size 2, flags 0x0001
    	SummonedBy = CGObjectData.End + 8, // size 2, flags 0x0001
    	CreatedBy = CGObjectData.End + 10, // size 2, flags 0x0001
    	DemonCreator = CGObjectData.End + 12, // size 2, flags 0x0001
    	Target = CGObjectData.End + 14, // size 2, flags 0x0001
    	BattlePetCompanionGUID = CGObjectData.End + 16, // size 2, flags 0x0001
    	ChannelObject = CGObjectData.End + 18, // size 2, flags 0x0101
    	ChannelSpell = CGObjectData.End + 20, // size 1, flags 0x0101
    	SummonedByHomeRealm = CGObjectData.End + 21, // size 1, flags 0x0001
    	Sex = CGObjectData.End + 22, // size 1, flags 0x0001
    	DisplayPower = CGObjectData.End + 23, // size 1, flags 0x0001
    	OverrideDisplayPowerID = CGObjectData.End + 24, // size 1, flags 0x0001
    	Health = CGObjectData.End + 25, // size 1, flags 0x0001
    	Power = CGObjectData.End + 26, // size 5, flags 0x0001
    	MaxHealth = CGObjectData.End + 31, // size 1, flags 0x0001
    	MaxPower = CGObjectData.End + 32, // size 5, flags 0x0001
    	PowerRegenFlatModifier = CGObjectData.End + 37, // size 5, flags 0x0046
    	PowerRegenInterruptedFlatModifier = CGObjectData.End + 42, // size 5, flags 0x0046
    	Level = CGObjectData.End + 47, // size 1, flags 0x0001
    	EffectiveLevel = CGObjectData.End + 48, // size 1, flags 0x0001
    	FactionTemplate = CGObjectData.End + 49, // size 1, flags 0x0001
    	VirtualItemID = CGObjectData.End + 50, // size 3, flags 0x0001
    	Flags = CGObjectData.End + 53, // size 1, flags 0x0001
    	Flags2 = CGObjectData.End + 54, // size 1, flags 0x0001
    	AuraState = CGObjectData.End + 55, // size 1, flags 0x0001
    	AttackRoundBaseTime = CGObjectData.End + 56, // size 2, flags 0x0001
    	RangedAttackRoundBaseTime = CGObjectData.End + 58, // size 1, flags 0x0002
    	BoundingRadius = CGObjectData.End + 59, // size 1, flags 0x0001
    	CombatReach = CGObjectData.End + 60, // size 1, flags 0x0001
    	DisplayID = CGObjectData.End + 61, // size 1, flags 0x0180
    	NativeDisplayID = CGObjectData.End + 62, // size 1, flags 0x0101
    	MountDisplayID = CGObjectData.End + 63, // size 1, flags 0x0101
    	MinDamage = CGObjectData.End + 64, // size 1, flags 0x0016
    	MaxDamage = CGObjectData.End + 65, // size 1, flags 0x0016
    	MinOffHandDamage = CGObjectData.End + 66, // size 1, flags 0x0016
    	MaxOffHandDamage = CGObjectData.End + 67, // size 1, flags 0x0016
    	AnimTier = CGObjectData.End + 68, // size 1, flags 0x0001
    	PetNumber = CGObjectData.End + 69, // size 1, flags 0x0001
    	PetNameTimestamp = CGObjectData.End + 70, // size 1, flags 0x0001
    	PetExperience = CGObjectData.End + 71, // size 1, flags 0x0004
    	PetNextLevelExperience = CGObjectData.End + 72, // size 1, flags 0x0004
    	ModCastingSpeed = CGObjectData.End + 73, // size 1, flags 0x0001
    	ModSpellHaste = CGObjectData.End + 74, // size 1, flags 0x0001
    	ModHaste = CGObjectData.End + 75, // size 1, flags 0x0001
    	ModRangedHaste = CGObjectData.End + 76, // size 1, flags 0x0001
    	ModHasteRegen = CGObjectData.End + 77, // size 1, flags 0x0001
    	CreatedBySpell = CGObjectData.End + 78, // size 1, flags 0x0001
    	NpcFlags = CGObjectData.End + 79, // size 2, flags 0x0081
    	EmoteState = CGObjectData.End + 81, // size 1, flags 0x0001
    	Stats = CGObjectData.End + 82, // size 5, flags 0x0006
    	StatPosBuff = CGObjectData.End + 87, // size 5, flags 0x0006
    	StatNegBuff = CGObjectData.End + 92, // size 5, flags 0x0006
    	Resistances = CGObjectData.End + 97, // size 7, flags 0x0016
    	ResistanceBuffModsPositive = CGObjectData.End + 104, // size 7, flags 0x0006
    	ResistanceBuffModsNegative = CGObjectData.End + 111, // size 7, flags 0x0006
    	BaseMana = CGObjectData.End + 118, // size 1, flags 0x0001
    	BaseHealth = CGObjectData.End + 119, // size 1, flags 0x0006
    	ShapeshiftForm = CGObjectData.End + 120, // size 1, flags 0x0001
    	AttackPower = CGObjectData.End + 121, // size 1, flags 0x0006
    	AttackPowerModPos = CGObjectData.End + 122, // size 1, flags 0x0006
    	AttackPowerModNeg = CGObjectData.End + 123, // size 1, flags 0x0006
    	AttackPowerMultiplier = CGObjectData.End + 124, // size 1, flags 0x0006
    	RangedAttackPower = CGObjectData.End + 125, // size 1, flags 0x0006
    	RangedAttackPowerModPos = CGObjectData.End + 126, // size 1, flags 0x0006
    	RangedAttackPowerModNeg = CGObjectData.End + 127, // size 1, flags 0x0006
    	RangedAttackPowerMultiplier = CGObjectData.End + 128, // size 1, flags 0x0006
    	MinRangedDamage = CGObjectData.End + 129, // size 1, flags 0x0006
    	MaxRangedDamage = CGObjectData.End + 130, // size 1, flags 0x0006
    	PowerCostModifier = CGObjectData.End + 131, // size 7, flags 0x0006
    	PowerCostMultiplier = CGObjectData.End + 138, // size 7, flags 0x0006
    	MaxHealthModifier = CGObjectData.End + 145, // size 1, flags 0x0006
    	HoverHeight = CGObjectData.End + 146, // size 1, flags 0x0001
    	MinItemLevel = CGObjectData.End + 147, // size 1, flags 0x0001
    	MaxItemLevel = CGObjectData.End + 148, // size 1, flags 0x0001
    	WildBattlePetLevel = CGObjectData.End + 149, // size 1, flags 0x0001
    	BattlePetCompanionNameTimestamp = CGObjectData.End + 150, // size 1, flags 0x0001
    	InteractSpellID = CGObjectData.End + 151, // size 1, flags 0x0001
    	End = CGObjectData.End + 152
    }
    
    enum CGPlayerData
    {
    	DuelArbiter = CGUnitData.End + 0, // size 2, flags 0x0001
    	PlayerFlags = CGUnitData.End + 2, // size 1, flags 0x0001
    	GuildRankID = CGUnitData.End + 3, // size 1, flags 0x0001
    	GuildDeleteDate = CGUnitData.End + 4, // size 1, flags 0x0001
    	GuildLevel = CGUnitData.End + 5, // size 1, flags 0x0001
    	HairColorID = CGUnitData.End + 6, // size 1, flags 0x0001
    	RestState = CGUnitData.End + 7, // size 1, flags 0x0001
    	ArenaFaction = CGUnitData.End + 8, // size 1, flags 0x0001
    	DuelTeam = CGUnitData.End + 9, // size 1, flags 0x0001
    	GuildTimeStamp = CGUnitData.End + 10, // size 1, flags 0x0001
    	QuestLog = CGUnitData.End + 11, // size 750, flags 0x0020
    	VisibleItems = CGUnitData.End + 761, // size 38, flags 0x0001
    	PlayerTitle = CGUnitData.End + 799, // size 1, flags 0x0001
    	FakeInebriation = CGUnitData.End + 800, // size 1, flags 0x0001
    	VirtualPlayerRealm = CGUnitData.End + 801, // size 1, flags 0x0001
    	CurrentSpecID = CGUnitData.End + 802, // size 1, flags 0x0001
    	TaxiMountAnimKitID = CGUnitData.End + 803, // size 1, flags 0x0001
    	CurrentBattlePetBreedQuality = CGUnitData.End + 804, // size 1, flags 0x0001
    	InvSlots = CGUnitData.End + 805, // size 172, flags 0x0002
    	FarsightObject = CGUnitData.End + 977, // size 2, flags 0x0002
    	KnownTitles = CGUnitData.End + 979, // size 10, flags 0x0002
    	Coinage = CGUnitData.End + 989, // size 2, flags 0x0002
    	XP = CGUnitData.End + 991, // size 1, flags 0x0002
    	NextLevelXP = CGUnitData.End + 992, // size 1, flags 0x0002
    	Skill = CGUnitData.End + 993, // size 448, flags 0x0002
    	CharacterPoints = CGUnitData.End + 1441, // size 1, flags 0x0002
    	MaxTalentTiers = CGUnitData.End + 1442, // size 1, flags 0x0002
    	TrackCreatureMask = CGUnitData.End + 1443, // size 1, flags 0x0002
    	TrackResourceMask = CGUnitData.End + 1444, // size 1, flags 0x0002
    	MainhandExpertise = CGUnitData.End + 1445, // size 1, flags 0x0002
    	OffhandExpertise = CGUnitData.End + 1446, // size 1, flags 0x0002
    	RangedExpertise = CGUnitData.End + 1447, // size 1, flags 0x0002
    	CombatRatingExpertise = CGUnitData.End + 1448, // size 1, flags 0x0002
    	BlockPercentage = CGUnitData.End + 1449, // size 1, flags 0x0002
    	DodgePercentage = CGUnitData.End + 1450, // size 1, flags 0x0002
    	ParryPercentage = CGUnitData.End + 1451, // size 1, flags 0x0002
    	CritPercentage = CGUnitData.End + 1452, // size 1, flags 0x0002
    	RangedCritPercentage = CGUnitData.End + 1453, // size 1, flags 0x0002
    	OffhandCritPercentage = CGUnitData.End + 1454, // size 1, flags 0x0002
    	SpellCritPercentage = CGUnitData.End + 1455, // size 7, flags 0x0002
    	ShieldBlock = CGUnitData.End + 1462, // size 1, flags 0x0002
    	ShieldBlockCritPercentage = CGUnitData.End + 1463, // size 1, flags 0x0002
    	Mastery = CGUnitData.End + 1464, // size 1, flags 0x0002
    	PvpPowerDamage = CGUnitData.End + 1465, // size 1, flags 0x0002
    	PvpPowerHealing = CGUnitData.End + 1466, // size 1, flags 0x0002
    	ExploredZones = CGUnitData.End + 1467, // size 200, flags 0x0002
    	RestStateBonusPool = CGUnitData.End + 1667, // size 1, flags 0x0002
    	ModDamageDonePos = CGUnitData.End + 1668, // size 7, flags 0x0002
    	ModDamageDoneNeg = CGUnitData.End + 1675, // size 7, flags 0x0002
    	ModDamageDonePercent = CGUnitData.End + 1682, // size 7, flags 0x0002
    	ModHealingDonePos = CGUnitData.End + 1689, // size 1, flags 0x0002
    	ModHealingPercent = CGUnitData.End + 1690, // size 1, flags 0x0002
    	ModHealingDonePercent = CGUnitData.End + 1691, // size 1, flags 0x0002
    	ModPeriodicHealingDonePercent = CGUnitData.End + 1692, // size 1, flags 0x0002
    	WeaponDmgMultipliers = CGUnitData.End + 1693, // size 3, flags 0x0002
    	ModSpellPowerPercent = CGUnitData.End + 1696, // size 1, flags 0x0002
    	ModResiliencePercent = CGUnitData.End + 1697, // size 1, flags 0x0002
    	OverrideSpellPowerByAPPercent = CGUnitData.End + 1698, // size 1, flags 0x0002
    	OverrideAPBySpellPowerPercent = CGUnitData.End + 1699, // size 1, flags 0x0002
    	ModTargetResistance = CGUnitData.End + 1700, // size 1, flags 0x0002
    	ModTargetPhysicalResistance = CGUnitData.End + 1701, // size 1, flags 0x0002
    	LifetimeMaxRank = CGUnitData.End + 1702, // size 1, flags 0x0002
    	SelfResSpell = CGUnitData.End + 1703, // size 1, flags 0x0002
    	PvpMedals = CGUnitData.End + 1704, // size 1, flags 0x0002
    	BuybackPrice = CGUnitData.End + 1705, // size 12, flags 0x0002
    	BuybackTimestamp = CGUnitData.End + 1717, // size 12, flags 0x0002
    	YesterdayHonorableKills = CGUnitData.End + 1729, // size 1, flags 0x0002
    	LifetimeHonorableKills = CGUnitData.End + 1730, // size 1, flags 0x0002
    	WatchedFactionIndex = CGUnitData.End + 1731, // size 1, flags 0x0002
    	CombatRatings = CGUnitData.End + 1732, // size 27, flags 0x0002
    	PvpInfo = CGUnitData.End + 1759, // size 24, flags 0x0002
    	MaxLevel = CGUnitData.End + 1783, // size 1, flags 0x0002
    	RuneRegen = CGUnitData.End + 1784, // size 4, flags 0x0002
    	NoReagentCostMask = CGUnitData.End + 1788, // size 4, flags 0x0002
    	GlyphSlots = CGUnitData.End + 1792, // size 6, flags 0x0002
    	Glyphs = CGUnitData.End + 1798, // size 6, flags 0x0002
    	GlyphSlotsEnabled = CGUnitData.End + 1804, // size 1, flags 0x0002
    	PetSpellPower = CGUnitData.End + 1805, // size 1, flags 0x0002
    	Researching = CGUnitData.End + 1806, // size 8, flags 0x0002
    	ProfessionSkillLine = CGUnitData.End + 1814, // size 2, flags 0x0002
    	UiHitModifier = CGUnitData.End + 1816, // size 1, flags 0x0002
    	UiSpellHitModifier = CGUnitData.End + 1817, // size 1, flags 0x0002
    	HomeRealmTimeOffset = CGUnitData.End + 1818, // size 1, flags 0x0002
    	ModPetHaste = CGUnitData.End + 1819, // size 1, flags 0x0002
    	SummonedBattlePetGUID = CGUnitData.End + 1820, // size 2, flags 0x0002
    	OverrideSpellsID = CGUnitData.End + 1822, // size 1, flags 0x0202
    	LfgBonusFactionID = CGUnitData.End + 1823, // size 1, flags 0x0002
    	LootSpecID = CGUnitData.End + 1824, // size 1, flags 0x0002
    	OverrideZonePVPType = CGUnitData.End + 1825, // size 1, flags 0x0202
    	ItemLevelDelta = CGUnitData.End + 1826, // size 1, flags 0x0002
    	End = CGUnitData.End + 1827
    }
    
    enum CGGameObjectData
    {
    	CreatedBy = CGObjectData.End + 0, // size 2, flags 0x0001
    	DisplayID = CGObjectData.End + 2, // size 1, flags 0x0001
    	Flags = CGObjectData.End + 3, // size 1, flags 0x0101
    	ParentRotation = CGObjectData.End + 4, // size 4, flags 0x0001
    	FactionTemplate = CGObjectData.End + 8, // size 1, flags 0x0001
    	Level = CGObjectData.End + 9, // size 1, flags 0x0001
    	PercentHealth = CGObjectData.End + 10, // size 1, flags 0x0101
    	StateSpellVisualID = CGObjectData.End + 11, // size 1, flags 0x0101
    	End = CGObjectData.End + 12
    }
    
    enum CGDynamicObjectData
    {
    	Caster = CGObjectData.End + 0, // size 2, flags 0x0001
    	TypeAndVisualID = CGObjectData.End + 2, // size 1, flags 0x0080
    	SpellID = CGObjectData.End + 3, // size 1, flags 0x0001
    	Radius = CGObjectData.End + 4, // size 1, flags 0x0001
    	CastTime = CGObjectData.End + 5, // size 1, flags 0x0001
    	End = CGObjectData.End + 6
    }
    
    enum CGCorpseData
    {
    	Owner = CGObjectData.End + 0, // size 2, flags 0x0001
    	PartyGUID = CGObjectData.End + 2, // size 2, flags 0x0001
    	DisplayID = CGObjectData.End + 4, // size 1, flags 0x0001
    	Items = CGObjectData.End + 5, // size 19, flags 0x0001
    	SkinID = CGObjectData.End + 24, // size 1, flags 0x0001
    	FacialHairStyleID = CGObjectData.End + 25, // size 1, flags 0x0001
    	Flags = CGObjectData.End + 26, // size 1, flags 0x0001
    	DynamicFlags = CGObjectData.End + 27, // size 1, flags 0x0080
    	End = CGObjectData.End + 28
    }
    
    enum CGAreaTriggerData
    {
    	Caster = CGObjectData.End + 0, // size 2, flags 0x0001
    	Duration = CGObjectData.End + 2, // size 1, flags 0x0001
    	SpellID = CGObjectData.End + 3, // size 1, flags 0x0001
    	SpellVisualID = CGObjectData.End + 4, // size 1, flags 0x0080
    	ExplicitScale = CGObjectData.End + 5, // size 1, flags 0x0101
    	End = CGObjectData.End + 6
    }
    
    enum CGSceneObjectData
    {
    	ScriptPackageID = CGObjectData.End + 0, // size 1, flags 0x0001
    	RndSeedVal = CGObjectData.End + 1, // size 1, flags 0x0001
    	CreatedBy = CGObjectData.End + 2, // size 2, flags 0x0001
    	SceneType = CGObjectData.End + 4, // size 1, flags 0x0001
    	End = CGObjectData.End + 5
    }
    Last edited by xalcon; 12-03-2013 at 08:51 AM.
    "Threads should always commit suicide - they should never be murdered" - DirectX SDK

  13. #28
    mazer's Avatar Active Member
    Reputation
    55
    Join Date
    Sep 2007
    Posts
    87
    Thanks G/R
    11/27
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    GetMinimapZoneText = 0xD43ABC
    CurrentTargetGUID = 0xD43AF8
    CurrentMouseOverGUID = 0xD43AE0
    Last edited by mazer; 12-09-2013 at 06:42 AM. Reason: to dump to copy stuff

  14. #29
    charles420's Avatar Elite User
    Reputation
    335
    Join Date
    Jun 2009
    Posts
    337
    Thanks G/R
    25/123
    Trade Feedback
    0 (0%)
    Mentioned
    10 Post(s)
    Tagged
    0 Thread(s)
    When i make sure my patterns work tomorrow ill toss up a list so everyone can have a copy
    Last edited by charles420; 12-10-2013 at 06:51 AM.

Page 2 of 2 FirstFirst 12

Similar Threads

  1. [WoW] [5.3.0 17055] Release x86 Info Dump Thread
    By VesperCore in forum WoW Memory Editing
    Replies: 48
    Last Post: 06-24-2013, 09:47 AM
  2. [WoW] [5.3.0 16992] Release x86 Info Dump Thread
    By -Ryuk- in forum WoW Memory Editing
    Replies: 34
    Last Post: 06-08-2013, 12:35 AM
  3. [WoW] [5.3.0 16983] Release x86 Info Dump Thread
    By VesperCore in forum WoW Memory Editing
    Replies: 25
    Last Post: 05-25-2013, 09:10 PM
  4. [WoW] [5.3.0 16981] Release x86 Info Dump Thread
    By JuJuBoSc in forum WoW Memory Editing
    Replies: 12
    Last Post: 05-23-2013, 03:46 PM
  5. [WoW] [5.3.0 16977] Release x86 Info Dump Thread
    By VesperCore in forum WoW Memory Editing
    Replies: 8
    Last Post: 05-21-2013, 11:47 PM
All times are GMT -5. The time now is 12:00 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search