Code:
enum eGameObjType
{
GOT_Door=0,
GOT_Button=1,
GOT_QuestGiver=2,
GOT_Chest=3,
GOT_Binder=4,
GOT_Generic=5,
GOT_Trap=6,
GOT_Chair=7,
GOT_SpellFocus=8,
GOT_Text=9,
GOT_Goober=0xa,
GOT_Transport=0xb,
GOT_AreaDamage=0xc,
GOT_Camera=0xd,
GOT_WorldObj=0xe,
GOT_MapObjTransport=0xf,
GOT_DuelArbiter=0x10,
GOT_FishingNode=0x11,
GOT_Ritual=0x12,
GOT_Mailbox=0x13,
GOT_AuctionHouse=0x14,
GOT_SpellCaster=0x16,
GOT_MeetingStone=0x17,
/* new */
GOT_FlagStand=0x18,
GOT_FishingHole=0x19,
GOT_FlagDrop=0x1A,
GOT_MiniGame=0x1B,
// Note by Cypher: Added in 3.0.x
GOT_LotteryKiosk = 28,
GOT_CapturePoint = 29,
GOT_AuraGenerator = 30,
GOT_DungeonDifficulty = 31,
GOT_BarberChair = 32,
GOT_DestructibleBuilding = 33,
GOT_GuildBank = 34,
GOT_FORCEDWORD=0xFFFFFFFF,
};
So I can find things like the location of mailboxes. I can't seem to get the right offset for these values.