IssikDethyr.lua 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. --[[
  2. Script Name : SpawnScripts/ScaleYard/IssikDethyr.lua
  3. Script Purpose : Issik Dethyr
  4. Script Author : John Adams
  5. Script Date : 2008.10.01
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  7. --]]
  8. function spawn(NPC)
  9. SetMount(NPC, 6831)
  10. SetMountColor(NPC, 1, 1, 1, 255, 1, 1)
  11. end
  12. function respawn(NPC)
  13. spawn(NPC)
  14. end
  15. function hailed(NPC, Spawn)
  16. FaceTarget(NPC, Spawn)
  17. conversation = CreateConversation()
  18. if GetQuestStep(Spawn, 185) == 1 then
  19. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/issik_dethyr/fprt_hood06/issik001.mp3", "", "", 1583287184, 404701556, Spawn)
  20. AddConversationOption(conversation, "Malachi has organized his raiding party and awaits final orders to attack our enemies in the Commonlands.", "dlg_0_0")
  21. StartConversation(conversation, NPC, Spawn, "Speak or be killed. Quickly now, make your decision.")
  22. else
  23. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/issik_dethyr/fprt_hood06/quest_issik_away_civilian_b62b6605.mp3", "Away, civilian! The Militia has no time for lorungs like you!", "", 2421734461, 4002400859, Spawn)
  24. end
  25. end
  26. function dlg_0_0(NPC, Spawn)
  27. FaceTarget(NPC, Spawn)
  28. conversation = CreateConversation()
  29. SetStepComplete(Spawn, 185, 1)
  30. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/issik_dethyr/fprt_hood06/issik002.mp3", "", "", 2023483562, 2147836902, Spawn)
  31. AddConversationOption(conversation, "Fine, goodbye.")
  32. AddConversationOption(conversation, "Your insolence shall not be forgotten. We shall meet again.")
  33. AddConversationOption(conversation, "Malachi will not be happy about this!")
  34. StartConversation(conversation, NPC, Spawn, "Well, good for him. Too bad I've already sent out another raiding party and won't need his services for some time... possibly a long time. Hmm. You may have noticed I stopped speaking to you... That's your cue to move along. Go ahead, you can do it. One foot in front of the other.")
  35. end
  36. --[[ raw_conversations
  37. PlayFlavor(NPC, "voiceover/english/tutorial_revamp/issik_dethyr/fprt_hood06/quest_issik_away_civilian_b62b6605.mp3", "Away, civilian! The Militia has no time for lorungs like you!", "", 2421734461, 4002400859, Spawn)
  38. --]]