diff options
author | Rat <none@none> | 2010-11-05 19:38:43 +0100 |
---|---|---|
committer | Rat <none@none> | 2010-11-05 19:38:43 +0100 |
commit | be25e38144ba5d89e82f22829c3143d3f4f0bef7 (patch) | |
tree | 613da9b11a4cafdb02d42643780ea12226c1838b /src/server/game/Texts/CreatureTextMgr.cpp | |
parent | 7956bc8c44385663ae749f57bb3aa47ecd086065 (diff) |
Core/SmartAI: added SMART_ACTION_SIMPLE_TALK, param1: textID, uses the 'Targets' to say the text,
NOTE: textID is relative to the current target's entry OR if target is a player, text is used with source creature's entry
--HG--
branch : trunk
Diffstat (limited to 'src/server/game/Texts/CreatureTextMgr.cpp')
-rwxr-xr-x | src/server/game/Texts/CreatureTextMgr.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/server/game/Texts/CreatureTextMgr.cpp b/src/server/game/Texts/CreatureTextMgr.cpp index a23be060a49..1445e5bed32 100755 --- a/src/server/game/Texts/CreatureTextMgr.cpp +++ b/src/server/game/Texts/CreatureTextMgr.cpp @@ -108,7 +108,7 @@ void CreatureTextMgr::LoadCreatureTexts() sLog.outString(">> Loaded %u Creature Texts for %u Creatures.", TextCount, CreatureCount); } -uint32 CreatureTextMgr::SendChat(Creature* source, uint8 textGroup, uint64 whisperGuid, ChatType msgtype, Language language, TextRange range, uint32 sound, Team team, bool gmOnly) +uint32 CreatureTextMgr::SendChat(Creature* source, uint8 textGroup, uint64 whisperGuid, ChatType msgtype, Language language, TextRange range, uint32 sound, Team team, bool gmOnly, Player* srcPlr) { if (!source) return 0; @@ -186,9 +186,9 @@ uint32 CreatureTextMgr::SendChat(Creature* source, uint8 textGroup, uint64 whisp SendSound(source, finalSound, finalType, whisperGuid, range, team, gmOnly); if ((*iter).emote) - SendEmote(source, (*iter).emote); + SendEmote(srcPlr ? srcPlr->ToUnit() : source, (*iter).emote); - SendChatString(source, (*iter).text.c_str(), finalType, finalLang, whisperGuid, range, team, gmOnly); + SendChatString(srcPlr ? srcPlr->ToUnit() : source, (*iter).text.c_str(), finalType, finalLang, whisperGuid, range, team, gmOnly); if (isEqualChanced || (!isEqualChanced && totalChance == 100.0f)) SetRepeatId(source, textGroup, (*iter).id); @@ -203,8 +203,9 @@ void CreatureTextMgr::SendSound(Creature* source,uint32 sound, ChatType msgtype, data << uint32(sound); SendChatPacket(&data, source, msgtype, whisperGuid, range, team, gmOnly); } -void CreatureTextMgr::SendEmote(Creature* source, uint32 emote) +void CreatureTextMgr::SendEmote(Unit* source, uint32 emote) { + if (!source) return; source->HandleEmoteCommand(emote); } |