Direspike.lua 857 B

1234567891011121314151617181920212223242526272829
  1. --[[
  2. Script Name : SpawnScripts/IsleRefuge1/Direspike.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2022.09.06 06:09:11
  5. Script Purpose :
  6. :
  7. --]]
  8. require "SpawnScripts/Generic/NPCModule"
  9. function spawn(NPC)
  10. local dmgMod = GetStr(NPC)/10
  11. SetInfoStructUInt(NPC, "override_primary_weapon", 1)
  12. SetInfoStructUInt(NPC, "primary_weapon_damage_low", 3 + dmgMod)
  13. SetInfoStructUInt(NPC, "primary_weapon_damage_high", 7 + dmgMod)
  14. SetInfoStructUInt(NPC, "hp_regen_override", 1)
  15. SetInfoStructSInt(NPC, "hp_regen", 0)
  16. SetInfoStructUInt(NPC, "pw_regen_override", 1)
  17. SetInfoStructSInt(NPC, "pw_regen", 0)
  18. RandomMovement(NPC, Spawn, 9, -9, 2, 8, 15)
  19. end
  20. function respawn(NPC, Spawn)
  21. spawn(NPC)
  22. end
  23. function hailed(NPC, Spawn)
  24. FaceTarget(NPC, Spawn)
  25. end