MordinRageblade.lua 578 B

1234567891011121314151617181920212223242526
  1. --[[
  2. Script Name : SpawnScripts/NorthFreeport/MordinRageblade.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.06.19 03:06:21
  5. Script Purpose :
  6. :
  7. --]]
  8. dofile("SpawnScripts/Generic/GenericEcologyVoiceOvers.lua")
  9. function spawn(NPC)
  10. SetPlayerProximityFunction(NPC, 6, "InRange", "LeaveRange")
  11. waypoints(NPC)
  12. end
  13. function hailed(NPC, Spawn)
  14. GenericRaceCheckHail(NPC, Spawn, faction)
  15. end
  16. function InRange(NPC,Spawn)
  17. GenericRaceCheckCallout(NPC, Spawn, faction)
  18. end
  19. function respawn(NPC)
  20. spawn(NPC)
  21. end