MissionaryGZule.lua 1.5 KB

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : SpawnScripts/Freeport/MissionaryGZule.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.07.15 06:07:47
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. FaceTarget(NPC, Spawn)
  12. conversation = CreateConversation()
  13. PlayFlavor(NPC, "voiceover/english/missionary_g_zule/fprt_north/qst_gzule.mp3", "", "", 1791825577, 3485372568, Spawn)
  14. AddConversationOption(conversation, "Is that why you are afraid to go in yourself, hmm?", "dlg01")
  15. AddConversationOption(conversation, "I think I can handle myself just fine, thanks.")
  16. StartConversation(conversation, NPC, Spawn, "You better watch your step if you choose to enter the Temple of War. I would suspect the greeting for a person like yourself would be a dagger in the back rather than a handshake.")
  17. end
  18. function dlg01(NPC, Spawn)
  19. FaceTarget(NPC, Spawn)
  20. conversation = CreateConversation()
  21. PlayFlavor(NPC, "voiceover/english/missionary_g_zule/fprt_north/qst_gzule002.mp3", "", "", 2865163916, 2862700718, Spawn)
  22. AddConversationOption(conversation, "For some reason I see you standing here for a while.")
  23. StartConversation(conversation, NPC, Spawn, "I'll have you know that I have done all the sacrificing I need to do, lucky for your worthless carcass. I only have to find a symbol of the old paladins to desecrate to fulfill my advancement.")
  24. end
  25. function respawn(NPC)
  26. end