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 | |
parent | 8462a09264c2abd821c0b5be589df0dbc7df5e6e (diff) |
DB/Gossip: Add some missing gossip.
-rw-r--r-- | sql/updates/world/2013_07_18_00_world_gossip.sql | 53 | ||||
-rw-r--r-- | src/server/scripts/World/go_scripts.cpp | 69 |
2 files changed, 53 insertions, 69 deletions
diff --git a/sql/updates/world/2013_07_18_00_world_gossip.sql b/sql/updates/world/2013_07_18_00_world_gossip.sql new file mode 100644 index 00000000000..e9cca811939 --- /dev/null +++ b/sql/updates/world/2013_07_18_00_world_gossip.sql @@ -0,0 +1,53 @@ +-- Captain Vanessa Beltis +UPDATE `creature_template` SET `gossip_menu_id`=1641 WHERE `entry`=8380; +-- Gossip Menu +DELETE FROM `gossip_menu` WHERE `entry` IN (1641); +INSERT INTO `gossip_menu` (`entry`, `text_id`) VALUES (1641,2293); + +-- Franclorn Forgewright 8888 +-- Gossip Menu +DELETE FROM `gossip_menu` WHERE `entry` IN (1664,1665,1666); +INSERT INTO `gossip_menu` (`entry`, `text_id`) VALUES +(1664,2316), (1665,2317), (1666,2318); +-- Gossip Options +DELETE FROM `gossip_menu_option` WHERE `menu_id` IN (1663,1664,1665); +INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`action_menu_id`) VALUES +(1663,0,0, 'Amazing! I''ve never spoken to a ghost. I wish to learn!',1,1,1664), +(1664,0,0, 'Continue please.',1,1,1665), +(1665,0,0, 'Fascinating. Please, tell me more.',1,1,1666); + +-- Ribbly Screwspigot +UPDATE `creature_template` SET `gossip_menu_id`=1970 WHERE `entry`=9543; +-- Gossip Menu +DELETE FROM `gossip_menu` WHERE `entry` IN (1970); +INSERT INTO `gossip_menu` (`entry`, `text_id`) VALUES (1970,2643); + +-- Arei "npc has two text, possible scripting required" +UPDATE `creature_template` SET `gossip_menu_id`=2063 WHERE `entry`=9598; +-- Gossip Menu +DELETE FROM `gossip_menu` WHERE `entry` IN (2063); +INSERT INTO `gossip_menu` (`entry`, `text_id`) VALUES (2063,2726), 2063,2809); + +-- Add SAI for Un'Goro Crystal Pylon Quests 4285, 4287, 4288 +UPDATE `gameobject_template` SET `AIName`= 'SmartGameObjectAI',`ScriptName`= '' WHERE `entry` IN (164955,164957,164956); +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (164955,164957,164956) AND `source_type`=1; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(164955, 1, 0, 0, 62, 0, 100, 0, 2177, 0, 0, 0, 15, 4285, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Northern Crystal Pylon - Gossip Option 0 - Complete quest 4285'), +(164957, 1, 0, 0, 62, 0, 100, 0, 2178, 0, 0, 0, 15, 4287, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Eastern Crystal Pylon - Gossip Option 0 - Complete quest 4287'), +(164956, 1, 0, 0, 62, 0, 100, 0, 2179, 0, 0, 0, 15, 4288, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Western Crystal Pylon - Gossip Option 0 - Complete quest 4288'); +-- Gossip Menu +DELETE FROM `gossip_menu` WHERE `entry` IN (2177,2178,2179,2180,2181,2182); +INSERT INTO `gossip_menu` (`entry`, `text_id`) VALUES +(2177,2810),(2177,2933),(2178,2810),(2178,2933),(2179,2810),(2179,2933),(2180,2811),(2181,2812),(2182,2813); +-- Gossip Options +DELETE FROM `gossip_menu_option` WHERE `menu_id` IN (2177,2178,2179); +INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`action_menu_id`) VALUES +(2177,0,0, 'I want to examine this pylon.',1,1,2181), +(2178,0,0, 'I want to examine this pylon.',1,1,2180), +(2179,0,0, 'I want to examine this pylon.',1,1,2182); +-- Gossip Options Conditions +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup` IN (2177,2178,2179); +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(15,2177,0,0,0,9,0,4285,0,0,0,'','Gossip Option requires quest not complete'), +(15,2178,0,0,0,9,0,4287,0,0,0,'','Gossip Option requires quest not complete'), +(15,2179,0,0,0,9,0,4288,0,0,0,'','Gossip Option requires quest not complete'); 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; |