adefiledsquire.lua 453 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/Stormhold/adefiledsquire.lua
  3. Script Author : Premierio015
  4. Script Date : 2022.04.17 12:04:39
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. local MobLevel = GetLevel(NPC)
  10. if MobLevel == 17 then
  11. SpawnSet(NPC, "hp", 2463)
  12. SpawnSet(NPC, "power", 742)
  13. end
  14. end
  15. function hailed(NPC, Spawn)
  16. FaceTarget(NPC, Spawn)
  17. end
  18. function respawn(NPC)
  19. spawn(NPC)
  20. end