OverseerTargon.lua 539 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/NorthFreeport/OverseerTargon.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.06.18 08:06:13
  5. Script Purpose :
  6. :
  7. --]]
  8. dofile("SpawnScripts/Generic/GenericEcologyVoiceOvers.lua")
  9. function spawn(NPC)
  10. SetPlayerProximityFunction(NPC, 6, "InRange", "LeaveRange")
  11. end
  12. function hailed(NPC, Spawn)
  13. FaceTarget(NPC,Spawn)
  14. GenericRaceCheckHail(NPC, Spawn, faction)
  15. end
  16. function InRange(NPC,Spawn)
  17. GenericRaceCheckCallout(NPC, Spawn, faction)
  18. end