MikkiDenune.lua 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. --[[
  2. Script Name : SpawnScripts/Freeport/MikkiDenune.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.08.30 06:08:51
  5. Script Purpose :
  6. :
  7. --]]
  8. local TheHiddenNewHalasian = 578
  9. function spawn(NPC)
  10. end
  11. function hailed(NPC, Spawn)
  12. FaceTarget(NPC, Spawn)
  13. if GetQuestStep(Spawn, TheHiddenNewHalasian) == 1 then
  14. conversation = CreateConversation()
  15. PlayFlavor(NPC, "mikki_denune/freeport_combined/quest/racial/barbarian/mikki_denune_001.mp3", "", "hello", 1266503208, 1855564642, Spawn)
  16. AddConversationOption(conversation, "Actually, I was wondering if you could give me some religious advice.", "dlg1")
  17. StartConversation(conversation, NPC, Spawn, "Greetings, my fellow barbarian! Come to join in a brawl or two?")
  18. else
  19. PlayFlavor(NPC, "", "Join in the fights and bring glory to the Ancient Sister, Sullon Zek, Goddes of Rage!", "", 0, 0, Spawn)
  20. end
  21. end
  22. function dlg1(NPC, Spawn)
  23. FaceTarget(NPC, Spawn)
  24. conversation = CreateConversation()
  25. PlayFlavor(NPC, "mikki_denune/freeport_combined/quest/racial/barbarian/mikki_denune_002.mp3", "", "", 2853940916, 2151822106, Spawn)
  26. AddConversationOption(conversation, "I guess it's a good thing you aren't in New Halas then?", "dlg2")
  27. StartConversation(conversation, NPC, Spawn, "One and the same! I plant my axe in flesh, break bones and spill blood all in glory of The Ancient Sister, Sullon Zek, Goddess of Rage!")
  28. end
  29. function dlg2(NPC, Spawn)
  30. FaceTarget(NPC, Spawn)
  31. SetStepComplete(Spawn, TheHiddenNewHalasian, 1)
  32. conversation = CreateConversation()
  33. PlayFlavor(NPC, "mikki_denune/freeport_combined/quest/racial/barbarian/mikki_denune_003.mp3", "", "", 1465365118, 1774107216, Spawn)
  34. AddConversationOption(conversation, "I'm glad to hear it, Mikki.")
  35. StartConversation(conversation, NPC, Spawn, "You're a sharp blade, "..GetName(Spawn)..". I did visit there, in fact, I had thought about moving there, but once I saw it, I knew my place was here in Freeport.")
  36. end
  37. function respawn(NPC)
  38. end