aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorkaelima <jeppo_meyer@msn.com>2011-05-27 12:08:00 +0200
committerkaelima <jeppo_meyer@msn.com>2011-05-27 12:08:00 +0200
commitbc2cca07333bfcedc02b683a17c64e28c9624996 (patch)
tree2e1d9d5af52d9dc93f68347d65731375d93eedd7 /src
parent6e009d9bd1ac246d2bfda0ca8decd9d042b35998 (diff)
Core/DBC: Update some Summon-properties enums and added some research for WorldStates in dbc.
Diffstat (limited to 'src')
-rwxr-xr-xsrc/server/game/DataStores/DBCEnums.h35
-rwxr-xr-xsrc/server/game/DataStores/DBCStructure.h36
2 files changed, 55 insertions, 16 deletions
diff --git a/src/server/game/DataStores/DBCEnums.h b/src/server/game/DataStores/DBCEnums.h
index 3fbe79df86f..3555806ef41 100755
--- a/src/server/game/DataStores/DBCEnums.h
+++ b/src/server/game/DataStores/DBCEnums.h
@@ -385,27 +385,30 @@ enum SummonPropType
SUMMON_PROP_TYPE_PHASING = 8, // something todo with DK prequest line, 2 spells in 3.0.3
SUMMON_PROP_TYPE_SIEGE_VEH = 9, // summon different vehicles, 14 spells in 3.0.3
SUMMON_PROP_TYPE_DRAKE_VEH = 10, // summon drake (vehicle), 3 spells
- SUMMON_PROP_TYPE_LIGHTWELL = 11 // summon lightwell, 6 spells in 3.0.3
+ SUMMON_PROP_TYPE_LIGHTWELL = 11, // summon lightwell, 6 spells in 3.0.3
+ SUMMON_PROP_TYPE_JEEVES = 12 // summon Jeeves, 1 spell in 3.3.5a
};
// SummonProperties.dbc, col 5
enum SummonPropFlags
{
- SUMMON_PROP_FLAG_NONE = 0x0000, // 1342 spells in 3.0.3
- SUMMON_PROP_FLAG_UNK1 = 0x0001, // 75 spells in 3.0.3, something unfriendly
- SUMMON_PROP_FLAG_UNK2 = 0x0002, // 616 spells in 3.0.3, something friendly
- SUMMON_PROP_FLAG_UNK3 = 0x0004, // 22 spells in 3.0.3, no idea...
- SUMMON_PROP_FLAG_UNK4 = 0x0008, // 49 spells in 3.0.3, some mounts
- SUMMON_PROP_FLAG_UNK5 = 0x0010, // 25 spells in 3.0.3, quest related?
- SUMMON_PROP_FLAG_UNK6 = 0x0020, // 0 spells in 3.0.3, unused
- SUMMON_PROP_FLAG_UNK7 = 0x0040, // 12 spells in 3.0.3, no idea
- SUMMON_PROP_FLAG_UNK8 = 0x0080, // 4 spells in 3.0.3, no idea
- SUMMON_PROP_FLAG_UNK9 = 0x0100, // 51 spells in 3.0.3, no idea, many quest related
- SUMMON_PROP_FLAG_UNK10 = 0x0200, // 51 spells in 3.0.3, something defensive
- SUMMON_PROP_FLAG_UNK11 = 0x0400, // 3 spells, requires something near?
- SUMMON_PROP_FLAG_UNK12 = 0x0800, // 30 spells in 3.0.3, no idea
- SUMMON_PROP_FLAG_UNK13 = 0x1000, // 8 spells in 3.0.3, siege vehicle
- SUMMON_PROP_FLAG_UNK14 = 0x2000, // 2 spells in 3.0.3, escort?
+ SUMMON_PROP_FLAG_NONE = 0x00000000, // 1342 spells in 3.0.3
+ SUMMON_PROP_FLAG_UNK1 = 0x00000001, // 75 spells in 3.0.3, something unfriendly
+ SUMMON_PROP_FLAG_UNK2 = 0x00000002, // 616 spells in 3.0.3, something friendly
+ SUMMON_PROP_FLAG_UNK3 = 0x00000004, // 22 spells in 3.0.3, no idea...
+ SUMMON_PROP_FLAG_UNK4 = 0x00000008, // 49 spells in 3.0.3, some mounts
+ SUMMON_PROP_FLAG_UNK5 = 0x00000010, // 25 spells in 3.0.3, quest related?
+ SUMMON_PROP_FLAG_UNK6 = 0x00000020, // 0 spells in 3.3.5, unused
+ SUMMON_PROP_FLAG_UNK7 = 0x00000040, // 12 spells in 3.0.3, no idea
+ SUMMON_PROP_FLAG_UNK8 = 0x00000080, // 4 spells in 3.0.3, no idea
+ SUMMON_PROP_FLAG_UNK9 = 0x00000100, // 51 spells in 3.0.3, no idea, many quest related
+ SUMMON_PROP_FLAG_UNK10 = 0x00000200, // 51 spells in 3.0.3, something defensive
+ SUMMON_PROP_FLAG_UNK11 = 0x00000400, // 3 spells, requires something near?
+ SUMMON_PROP_FLAG_UNK12 = 0x00000800, // 30 spells in 3.0.3, no idea
+ SUMMON_PROP_FLAG_UNK13 = 0x00001000, // Lightwell, Jeeves, Gnomish Alarm-o-bot, Build vehicles(wintergrasp)
+ SUMMON_PROP_FLAG_UNK14 = 0x00002000, // Guides, player follows
+ SUMMON_PROP_FLAG_UNK15 = 0x00004000, // Force of Nature, Shadowfiend, Feral Spirit, Summon Water Elemental
+ SUMMON_PROP_FLAG_UNK16 = 0x00008000, // Light/Dark Bullet, Soul/Fiery Consumption, Twisted Visage, Twilight Whelp. Phase related?
};
#endif
diff --git a/src/server/game/DataStores/DBCStructure.h b/src/server/game/DataStores/DBCStructure.h
index fdc810aeeb8..70537311e05 100755
--- a/src/server/game/DataStores/DBCStructure.h
+++ b/src/server/game/DataStores/DBCStructure.h
@@ -1959,6 +1959,42 @@ struct WorldSafeLocsEntry
// 21 name flags, unused
};
+/*
+struct WorldStateSounds
+{
+ uint32 ID; // 0 Worldstate
+ uint32 unk; // 1
+ uint32 areaTable; // 2
+ uint32 WMOAreaTable; // 3
+ uint32 zoneIntroMusicTable; // 4
+ uint32 zoneIntroMusic; // 5
+ uint32 zoneMusic; // 6
+ uint32 soundAmbience; // 7
+ uint32 soundProviderPreferences; // 8
+};
+*/
+
+/*
+struct WorldStateUI
+{
+ uint32 ID; // 0
+ uint32 map_id; // 1 Can be -1 to show up everywhere.
+ uint32 zone; // 2 Can be zero for "everywhere".
+ uint32 phaseMask; // 3 Phase this WorldState is avaliable in
+ uint32 icon; // 4 The icon that is used in the interface.
+ char* textureFilename; // 5
+ char* text; // 6-21 The worldstate text
+ char* description; // 22-38 Text shown when hovering mouse on icon
+ uint32 worldstateID; // 39 This is the actual ID used
+ uint32 type; // 40 0 = unknown, 1 = unknown, 2 = not shown in ui, 3 = wintergrasp
+ uint32 unk1; // 41
+ uint32 unk2; // 43
+ uint32 unk3; // 44-58
+ uint32 unk4; // 59-61 Used for some progress bars.
+ uint32 unk7; // 62 Unused in 3.3.5a
+};
+*/
+
// GCC have alternative #pragma pack() syntax and old gcc version not support pack(pop), also any gcc version not support it at some platform
#if defined(__GNUC__)
#pragma pack()