fix(Scripts/ZulAman): Correct boss DataType and hostage order (#25212)

Co-authored-by: sudlud <sudlud@users.noreply.github.com>
This commit is contained in:
Crow
2026-06-14 00:54:42 -05:00
committed by GitHub
parent 6c4c1e8869
commit afa7000b61
3 changed files with 8 additions and 8 deletions

View File

@@ -38,10 +38,10 @@ struct SHostageInfo
static SHostageInfo HostageInfo[] =
{
{23790, 186648, { -57.0f, 1343.0f, 40.77f, 3.2f } }, // bear
{23999, 187021, { 400.0f, 1414.0f, 74.36f, 3.3f } }, // eagle
{24001, 186672, { -35.0f, 1134.0f, 18.71f, 1.9f } }, // dragonhawk
{24024, 186667, { 413.0f, 1117.0f, 6.32f, 3.1f } } // lynx
{23999, 187021, { 400.0f, 1414.0f, 74.36f, 3.3f } }, // Harkor (Akil'zon)
{23790, 186648, { -57.0f, 1343.0f, 40.77f, 3.2f } }, // Tanzar (Nalorakk)
{24024, 186667, { -35.0f, 1134.0f, 18.71f, 1.9f } }, // Kraz (Jan'alai)
{24001, 186672, { 413.0f, 1117.0f, 6.32f, 3.1f } } // Ashli (Halazzi)
};
Position const HarrisonJonesLoc = {120.687f, 1674.0f, 42.0217f, 1.59044f};

View File

@@ -242,8 +242,8 @@ struct npc_forest_frog : public ScriptedAI
#define GOSSIP_HOSTAGE1 "I am glad to help you."
static uint32 HostageEntry[] = {23790, 23999, 24024, 24001};
static uint32 ChestEntry[] = {186648, 187021, 186667, 186672};
static uint32 HostageEntry[] = {23999, 23790, 24024, 24001};
static uint32 ChestEntry[] = {187021, 186648, 186667, 186672};
class npc_zulaman_hostage : public CreatureScript
{

View File

@@ -25,8 +25,8 @@
enum DataTypes
{
DATA_NALORAKK = 0,
DATA_AKILZON = 1,
DATA_AKILZON = 0,
DATA_NALORAKK = 1,
DATA_JANALAI = 2,
DATA_HALAZZI = 3,
DATA_HEXLORD = 4,