KeliaSpiritward.lua 654 B

123456789101112131415161718192021222324252627
  1. --[[
  2. Script Name : SpawnScripts/qeynos_combined02/KeliaSpiritward.lua
  3. Script Author : Rylec
  4. Script Date : 2021.01.25 06:01:40
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. FaceTarget(NPC, Spawn)
  12. math.randomseed(os.time())
  13. voice = math.random(1,3)
  14. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_"..voice.."_1025.mp3", "", "", 0, 0, Spawn)
  15. PlayAnimation(NPC, 10745)
  16. Say(NPC, "This river is beautiful, is it not? I love watching the water flow through it.")
  17. end
  18. function respawn(NPC)
  19. spawn(NPC)
  20. end