Shiningleaf.lua 468 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/QeynosHarbor/Shiningleaf.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.07.09 07:07:19
  5. Script Purpose :
  6. :
  7. --]]
  8. dofile("SpawnScripts/Generic/GenericGuardVoiceOvers.lua")
  9. function spawn(NPC)
  10. end
  11. function hailed(NPC, Spawn)
  12. if GetFactionAmount(Spawn,11) >0 then
  13. FaceTarget(NPC, Spawn)
  14. GenericGuardHail(NPC, Spawn)
  15. end
  16. end
  17. function respawn(NPC)
  18. spawn(NPC)
  19. end