GuardCoffrey.lua 501 B

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