MordinRageblade.lua 558 B

12345678910111213141516171819202122232425
  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. end
  12. function hailed(NPC, Spawn)
  13. GenericRaceCheckHail(NPC, Spawn, faction)
  14. end
  15. function InRange(NPC,Spawn)
  16. GenericRaceCheckCallout(NPC, Spawn, faction)
  17. end
  18. function respawn(NPC)
  19. spawn(NPC)
  20. end