CoyBaomar.lua 828 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : SpawnScripts/ThunderingSteppes/CoyBaomar.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.06.18 12:06:39
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. FaceTarget(NPC, Spawn)
  12. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_2_1034.mp3", "I have come to the Steppes in search of blood. My brother was killed on a supply run to Thundermist Village. The centaurs of this land will pay for their villainy!", "", 0, 0, Spawn, 0)
  13. end
  14. function death(NPC,Spawn)
  15. 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)
  16. end
  17. function respawn(NPC)
  18. spawn(NPC)
  19. end