SisterKateyDalwynn.lua 835 B

1234567891011121314151617181920212223242526
  1. --[[
  2. Script Name : SpawnScripts/FrostfangSea/SisterKateyDalwynn.lua
  3. Script Purpose : chat with Sister Katey Dalwynn
  4. Script Author : theFoof
  5. Script Date : 2013.9.16
  6. Script Notes :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function respawn(NPC)
  11. spawn(NPC)
  12. end
  13. function hailed(NPC, Spawn)
  14. local choice = math.random(1,3)
  15. if choice == 1 then
  16. PlayFlavor(NPC, "", "Varig Ro's handiwork is amazin! He outdid himself with this statue of the Loving Huntress.", "hello", 0, 0, Spawn)
  17. elseif choice == 2 then
  18. PlayFlavor(NPC, "", "We must continue to hold charity, truth, honor and valor within our lives, in her memory.", "hello", 0, 0, Spawn)
  19. elseif choice == 3 then
  20. PlayFlavor(NPC, "", "In the name or Erollisi we must not give up on love, compassion, devotion, or sacrifice.", "hello", 0, 0, Spawn)
  21. end
  22. end