mirror of
https://github.com/araxiaonline/TrinityCore.git
synced 2026-06-18 06:00:10 -04:00
093b8160b3
'You've Really Done It This Time, Kul', both sides Remember that this quest has not proper db support yet (missing spawn & loot). Update Copyright note of go_scripts.cpp --HG-- branch : trunk
1060 lines
32 KiB
C++
1060 lines
32 KiB
C++
/* Copyright (C) 2006 - 2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/>>
|
|
* Copyright (C) 2006 - 20010 TrinityCore <http://www.trinitycore.org/>
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
/* ScriptData
|
|
SDName: GO_Scripts
|
|
SD%Complete: 100
|
|
SDComment: Quest support: 4285,4287,4288(crystal pylons), 4296, 6481, 10990, 10991, 10992, Field_Repair_Bot->Teaches spell 22704. Barov_journal->Teaches spell 26089,12843,12982, 2936. Soulwell
|
|
SDCategory: Game Objects
|
|
EndScriptData */
|
|
|
|
/* ContentData
|
|
go_cat_figurine (the "trap" version of GO, two different exist)
|
|
go_northern_crystal_pylon
|
|
go_eastern_crystal_pylon
|
|
go_western_crystal_pylon
|
|
go_barov_journal
|
|
go_ethereum_prison
|
|
go_ethereum_stasis
|
|
go_sacred_fire_of_life
|
|
go_shrine_of_the_birds
|
|
go_southfury_moonstone
|
|
go_field_repair_bot_74A
|
|
go_orb_of_command
|
|
go_resonite_cask
|
|
go_tablet_of_madness
|
|
go_tablet_of_the_seven
|
|
go_tele_to_dalaran_crystal
|
|
go_tele_to_violet_stand
|
|
go_rusty_cage
|
|
go_scourge_cage
|
|
go_jotunheim_cage
|
|
go_table_theka
|
|
go_soulwell
|
|
EndContentData */
|
|
|
|
#include "ScriptedPch.h"
|
|
|
|
/*######
|
|
## go_cat_figurine
|
|
######*/
|
|
|
|
enum eCatFigurine
|
|
{
|
|
SPELL_SUMMON_GHOST_SABER = 5968,
|
|
};
|
|
|
|
bool GOHello_go_cat_figurine(Player *pPlayer, GameObject *pGO)
|
|
{
|
|
pPlayer->CastSpell(pPlayer,SPELL_SUMMON_GHOST_SABER,true);
|
|
return false;
|
|
}
|
|
|
|
/*######
|
|
## go_crystal_pylons (3x)
|
|
######*/
|
|
|
|
bool GOHello_go_northern_crystal_pylon(Player *pPlayer, GameObject *pGO)
|
|
{
|
|
if (pGO->GetGoType() == GAMEOBJECT_TYPE_QUESTGIVER)
|
|
{
|
|
pPlayer->PrepareQuestMenu(pGO->GetGUID());
|
|
pPlayer->SendPreparedQuest(pGO->GetGUID());
|
|
}
|
|
|
|
if (pPlayer->GetQuestStatus(4285) == QUEST_STATUS_INCOMPLETE)
|
|
pPlayer->AreaExploredOrEventHappens(4285);
|
|
|
|
return true;
|
|
}
|
|
|
|
bool GOHello_go_eastern_crystal_pylon(Player *pPlayer, GameObject *pGO)
|
|
{
|
|
if (pGO->GetGoType() == GAMEOBJECT_TYPE_QUESTGIVER)
|
|
{
|
|
pPlayer->PrepareQuestMenu(pGO->GetGUID());
|
|
pPlayer->SendPreparedQuest(pGO->GetGUID());
|
|
}
|
|
|
|
if (pPlayer->GetQuestStatus(4287) == QUEST_STATUS_INCOMPLETE)
|
|
pPlayer->AreaExploredOrEventHappens(4287);
|
|
|
|
return true;
|
|
}
|
|
|
|
bool GOHello_go_western_crystal_pylon(Player *pPlayer, GameObject *pGO)
|
|
{
|
|
if (pGO->GetGoType() == GAMEOBJECT_TYPE_QUESTGIVER)
|
|
{
|
|
pPlayer->PrepareQuestMenu(pGO->GetGUID());
|
|
pPlayer->SendPreparedQuest(pGO->GetGUID());
|
|
}
|
|
|
|
if (pPlayer->GetQuestStatus(4288) == QUEST_STATUS_INCOMPLETE)
|
|
pPlayer->AreaExploredOrEventHappens(4288);
|
|
|
|
return true;
|
|
}
|
|
|
|
/*######
|
|
## go_barov_journal
|
|
######*/
|
|
|
|
bool GOHello_go_barov_journal(Player *pPlayer, GameObject *pGO)
|
|
{
|
|
if (pPlayer->HasSkill(SKILL_TAILORING) && pPlayer->GetBaseSkillValue(SKILL_TAILORING) >= 280 && !pPlayer->HasSpell(26086))
|
|
{
|
|
pPlayer->CastSpell(pPlayer,26095,false);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
/*######
|
|
## go_field_repair_bot_74A
|
|
######*/
|
|
|
|
bool GOHello_go_field_repair_bot_74A(Player *pPlayer, GameObject *pGO)
|
|
{
|
|
if (pPlayer->HasSkill(SKILL_ENGINERING) && pPlayer->GetBaseSkillValue(SKILL_ENGINERING) >= 300 && !pPlayer->HasSpell(22704))
|
|
{
|
|
pPlayer->CastSpell(pPlayer,22864,false);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
/*######
|
|
## go_gilded_brazier
|
|
######*/
|
|
|
|
enum eGildedBrazier
|
|
{
|
|
NPC_STILLBLADE = 17716,
|
|
};
|
|
|
|
bool GOHello_go_gilded_brazier(Player *pPlayer, GameObject *pGO)
|
|
{
|
|
if (pGO->GetGoType() == GAMEOBJECT_TYPE_GOOBER)
|
|
if (Creature* pCreature = pPlayer->SummonCreature(NPC_STILLBLADE, 8087.632, -7542.740, 151.568, 0.122, TEMPSUMMON_TIMED_DESPAWN_OUT_OF_COMBAT, 5000))
|
|
pCreature->AI()->AttackStart(pPlayer);
|
|
|
|
return true;
|
|
}
|
|
|
|
/*######
|
|
## go_orb_of_command
|
|
######*/
|
|
|
|
bool GOHello_go_orb_of_command(Player *pPlayer, GameObject *pGO)
|
|
{
|
|
if (pPlayer->GetQuestRewardStatus(7761))
|
|
pPlayer->CastSpell(pPlayer,23460,true);
|
|
|
|
return true;
|
|
}
|
|
|
|
/*######
|
|
## go_tablet_of_madness
|
|
######*/
|
|
|
|
bool GOHello_go_tablet_of_madness(Player *pPlayer, GameObject *pGO)
|
|
{
|
|
if (pPlayer->HasSkill(SKILL_ALCHEMY) && pPlayer->GetSkillValue(SKILL_ALCHEMY) >= 300 && !pPlayer->HasSpell(24266))
|
|
{
|
|
pPlayer->CastSpell(pPlayer,24267,false);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
/*######
|
|
## go_tablet_of_the_seven
|
|
######*/
|
|
|
|
//TODO: use gossip option ("Transcript the Tablet") instead, if Trinity adds support.
|
|
bool GOHello_go_tablet_of_the_seven(Player *pPlayer, GameObject *pGO)
|
|
{
|
|
if (pGO->GetGoType() != GAMEOBJECT_TYPE_QUESTGIVER)
|
|
return true;
|
|
|
|
if (pPlayer->GetQuestStatus(4296) == QUEST_STATUS_INCOMPLETE)
|
|
pPlayer->CastSpell(pPlayer,15065,false);
|
|
|
|
return true;
|
|
}
|
|
|
|
/*#####
|
|
## go_jump_a_tron
|
|
######*/
|
|
|
|
bool GOHello_go_jump_a_tron(Player *pPlayer, GameObject *pGO)
|
|
{
|
|
if (pPlayer->GetQuestStatus(10111) == QUEST_STATUS_INCOMPLETE)
|
|
pPlayer->CastSpell(pPlayer,33382,true);
|
|
|
|
return true;
|
|
}
|
|
|
|
/*######
|
|
## go_ethereum_prison
|
|
######*/
|
|
|
|
enum eEthereumPrison
|
|
{
|
|
SPELL_REP_LC = 39456,
|
|
SPELL_REP_SHAT = 39457,
|
|
SPELL_REP_CE = 39460,
|
|
SPELL_REP_CON = 39474,
|
|
SPELL_REP_KT = 39475,
|
|
SPELL_REP_SPOR = 39476
|
|
};
|
|
|
|
const uint32 NpcPrisonEntry[] =
|
|
{
|
|
22810, 22811, 22812, 22813, 22814, 22815, //good guys
|
|
20783, 20784, 20785, 20786, 20788, 20789, 20790 //bad guys
|
|
};
|
|
|
|
bool GOHello_go_ethereum_prison(Player *pPlayer, GameObject *pGO)
|
|
{
|
|
int Random = rand() % (sizeof(NpcPrisonEntry) / sizeof(uint32));
|
|
|
|
if (Creature* pCreature = pPlayer->SummonCreature(NpcPrisonEntry[Random],
|
|
pGO->GetPositionX(), pGO->GetPositionY(), pGO->GetPositionZ(), pGO->GetAngle(pPlayer),
|
|
TEMPSUMMON_TIMED_DESPAWN_OUT_OF_COMBAT, 30000))
|
|
{
|
|
if (!pCreature->IsHostileTo(pPlayer))
|
|
{
|
|
uint32 Spell = 0;
|
|
|
|
if (FactionTemplateEntry const* pFaction = pCreature->getFactionTemplateEntry())
|
|
{
|
|
switch(pFaction->faction)
|
|
{
|
|
case 1011: Spell = SPELL_REP_LC; break;
|
|
case 935: Spell = SPELL_REP_SHAT; break;
|
|
case 942: Spell = SPELL_REP_CE; break;
|
|
case 933: Spell = SPELL_REP_CON; break;
|
|
case 989: Spell = SPELL_REP_KT; break;
|
|
case 970: Spell = SPELL_REP_SPOR; break;
|
|
}
|
|
|
|
if (Spell)
|
|
pCreature->CastSpell(pPlayer, Spell, false);
|
|
else
|
|
error_log("TSCR: go_ethereum_prison summoned Creature (entry %u) but faction (%u) are not expected by script.", pCreature->GetEntry(), pCreature->getFaction());
|
|
}
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/*######
|
|
## go_ethereum_stasis
|
|
######*/
|
|
|
|
const uint32 NpcStasisEntry[] =
|
|
{
|
|
22825, 20888, 22827, 22826, 22828
|
|
};
|
|
|
|
bool GOHello_go_ethereum_stasis(Player *pPlayer, GameObject *pGO)
|
|
{
|
|
int Random = rand() % (sizeof(NpcStasisEntry) / sizeof(uint32));
|
|
|
|
pPlayer->SummonCreature(NpcStasisEntry[Random],
|
|
pGO->GetPositionX(), pGO->GetPositionY(), pGO->GetPositionZ(), pGO->GetAngle(pPlayer),
|
|
TEMPSUMMON_TIMED_DESPAWN_OUT_OF_COMBAT, 30000);
|
|
|
|
return false;
|
|
}
|
|
|
|
/*######
|
|
## go_resonite_cask
|
|
######*/
|
|
|
|
enum eResoniteCask
|
|
{
|
|
NPC_GOGGEROC = 11920
|
|
};
|
|
|
|
bool GOHello_go_resonite_cask(Player *pPlayer, GameObject *pGO)
|
|
{
|
|
if (pGO->GetGoType() == GAMEOBJECT_TYPE_GOOBER)
|
|
pGO->SummonCreature(NPC_GOGGEROC, 0.0f, 0.0f, 0.0f, 0.0f, TEMPSUMMON_TIMED_DESPAWN_OUT_OF_COMBAT, 300000);
|
|
|
|
return false;
|
|
}
|
|
|
|
/*######
|
|
## go_sacred_fire_of_life
|
|
######*/
|
|
|
|
#define NPC_ARIKARA 10882
|
|
|
|
bool GOHello_go_sacred_fire_of_life(Player *pPlayer, GameObject *pGO)
|
|
{
|
|
if (pGO->GetGoType() == GAMEOBJECT_TYPE_GOOBER)
|
|
pPlayer->SummonCreature(NPC_ARIKARA, -5008.338, -2118.894, 83.657, 0.874, TEMPSUMMON_TIMED_DESPAWN_OUT_OF_COMBAT, 30000);
|
|
|
|
return true;
|
|
}
|
|
|
|
/*######
|
|
## go_shrine_of_the_birds
|
|
######*/
|
|
|
|
enum eShrineOfTheBirds
|
|
{
|
|
NPC_HAWK_GUARD = 22992,
|
|
NPC_EAGLE_GUARD = 22993,
|
|
NPC_FALCON_GUARD = 22994,
|
|
GO_SHRINE_HAWK = 185551,
|
|
GO_SHRINE_EAGLE = 185547,
|
|
GO_SHRINE_FALCON = 185553
|
|
};
|
|
|
|
bool GOHello_go_shrine_of_the_birds(Player *pPlayer, GameObject *pGO)
|
|
{
|
|
uint32 BirdEntry = 0;
|
|
|
|
float fX, fY, fZ;
|
|
pGO->GetClosePoint(fX, fY, fZ, pGO->GetObjectSize(), INTERACTION_DISTANCE);
|
|
|
|
switch(pGO->GetEntry())
|
|
{
|
|
case GO_SHRINE_HAWK:
|
|
BirdEntry = NPC_HAWK_GUARD;
|
|
break;
|
|
case GO_SHRINE_EAGLE:
|
|
BirdEntry = NPC_EAGLE_GUARD;
|
|
break;
|
|
case GO_SHRINE_FALCON:
|
|
BirdEntry = NPC_FALCON_GUARD;
|
|
break;
|
|
}
|
|
|
|
if (BirdEntry)
|
|
pPlayer->SummonCreature(BirdEntry, fX, fY, fZ, pGO->GetOrientation(), TEMPSUMMON_TIMED_DESPAWN_OUT_OF_COMBAT, 60000);
|
|
|
|
return false;
|
|
}
|
|
|
|
/*######
|
|
## go_southfury_moonstone
|
|
######*/
|
|
|
|
enum eSouthfury
|
|
{
|
|
NPC_RIZZLE = 23002,
|
|
SPELL_BLACKJACK = 39865, //stuns player
|
|
SPELL_SUMMON_RIZZLE = 39866
|
|
|
|
};
|
|
|
|
bool GOHello_go_southfury_moonstone(Player *pPlayer, GameObject *pGO)
|
|
{
|
|
//implicitTarget=48 not implemented as of writing this code, and manual summon may be just ok for our purpose
|
|
//pPlayer->CastSpell(pPlayer,SPELL_SUMMON_RIZZLE,false);
|
|
|
|
if (Creature* pCreature = pPlayer->SummonCreature(NPC_RIZZLE, 0.0f, 0.0f, 0.0f, 0.0f, TEMPSUMMON_DEAD_DESPAWN, 0))
|
|
pCreature->CastSpell(pPlayer,SPELL_BLACKJACK,false);
|
|
|
|
return false;
|
|
}
|
|
|
|
/*######
|
|
## go_tele_to_dalaran_crystal
|
|
######*/
|
|
|
|
enum eDalaranCrystal
|
|
{
|
|
QUEST_LEARN_LEAVE_RETURN = 12790,
|
|
QUEST_TELE_CRYSTAL_FLAG = 12845
|
|
};
|
|
|
|
#define GO_TELE_TO_DALARAN_CRYSTAL_FAILED "This teleport crystal cannot be used until the teleport crystal in Dalaran has been used at least once."
|
|
|
|
bool GOHello_go_tele_to_dalaran_crystal(Player *pPlayer, GameObject *pGO)
|
|
{
|
|
if (pPlayer->GetQuestRewardStatus(QUEST_TELE_CRYSTAL_FLAG))
|
|
{
|
|
return false;
|
|
}
|
|
else
|
|
pPlayer->GetSession()->SendNotification(GO_TELE_TO_DALARAN_CRYSTAL_FAILED);
|
|
|
|
return true;
|
|
}
|
|
|
|
/*######
|
|
## go_tele_to_violet_stand
|
|
######*/
|
|
|
|
bool GOHello_go_tele_to_violet_stand(Player *pPlayer, GameObject *pGO)
|
|
{
|
|
if (pPlayer->GetQuestRewardStatus(QUEST_LEARN_LEAVE_RETURN) || pPlayer->GetQuestStatus(QUEST_LEARN_LEAVE_RETURN) == QUEST_STATUS_INCOMPLETE)
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
/*######
|
|
## go_fel_crystalforge
|
|
######*/
|
|
|
|
#define GOSSIP_FEL_CRYSTALFORGE_TEXT 31000
|
|
#define GOSSIP_FEL_CRYSTALFORGE_ITEM_TEXT_RETURN 31001
|
|
#define GOSSIP_FEL_CRYSTALFORGE_ITEM_1 "Purchase 1 Unstable Flask of the Beast for the cost of 10 Apexis Shards"
|
|
#define GOSSIP_FEL_CRYSTALFORGE_ITEM_5 "Purchase 5 Unstable Flask of the Beast for the cost of 50 Apexis Shards"
|
|
#define GOSSIP_FEL_CRYSTALFORGE_ITEM_RETURN "Use the fel crystalforge to make another purchase."
|
|
|
|
enum eFelCrystalforge
|
|
{
|
|
SPELL_CREATE_1_FLASK_OF_BEAST = 40964,
|
|
SPELL_CREATE_5_FLASK_OF_BEAST = 40965,
|
|
};
|
|
|
|
bool GOHello_go_fel_crystalforge(Player *pPlayer, GameObject *pGO)
|
|
{
|
|
if (pGO->GetGoType() == GAMEOBJECT_TYPE_QUESTGIVER) /* != GAMEOBJECT_TYPE_QUESTGIVER) */
|
|
pPlayer->PrepareQuestMenu(pGO->GetGUID()); /* return true*/
|
|
|
|
pPlayer->ADD_GOSSIP_ITEM(GOSSIP_ICON_CHAT, GOSSIP_FEL_CRYSTALFORGE_ITEM_1, GOSSIP_SENDER_MAIN, GOSSIP_ACTION_INFO_DEF);
|
|
pPlayer->ADD_GOSSIP_ITEM(GOSSIP_ICON_CHAT, GOSSIP_FEL_CRYSTALFORGE_ITEM_5, GOSSIP_SENDER_MAIN, GOSSIP_ACTION_INFO_DEF + 1);
|
|
|
|
pPlayer->SEND_GOSSIP_MENU(GOSSIP_FEL_CRYSTALFORGE_TEXT, pGO->GetGUID());
|
|
|
|
return true;
|
|
}
|
|
|
|
bool GOSelect_go_fel_crystalforge(Player *pPlayer, GameObject *pGO, uint32 uiSender, uint32 uiAction)
|
|
{
|
|
switch(uiAction)
|
|
{
|
|
case GOSSIP_ACTION_INFO_DEF:
|
|
pPlayer->CastSpell(pPlayer,SPELL_CREATE_1_FLASK_OF_BEAST,false);
|
|
pPlayer->ADD_GOSSIP_ITEM(GOSSIP_ICON_CHAT, GOSSIP_FEL_CRYSTALFORGE_ITEM_RETURN, GOSSIP_SENDER_MAIN, GOSSIP_ACTION_INFO_DEF+2);
|
|
pPlayer->SEND_GOSSIP_MENU(GOSSIP_FEL_CRYSTALFORGE_ITEM_TEXT_RETURN, pGO->GetGUID());
|
|
break;
|
|
case GOSSIP_ACTION_INFO_DEF + 1:
|
|
pPlayer->CastSpell(pPlayer,SPELL_CREATE_5_FLASK_OF_BEAST,false);
|
|
pPlayer->ADD_GOSSIP_ITEM(GOSSIP_ICON_CHAT, GOSSIP_FEL_CRYSTALFORGE_ITEM_RETURN, GOSSIP_SENDER_MAIN, GOSSIP_ACTION_INFO_DEF+2);
|
|
pPlayer->SEND_GOSSIP_MENU(GOSSIP_FEL_CRYSTALFORGE_ITEM_TEXT_RETURN, pGO->GetGUID());
|
|
break;
|
|
case GOSSIP_ACTION_INFO_DEF + 2:
|
|
pPlayer->ADD_GOSSIP_ITEM(GOSSIP_ICON_CHAT, GOSSIP_FEL_CRYSTALFORGE_ITEM_1, GOSSIP_SENDER_MAIN, GOSSIP_ACTION_INFO_DEF);
|
|
pPlayer->ADD_GOSSIP_ITEM(GOSSIP_ICON_CHAT, GOSSIP_FEL_CRYSTALFORGE_ITEM_5, GOSSIP_SENDER_MAIN, GOSSIP_ACTION_INFO_DEF + 1);
|
|
pPlayer->SEND_GOSSIP_MENU(GOSSIP_FEL_CRYSTALFORGE_TEXT, pGO->GetGUID());
|
|
break;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
/*######
|
|
## go_bashir_crystalforge
|
|
######*/
|
|
|
|
enum eBashirCrystalforge
|
|
{
|
|
SPELL_CREATE_1_FLASK_OF_SORCERER = 40968,
|
|
SPELL_CREATE_5_FLASK_OF_SORCERER = 40970,
|
|
};
|
|
|
|
bool GOHello_go_bashir_crystalforge(Player *pPlayer, GameObject *pGO)
|
|
{
|
|
pPlayer->CastSpell(pPlayer,SPELL_CREATE_1_FLASK_OF_SORCERER,false);
|
|
return false;
|
|
}
|
|
|
|
/*######
|
|
## matrix_punchograph
|
|
######*/
|
|
|
|
enum eMatrixPunchograph
|
|
{
|
|
ITEM_WHITE_PUNCH_CARD = 9279,
|
|
ITEM_YELLOW_PUNCH_CARD = 9280,
|
|
ITEM_BLUE_PUNCH_CARD = 9282,
|
|
ITEM_RED_PUNCH_CARD = 9281,
|
|
ITEM_PRISMATIC_PUNCH_CARD = 9316,
|
|
SPELL_YELLOW_PUNCH_CARD = 11512,
|
|
SPELL_BLUE_PUNCH_CARD = 11525,
|
|
SPELL_RED_PUNCH_CARD = 11528,
|
|
SPELL_PRISMATIC_PUNCH_CARD = 11545,
|
|
MATRIX_PUNCHOGRAPH_3005_A = 142345,
|
|
MATRIX_PUNCHOGRAPH_3005_B = 142475,
|
|
MATRIX_PUNCHOGRAPH_3005_C = 142476,
|
|
MATRIX_PUNCHOGRAPH_3005_D = 142696,
|
|
};
|
|
|
|
bool GOHello_go_matrix_punchograph(Player *pPlayer, GameObject *pGO)
|
|
{
|
|
switch(pGO->GetEntry())
|
|
{
|
|
case MATRIX_PUNCHOGRAPH_3005_A:
|
|
if (pPlayer->HasItemCount(ITEM_WHITE_PUNCH_CARD, 1))
|
|
{
|
|
pPlayer->DestroyItemCount(ITEM_WHITE_PUNCH_CARD, 1, true);
|
|
pPlayer->CastSpell(pPlayer,SPELL_YELLOW_PUNCH_CARD,true);
|
|
}
|
|
break;
|
|
case MATRIX_PUNCHOGRAPH_3005_B:
|
|
if (pPlayer->HasItemCount(ITEM_YELLOW_PUNCH_CARD, 1))
|
|
{
|
|
pPlayer->DestroyItemCount(ITEM_YELLOW_PUNCH_CARD, 1, true);
|
|
pPlayer->CastSpell(pPlayer,SPELL_BLUE_PUNCH_CARD,true);
|
|
}
|
|
break;
|
|
case MATRIX_PUNCHOGRAPH_3005_C:
|
|
if (pPlayer->HasItemCount(ITEM_BLUE_PUNCH_CARD, 1))
|
|
{
|
|
pPlayer->DestroyItemCount(ITEM_BLUE_PUNCH_CARD, 1, true);
|
|
pPlayer->CastSpell(pPlayer,SPELL_RED_PUNCH_CARD,true);
|
|
}
|
|
break;
|
|
case MATRIX_PUNCHOGRAPH_3005_D:
|
|
if (pPlayer->HasItemCount(ITEM_RED_PUNCH_CARD, 1))
|
|
{
|
|
pPlayer->DestroyItemCount(ITEM_RED_PUNCH_CARD, 1, true);
|
|
pPlayer->CastSpell(pPlayer, SPELL_PRISMATIC_PUNCH_CARD, true);
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/*######
|
|
## go_rusty_cage
|
|
######*/
|
|
|
|
enum eRustyCage
|
|
{
|
|
NPC_GOBLIN_PRISIONER = 29466
|
|
};
|
|
|
|
bool GOHello_go_rusty_cage(Player *pPlayer, GameObject *pGO)
|
|
{
|
|
if (Creature *pGoblinPrisoner = pGO->FindNearestCreature(NPC_GOBLIN_PRISIONER, 5.0f, true))
|
|
{
|
|
pGO->SetGoState(GO_STATE_ACTIVE);
|
|
pPlayer->KilledMonsterCredit(NPC_GOBLIN_PRISIONER, pGoblinPrisoner->GetGUID());
|
|
pGoblinPrisoner->DisappearAndDie();
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/*######
|
|
## go_scourge_cage
|
|
######*/
|
|
|
|
enum eScourgeCage
|
|
{
|
|
NPC_SCOURGE_PRISONER = 25610
|
|
};
|
|
|
|
bool GOHello_go_scourge_cage(Player *pPlayer, GameObject *pGO)
|
|
{
|
|
if (Creature *pNearestPrisoner = pGO->FindNearestCreature(NPC_SCOURGE_PRISONER, 5.0f, true))
|
|
{
|
|
pGO->SetGoState(GO_STATE_ACTIVE);
|
|
pPlayer->KilledMonsterCredit(NPC_SCOURGE_PRISONER, pNearestPrisoner->GetGUID());
|
|
pNearestPrisoner->DisappearAndDie();
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/*######
|
|
## go_arcane_prison
|
|
######*/
|
|
|
|
enum eArcanePrison
|
|
{
|
|
QUEST_PRISON_BREAK = 11587,
|
|
SPELL_ARCANE_PRISONER_KILL_CREDIT = 45456
|
|
};
|
|
|
|
bool GOHello_go_arcane_prison(Player *pPlayer, GameObject *pGO)
|
|
{
|
|
if (pPlayer->GetQuestStatus(QUEST_PRISON_BREAK) == QUEST_STATUS_INCOMPLETE)
|
|
{
|
|
pGO->SummonCreature(25318, 3485.089844, 6115.7422188, 70.966812, 0, TEMPSUMMON_TIMED_DESPAWN, 60000);
|
|
pPlayer->CastSpell(pPlayer, SPELL_ARCANE_PRISONER_KILL_CREDIT, true);
|
|
return true;
|
|
} else
|
|
return false;
|
|
}
|
|
|
|
/*######
|
|
## go_blood_filled_orb
|
|
######*/
|
|
|
|
#define NPC_ZELEMAR 17830
|
|
|
|
bool GOHello_go_blood_filled_orb(Player *pPlayer, GameObject *pGO)
|
|
{
|
|
if (pGO->GetGoType() == GAMEOBJECT_TYPE_GOOBER)
|
|
pPlayer->SummonCreature(NPC_ZELEMAR, -369.746, 166.759, -21.50, 5.235, TEMPSUMMON_TIMED_DESPAWN_OUT_OF_COMBAT, 30000);
|
|
|
|
return true;
|
|
}
|
|
|
|
/*######
|
|
## go_jotunheim_cage
|
|
######*/
|
|
|
|
enum eJotunheimCage
|
|
{
|
|
NPC_EBON_BLADE_PRISONER_HUMAN = 30186,
|
|
NPC_EBON_BLADE_PRISONER_NE = 30194,
|
|
NPC_EBON_BLADE_PRISONER_TROLL = 30196,
|
|
NPC_EBON_BLADE_PRISONER_ORC = 30195,
|
|
|
|
SPELL_SUMMON_BLADE_KNIGHT_H = 56207,
|
|
SPELL_SUMMON_BLADE_KNIGHT_NE = 56209,
|
|
SPELL_SUMMON_BLADE_KNIGHT_ORC = 56212,
|
|
SPELL_SUMMON_BLADE_KNIGHT_TROLL = 56214
|
|
};
|
|
|
|
bool GOHello_go_jotunheim_cage(Player* pPlayer, GameObject* pGO)
|
|
{
|
|
Creature* pPrisoner;
|
|
pPrisoner = NULL;
|
|
|
|
if ((pPrisoner = pGO->FindNearestCreature(NPC_EBON_BLADE_PRISONER_HUMAN, 5.0f, true)) ||
|
|
(pPrisoner = pGO->FindNearestCreature(NPC_EBON_BLADE_PRISONER_TROLL, 5.0f, true)) ||
|
|
(pPrisoner = pGO->FindNearestCreature(NPC_EBON_BLADE_PRISONER_ORC, 5.0f, true)) ||
|
|
(pPrisoner = pGO->FindNearestCreature(NPC_EBON_BLADE_PRISONER_NE, 5.0f, true)))
|
|
{
|
|
if (pPrisoner && pPrisoner->isAlive())
|
|
{
|
|
pPrisoner->DisappearAndDie();
|
|
pPlayer->KilledMonsterCredit(NPC_EBON_BLADE_PRISONER_HUMAN, 0);
|
|
switch(pPrisoner->GetEntry())
|
|
{
|
|
case NPC_EBON_BLADE_PRISONER_HUMAN:
|
|
pPlayer->CastSpell(pPlayer,SPELL_SUMMON_BLADE_KNIGHT_H,true);
|
|
break;
|
|
case NPC_EBON_BLADE_PRISONER_NE:
|
|
pPlayer->CastSpell(pPlayer,SPELL_SUMMON_BLADE_KNIGHT_NE,true);
|
|
break;
|
|
case NPC_EBON_BLADE_PRISONER_TROLL:
|
|
pPlayer->CastSpell(pPlayer,SPELL_SUMMON_BLADE_KNIGHT_TROLL,true);
|
|
break;
|
|
case NPC_EBON_BLADE_PRISONER_ORC:
|
|
pPlayer->CastSpell(pPlayer,SPELL_SUMMON_BLADE_KNIGHT_ORC,true);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
enum eTableTheka
|
|
{
|
|
GOSSIP_TABLE_THEKA = 1653,
|
|
|
|
QUEST_SPIDER_GOLD = 2936
|
|
};
|
|
|
|
bool GOHello_go_table_theka(Player* pPlayer, GameObject* pGO)
|
|
{
|
|
if (pPlayer->GetQuestStatus(QUEST_SPIDER_GOLD) == QUEST_STATUS_INCOMPLETE)
|
|
pPlayer->AreaExploredOrEventHappens(QUEST_SPIDER_GOLD);
|
|
|
|
pPlayer->SEND_GOSSIP_MENU(GOSSIP_TABLE_THEKA, pGO->GetGUID());
|
|
|
|
return true;
|
|
}
|
|
|
|
/*######
|
|
## go_inconspicuous_landmark
|
|
######*/
|
|
|
|
enum eInconspicuousLandmark
|
|
{
|
|
SPELL_SUMMON_PIRATES_TREASURE_AND_TRIGGER_MOB = 11462,
|
|
ITEM_CUERGOS_KEY = 9275,
|
|
};
|
|
|
|
bool GOHello_go_inconspicuous_landmark(Player *pPlayer, GameObject* pGO)
|
|
{
|
|
if (pPlayer->HasItemCount(ITEM_CUERGOS_KEY,1))
|
|
return false;
|
|
|
|
pPlayer->CastSpell(pPlayer,SPELL_SUMMON_PIRATES_TREASURE_AND_TRIGGER_MOB,true);
|
|
|
|
return true;
|
|
}
|
|
|
|
/*######
|
|
## go_soulwell
|
|
######*/
|
|
|
|
bool GOHello_go_soulwell(Player *pPlayer, GameObject* pGO)
|
|
{
|
|
Unit *caster = pGO->GetOwner(false);
|
|
if (!caster || caster->GetTypeId() != TYPEID_PLAYER)
|
|
return true;
|
|
|
|
if (!pPlayer->IsInSameRaidWith(static_cast<Player *>(caster)))
|
|
return true;
|
|
|
|
// Repeating this at every use is ugly and inefficient. But as long as we don't have proper
|
|
// GO scripting with at least On Create and On Update events, the other options are no less
|
|
// ugly and hacky.
|
|
uint32 newSpell = 0;
|
|
if (pGO->GetEntry() == 193169) // Soulwell for rank 2
|
|
{
|
|
if (caster->HasAura(18693)) // Improved Healthstone rank 2
|
|
newSpell = 58898;
|
|
else if (caster->HasAura(18692)) // Improved Healthstone rank 1
|
|
newSpell = 58896;
|
|
else newSpell = 58890;
|
|
}
|
|
else if (pGO->GetEntry() == 181621) // Soulwell for rank 1
|
|
{
|
|
if (caster->HasAura(18693)) // Improved Healthstone rank 2
|
|
newSpell = 34150;
|
|
else if (caster->HasAura(18692)) // Improved Healthstone rank 1
|
|
newSpell = 34149;
|
|
else newSpell = 34130;
|
|
}
|
|
|
|
pGO->AddUse();
|
|
pPlayer->CastSpell(pPlayer, newSpell, true);
|
|
return true;
|
|
}
|
|
|
|
/*######
|
|
## Quest 11255: Prisoners of Wyrmskull
|
|
## go_dragonflayer_cage
|
|
######*/
|
|
|
|
enum ePrisonersOfWyrmskull
|
|
{
|
|
QUEST_PRISONERS_OF_WYRMSKULL = 11255,
|
|
NPC_PRISONER_PRIEST = 24086,
|
|
NPC_PRISONER_MAGE = 24088,
|
|
NPC_PRISONER_WARRIOR = 24089,
|
|
NPC_PRISONER_PALADIN = 24090
|
|
};
|
|
|
|
bool GOHello_go_dragonflayer_cage(Player *pPlayer, GameObject *pGO)
|
|
{
|
|
Creature *pPrisoner = NULL;
|
|
Quest const* qInfo = objmgr.GetQuestTemplate(QUEST_PRISONERS_OF_WYRMSKULL);
|
|
|
|
if (pPlayer->GetQuestStatus(QUEST_PRISONERS_OF_WYRMSKULL) == QUEST_STATUS_INCOMPLETE &&
|
|
((pPrisoner = pGO->FindNearestCreature(NPC_PRISONER_PRIEST,2.0f)) ||
|
|
(pPrisoner = pGO->FindNearestCreature(NPC_PRISONER_MAGE,2.0f)) ||
|
|
(pPrisoner = pGO->FindNearestCreature(NPC_PRISONER_WARRIOR,2.0f)) ||
|
|
(pPrisoner = pGO->FindNearestCreature(NPC_PRISONER_PALADIN,2.0f))) && pPrisoner->isAlive())
|
|
{
|
|
//TODO: prisoner should help player for a short period of time
|
|
pPlayer->KilledMonsterCredit(qInfo->ReqCreatureOrGOId[0],0);
|
|
pPrisoner->DisappearAndDie();
|
|
}
|
|
return true;
|
|
}
|
|
|
|
/*######
|
|
## Quest 11560: Oh Noes, the Tadpoles!
|
|
## go_tadpole_cage
|
|
######*/
|
|
|
|
enum eTadpoles
|
|
{
|
|
QUEST_OH_NOES_THE_TADPOLES = 11560,
|
|
NPC_WINTERFIN_TADPOLE = 25201
|
|
};
|
|
|
|
bool GOHello_go_tadpole_cage(Player *pPlayer, GameObject *pGO)
|
|
{
|
|
Creature *pTadpole;
|
|
if (pPlayer->GetQuestStatus(QUEST_OH_NOES_THE_TADPOLES) == QUEST_STATUS_INCOMPLETE &&
|
|
(pTadpole = pGO->FindNearestCreature(NPC_WINTERFIN_TADPOLE,1.0f)))
|
|
{
|
|
pGO->UseDoorOrButton();
|
|
pTadpole->DisappearAndDie();
|
|
pPlayer->KilledMonsterCredit(NPC_WINTERFIN_TADPOLE,0);
|
|
//FIX: Summon minion tadpole
|
|
}
|
|
return true;
|
|
}
|
|
|
|
/*######
|
|
## Quest 14096 & 14142: You've Really Done It This Time, Kul
|
|
## go_black_cage
|
|
######*/
|
|
|
|
enum eReallyDoneItThisTime
|
|
{
|
|
QUEST_ALLIANCE_YOU_VE_REALLY_DONE_IT_THIS_TIME_KUL = 14096,
|
|
QUEST_HORDE_YOU_VE_REALLY_DONE_IT_THIS_TIME_KUL = 14142,
|
|
NPC_CAPTIVE_ASPIRANT = 34716,
|
|
NPC_KUL = 34956
|
|
};
|
|
|
|
bool GOHello_go_black_cage(Player *pPlayer, GameObject *pGO)
|
|
{
|
|
Creature *pPrisoner;
|
|
if (((pPlayer->GetTeamId() == TEAM_ALLIANCE && pPlayer->GetQuestStatus(QUEST_ALLIANCE_YOU_VE_REALLY_DONE_IT_THIS_TIME_KUL) == QUEST_STATUS_INCOMPLETE) ||
|
|
(pPlayer->GetTeamId() == TEAM_HORDE && pPlayer->GetQuestStatus(QUEST_HORDE_YOU_VE_REALLY_DONE_IT_THIS_TIME_KUL) == QUEST_STATUS_INCOMPLETE)) &&
|
|
((pPrisoner = pGO->FindNearestCreature(NPC_CAPTIVE_ASPIRANT,1.0f)) || (pPrisoner = pGO->FindNearestCreature(NPC_KUL,1.0f))))
|
|
{
|
|
pGO->UseDoorOrButton();
|
|
pPrisoner->DisappearAndDie();
|
|
pPlayer->KilledMonsterCredit(pPrisoner->GetEntry(),0);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
/*######
|
|
## go_amberpine_outhouse
|
|
######*/
|
|
|
|
#define GOSSIP_USE_OUTHOUSE "Use the outhouse."
|
|
#define GO_ANDERHOLS_SLIDER_CIDER_NOT_FOUND "Quest item Anderhol's Slider Cider not found."
|
|
|
|
enum eAmberpineOuthouse
|
|
{
|
|
ITEM_ANDERHOLS_SLIDER_CIDER = 37247,
|
|
NPC_OUTHOUSE_BUNNY = 27326,
|
|
QUEST_DOING_YOUR_DUTY = 12227,
|
|
SPELL_INDISPOSED = 53017,
|
|
SPELL_INDISPOSED_III = 48341,
|
|
SPELL_CREATE_AMBERSEEDS = 48330,
|
|
GOSSIP_OUTHOUSE_INUSE = 12775,
|
|
GOSSIP_OUTHOUSE_VACANT = 12779
|
|
};
|
|
|
|
bool GOHello_go_amberpine_outhouse(Player *pPlayer, GameObject *pGO)
|
|
{
|
|
if (pPlayer->GetQuestStatus(QUEST_DOING_YOUR_DUTY) == QUEST_STATUS_INCOMPLETE ||
|
|
(pPlayer->GetQuestStatus(QUEST_DOING_YOUR_DUTY) == QUEST_STATUS_COMPLETE))
|
|
{
|
|
pPlayer->ADD_GOSSIP_ITEM(GOSSIP_ICON_CHAT, GOSSIP_USE_OUTHOUSE, GOSSIP_SENDER_MAIN, GOSSIP_ACTION_INFO_DEF + 1);
|
|
pPlayer->SEND_GOSSIP_MENU(GOSSIP_OUTHOUSE_VACANT, pGO->GetGUID());
|
|
return true;
|
|
}
|
|
else
|
|
pPlayer->SEND_GOSSIP_MENU(GOSSIP_OUTHOUSE_INUSE, pGO->GetGUID());
|
|
return true;
|
|
}
|
|
|
|
bool GOSelect_go_amberpine_outhouse(Player *pPlayer, GameObject *pGO, uint32 uiSender, uint32 uiAction)
|
|
{
|
|
if (uiAction == GOSSIP_ACTION_INFO_DEF +1)
|
|
{
|
|
pPlayer->CLOSE_GOSSIP_MENU();
|
|
Creature* pTarget = GetClosestCreatureWithEntry(pPlayer, NPC_OUTHOUSE_BUNNY, 3.0f);
|
|
if (pTarget)
|
|
{
|
|
pTarget->AI()->SetData(1,pPlayer->getGender());
|
|
pGO->CastSpell(pTarget, SPELL_INDISPOSED_III);
|
|
}
|
|
pGO->CastSpell(pPlayer, SPELL_INDISPOSED);
|
|
if (pPlayer->HasItemCount(ITEM_ANDERHOLS_SLIDER_CIDER,1))
|
|
pGO->CastSpell(pPlayer, SPELL_CREATE_AMBERSEEDS);
|
|
return true;
|
|
}
|
|
else
|
|
pPlayer->CLOSE_GOSSIP_MENU();
|
|
pPlayer->GetSession()->SendNotification(GO_ANDERHOLS_SLIDER_CIDER_NOT_FOUND);
|
|
return false;
|
|
}
|
|
|
|
void AddSC_go_scripts()
|
|
{
|
|
Script *newscript;
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_cat_figurine";
|
|
newscript->pGOHello = &GOHello_go_cat_figurine;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_northern_crystal_pylon";
|
|
newscript->pGOHello = &GOHello_go_northern_crystal_pylon;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_eastern_crystal_pylon";
|
|
newscript->pGOHello = &GOHello_go_eastern_crystal_pylon;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_western_crystal_pylon";
|
|
newscript->pGOHello = &GOHello_go_western_crystal_pylon;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_barov_journal";
|
|
newscript->pGOHello = &GOHello_go_barov_journal;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_field_repair_bot_74A";
|
|
newscript->pGOHello = &GOHello_go_field_repair_bot_74A;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_gilded_brazier";
|
|
newscript->pGOHello = &GOHello_go_gilded_brazier;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_orb_of_command";
|
|
newscript->pGOHello = &GOHello_go_orb_of_command;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_shrine_of_the_birds";
|
|
newscript->pGOHello = &GOHello_go_shrine_of_the_birds;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_southfury_moonstone";
|
|
newscript->pGOHello = &GOHello_go_southfury_moonstone;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_tablet_of_madness";
|
|
newscript->pGOHello = &GOHello_go_tablet_of_madness;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_tablet_of_the_seven";
|
|
newscript->pGOHello = &GOHello_go_tablet_of_the_seven;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_jump_a_tron";
|
|
newscript->pGOHello = &GOHello_go_jump_a_tron;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_ethereum_prison";
|
|
newscript->pGOHello = &GOHello_go_ethereum_prison;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_ethereum_stasis";
|
|
newscript->pGOHello = &GOHello_go_ethereum_stasis;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_resonite_cask";
|
|
newscript->pGOHello = &GOHello_go_resonite_cask;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_sacred_fire_of_life";
|
|
newscript->pGOHello = &GOHello_go_sacred_fire_of_life;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_tele_to_dalaran_crystal";
|
|
newscript->pGOHello = &GOHello_go_tele_to_dalaran_crystal;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_tele_to_violet_stand";
|
|
newscript->pGOHello = &GOHello_go_tele_to_violet_stand;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_fel_crystalforge";
|
|
newscript->pGOHello = &GOHello_go_fel_crystalforge;
|
|
newscript->pGOSelect = &GOSelect_go_fel_crystalforge;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_bashir_crystalforge";
|
|
newscript->pGOHello = &GOHello_go_bashir_crystalforge;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_matrix_punchograph";
|
|
newscript->pGOHello = &GOHello_go_matrix_punchograph;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_rusty_cage";
|
|
newscript->pGOHello = &GOHello_go_rusty_cage;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_scourge_cage";
|
|
newscript->pGOHello = &GOHello_go_scourge_cage;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_arcane_prison";
|
|
newscript->pGOHello = &GOHello_go_arcane_prison;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_blood_filled_orb";
|
|
newscript->pGOHello = &GOHello_go_blood_filled_orb;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_jotunheim_cage";
|
|
newscript->pGOHello = &GOHello_go_jotunheim_cage;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_table_theka";
|
|
newscript->pGOHello = &GOHello_go_table_theka;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_inconspicuous_landmark";
|
|
newscript->pGOHello = &GOHello_go_inconspicuous_landmark;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_soulwell";
|
|
newscript->pGOHello = &GOHello_go_soulwell;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_tadpole_cage";
|
|
newscript->pGOHello = &GOHello_go_tadpole_cage;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_dragonflayer_cage";
|
|
newscript->pGOHello = &GOHello_go_dragonflayer_cage;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_black_cage";
|
|
newscript->pGOHello = &GOHello_go_black_cage;
|
|
newscript->RegisterSelf();
|
|
|
|
newscript = new Script;
|
|
newscript->Name = "go_amberpine_outhouse";
|
|
newscript->pGOHello = &GOHello_go_amberpine_outhouse;
|
|
newscript->pGOSelect = &GOSelect_go_amberpine_outhouse;
|
|
newscript->RegisterSelf();
|
|
}
|