diff options
-rw-r--r-- | sql/updates/world/3.3.5/2020_05_20_03_world.sql | 4 | ||||
-rw-r--r-- | src/server/scripts/World/go_scripts.cpp | 29 |
2 files changed, 4 insertions, 29 deletions
diff --git a/sql/updates/world/3.3.5/2020_05_20_03_world.sql b/sql/updates/world/3.3.5/2020_05_20_03_world.sql new file mode 100644 index 00000000000..445f41974a9 --- /dev/null +++ b/sql/updates/world/3.3.5/2020_05_20_03_world.sql @@ -0,0 +1,4 @@ +-- +DELETE FROM `event_scripts` WHERE `id`=12275; +INSERT INTO `event_scripts` (`id`,`delay`,`command`,`datalong`,`datalong2`,`dataint`,`x`,`y`,`z`,`o`) VALUES +(12275,0,15,33382,3,0,0,0,0,0); diff --git a/src/server/scripts/World/go_scripts.cpp b/src/server/scripts/World/go_scripts.cpp index a50a56a74a2..fe56f39d131 100644 --- a/src/server/scripts/World/go_scripts.cpp +++ b/src/server/scripts/World/go_scripts.cpp @@ -154,34 +154,6 @@ public: } }; -/*##### -## go_jump_a_tron -######*/ - -class go_jump_a_tron : public GameObjectScript -{ -public: - go_jump_a_tron() : GameObjectScript("go_jump_a_tron") { } - - struct go_jump_a_tronAI : public GameObjectAI - { - go_jump_a_tronAI(GameObject* go) : GameObjectAI(go) { } - - bool GossipHello(Player* player) override - { - if (player->GetQuestStatus(10111) == QUEST_STATUS_INCOMPLETE) - player->CastSpell(player, 33382, true); - - return true; - } - }; - - GameObjectAI* GetAI(GameObject* go) const override - { - return new go_jump_a_tronAI(go); - } -}; - /*###### ## go_ethereum_prison ######*/ @@ -1809,7 +1781,6 @@ void AddSC_go_scripts() new go_southfury_moonstone(); new go_tablet_of_madness(); new go_tablet_of_the_seven(); - new go_jump_a_tron(); new go_ethereum_prison(); new go_ethereum_stasis(); new go_resonite_cask(); |