OutriderBernd.lua 701 B

123456789101112131415161718192021222324252627
  1. --[[
  2. Script Name : SpawnScripts/ElddarGrove/OutriderBernd.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.05.08 04:05:33
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. if GetFactionAmount(Spawn,11) <0 then
  12. FaceTarget(NPC, Spawn)
  13. PlayFlavor(NPC, "", "", "shakefist", 0, 0, Spawn)
  14. else
  15. FaceTarget(NPC, Spawn)
  16. PlayFlavor(NPC, "voiceover/english/human_eco_good_1/ft/human/human_eco_good_1_hail_gm_d38d1fff.mp3", "Ah, what have we here? Glad to see you endured the journey here, adventurer.", "hello", 2806352129, 3453714070, Spawn, 0)
  17. end
  18. end
  19. function respawn(NPC)
  20. spawn(NPC)
  21. end