diff options
author | Malcrom <malcromdev@gmail.com> | 2013-07-17 06:12:20 -0230 |
---|---|---|
committer | Malcrom <malcromdev@gmail.com> | 2013-07-17 06:12:20 -0230 |
commit | 8cec422c05c76e55eed61a64d164a9758444a5fe (patch) | |
tree | bc1b6d40d80072091e7ecd24e4949feaaa4855d1 /src | |
parent | 8462a09264c2abd821c0b5be589df0dbc7df5e6e (diff) |
DB/Gossip: Add some missing gossip.
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/World/go_scripts.cpp | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/src/server/scripts/World/go_scripts.cpp b/src/server/scripts/World/go_scripts.cpp index 1847e3390ef..779308954d0 100644 --- a/src/server/scripts/World/go_scripts.cpp +++ b/src/server/scripts/World/go_scripts.cpp @@ -18,9 +18,6 @@ /* 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 @@ -80,69 +77,6 @@ public: }; /*###### -## go_crystal_pylons (3x) -######*/ -class go_northern_crystal_pylon : public GameObjectScript -{ -public: - go_northern_crystal_pylon() : GameObjectScript("go_northern_crystal_pylon") { } - - bool OnGossipHello(Player* player, GameObject* go) OVERRIDE - { - if (go->GetGoType() == GAMEOBJECT_TYPE_QUESTGIVER) - { - player->PrepareQuestMenu(go->GetGUID()); - player->SendPreparedQuest(go->GetGUID()); - } - - if (player->GetQuestStatus(4285) == QUEST_STATUS_INCOMPLETE) - player->AreaExploredOrEventHappens(4285); - - return true; - } -}; - -class go_eastern_crystal_pylon : public GameObjectScript -{ -public: - go_eastern_crystal_pylon() : GameObjectScript("go_eastern_crystal_pylon") { } - - bool OnGossipHello(Player* player, GameObject* go) OVERRIDE - { - if (go->GetGoType() == GAMEOBJECT_TYPE_QUESTGIVER) - { - player->PrepareQuestMenu(go->GetGUID()); - player->SendPreparedQuest(go->GetGUID()); - } - - if (player->GetQuestStatus(4287) == QUEST_STATUS_INCOMPLETE) - player->AreaExploredOrEventHappens(4287); - - return true; - } -}; - -class go_western_crystal_pylon : public GameObjectScript -{ -public: - go_western_crystal_pylon() : GameObjectScript("go_western_crystal_pylon") { } - - bool OnGossipHello(Player* player, GameObject* go) OVERRIDE - { - if (go->GetGoType() == GAMEOBJECT_TYPE_QUESTGIVER) - { - player->PrepareQuestMenu(go->GetGUID()); - player->SendPreparedQuest(go->GetGUID()); - } - - if (player->GetQuestStatus(4288) == QUEST_STATUS_INCOMPLETE) - player->AreaExploredOrEventHappens(4288); - - return true; - } -}; - -/*###### ## go_barov_journal ######*/ @@ -1376,9 +1310,6 @@ public: void AddSC_go_scripts() { new go_cat_figurine; - new go_northern_crystal_pylon; - new go_eastern_crystal_pylon; - new go_western_crystal_pylon; new go_barov_journal; new go_field_repair_bot_74A; new go_gilded_brazier; |