OutlandSentryDunand.lua 835 B

1234567891011121314151617181920212223242526272829
  1. --[[
  2. Script Name : SpawnScripts/ThunderingSteppes/OutlandSentryDunand.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.06.18 01:06:36
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. FaceTarget(NPC, Spawn)
  12. end
  13. function respawn(NPC)
  14. spawn(NPC)
  15. end
  16. function death(NPC,Spawn)
  17. local choice = MakeRandomInt(1,2)
  18. if choice == 1 then
  19. PlayFlavor(NPC, "voiceover/english/optional5/human_steppes/ft/human/human_steppes_1_death_gm_85ef3300.mp3", "No! That was my friend!", "", 572896703, 552083718, Spawn, 0)
  20. elseif choice == 2 then
  21. PlayFlavor(NPC, "voiceover/english/optional5/human_steppes/ft/human/human_steppes_1_death_gm_f56b206a.mp3", "At least they died with their boots on.", "", 2785078984, 3057500781, Spawn, 0)
  22. end
  23. end