SorilIsaran.lua 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : SpawnScripts/ThunderingSteppes/SorilIsaran.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.06.18 12:06:40
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. FaceTarget(NPC, Spawn)
  12. if not HasLanguage(Spawn,7)then
  13. local choice = MakeRandomInt(1,3)
  14. if choice == 1 then
  15. PlayFlavor(NPC, "voiceover/english/halfelf_steppes/ft/halfelf/halfelf_steppes_1_garbled_gm_c175ec10.mp3", "Shauhey alham yeena sowee", "", 2026462892, 3464042667, Spawn, 7)
  16. elseif choice == 2 then
  17. PlayFlavor(NPC, "voiceover/english/halfelf_steppes/ft/halfelf/halfelf_steppes_1_garbled_gm_8436f046.mp3", "Falada meirsyn kobalas nolvalen", "", 4090933674, 2398927273, Spawn, 7)
  18. elseif choice == 3 then
  19. PlayFlavor(NPC, "voiceover/english/halfelf_steppes/ft/halfelf/halfelf_steppes_1_garbled_gm_84555678.mp3", "Thayank dav sien flanahay", "", 3624139387, 34883535, Spawn, 7)
  20. else
  21. PlayFlavor(NPC, "", "I am going with Coy to help him on his mission. He has paid me well, and the chance for even greater wealth lies in the possession of the centaurs.", "", 0, 0, Spawn, 7)
  22. end
  23. end
  24. end
  25. function death(NPC,Spawn)
  26. if not HasLanguage(Spawn,7)then
  27. PlayFlavor(NPC, "voiceover/english/halfelf_steppes/ft/halfelf/halfelf_steppes_1_garbled_gm_feb1d2e4.mp3", "Pohow arged yoop dern todica, arrrrrg!", "", 918139634, 115287037, Spawn, 7)
  28. else
  29. PlayFlavor(NPC, "voiceover/english/halfelf_steppes/ft/halfelf/halfelf_steppes_1_death_gm_354f0220.mp3", "Death of kin will be avenged.", "", 379174005, 1811830590, Spawn, 7)
  30. end
  31. end
  32. function respawn(NPC)
  33. spawn(NPC)
  34. end