Hey,
i want to Read the GameObjectType to find a Mailbox, here a List of the GameObjectType id's.
Code:
public enum WoWGameObjectType : uint
{
Door = 0,
Button = 1,
QuestGiver = 2,
Chest = 3,
Binder = 4,
Generic = 5,
Trap = 6,
Chair = 7,
SpellFocus = 8,
Text = 9,
Goober = 0xa,
Transport = 0xb,
AreaDamage = 0xc,
Camera = 0xd,
WorldObj = 0xe,
MapObjTransport = 0xf,
DuelArbiter = 0x10,
FishingNode = 0x11,
Ritual = 0x12,
Mailbox = 0x13,
AuctionHouse = 0x14,
SpellCaster = 0x16,
MeetingStone = 0x17,
Unkown18 = 0x18,
FishingPool = 0x19,
FORCEDWORD = 0xFFFFFFFF,
}
i've tried to get this Type with the 0x14 Offset but didnt get the Id's from that List.
thanks in advanced