GuardNolia.lua 482 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : SpawnScripts/BeggarsCourt/GuardNolia.lua
  3. Script Author : Dorbin
  4. Script Date : 2023.11.27 04:11:20
  5. Script Purpose :
  6. :
  7. --]]
  8. dofile("SpawnScripts/Generic/GenericGuardVoiceOvers.lua")
  9. function spawn(NPC)
  10. end
  11. function respawn(NPC)
  12. spawn(NPC)
  13. end
  14. function hailed(NPC, Spawn)
  15. if GetFactionAmount(Spawn,12)<0 then
  16. else
  17. FaceTarget(NPC, Spawn)
  18. GenericGuardHail(NPC,Spawn)
  19. end
  20. end