SiahtraSlenloolian.lua 808 B

1234567891011121314151617181920212223242526
  1. --[[
  2. Script Name : SpawnScripts/PeatBog/SiahtraSlenloolian.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.05.18 07:05:10
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. FaceTarget(NPC, Spawn)
  12. local choice = MakeRandomInt(1,2)
  13. if choice == 1 then
  14. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_3_1033.mp3", "There appears to be increased troll activity in the Peat Bog. Curious.", "", 0, 0, Spawn, 0)
  15. elseif choice == 2 then
  16. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_2_1033.mp3", "My soil and water samples are producing some curious results. I wonder what could be causing this?", "", 0, 0, Spawn, 0)
  17. end
  18. end
  19. function respawn(NPC)
  20. spawn(NPC)
  21. end