diff options
author | Kudlaty <none@none> | 2009-08-17 05:05:49 +0200 |
---|---|---|
committer | Kudlaty <none@none> | 2009-08-17 05:05:49 +0200 |
commit | 39b4b704ec89d0696e59817de41cda111ff9db9e (patch) | |
tree | 8d13954977e08242e82f7f1985bc0d1568dd0a56 /src | |
parent | 445c8722fe3795b20b4cf2a5582635429c09fee3 (diff) |
Correct one gossip in npc_taxi and use for it Spell instead of function ActivateTaxiPathTo
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/bindings/scripts/scripts/world/npc_taxi.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/bindings/scripts/scripts/world/npc_taxi.cpp b/src/bindings/scripts/scripts/world/npc_taxi.cpp index 161b663fbb1..ce526e7e088 100644 --- a/src/bindings/scripts/scripts/world/npc_taxi.cpp +++ b/src/bindings/scripts/scripts/world/npc_taxi.cpp @@ -121,7 +121,7 @@ bool GossipHello_npc_taxi(Player* pPlayer, Creature* pCreature) if (!pPlayer->GetQuestRewardStatus(11229)) pPlayer->ADD_GOSSIP_ITEM(GOSSIP_ICON_CHAT, "I need to fly to the Windrunner Official business!", GOSSIP_SENDER_MAIN, GOSSIP_ACTION_INFO_DEF + 23); if (pPlayer->GetQuestStatus(11170) == QUEST_STATUS_INCOMPLETE) - pPlayer->ADD_GOSSIP_ITEM(GOSSIP_ICON_CHAT, "I need to commandeer a riding bat for special assignment for us.", GOSSIP_SENDER_MAIN, GOSSIP_ACTION_INFO_DEF + 24); + pPlayer->ADD_GOSSIP_ITEM(GOSSIP_ICON_CHAT, "<The riding bat for the special task is necessary to me.>", GOSSIP_SENDER_MAIN, GOSSIP_ACTION_INFO_DEF + 24); break; case 23704: // Dustwallow Marsh - Cassa Crimsonwing if (pPlayer->GetQuestStatus(11142) == QUEST_STATUS_INCOMPLETE) @@ -239,7 +239,8 @@ bool GossipSelect_npc_taxi(Player* pPlayer, Creature* pCreature, uint32 uiSender break; case GOSSIP_ACTION_INFO_DEF + 24: pPlayer->CLOSE_GOSSIP_MENU(); - pPlayer->ActivateTaxiPathTo(738); + //pPlayer->ActivateTaxiPathTo(738); + pPlayer->CastSpell(pPlayer, 43136, false); break; case GOSSIP_ACTION_INFO_DEF + 25: pPlayer->CLOSE_GOSSIP_MENU(); |