BouncerUgbar.lua 684 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : SpawnScripts/SunkenCity_Classic/BouncerUgbar.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2023.10.30 08:10:14
  5. Script Purpose :
  6. :
  7. --]]
  8. dofile("SpawnScripts/Generic/MonsterCallouts/BaseOgre1.lua")
  9. function spawn(NPC)
  10. dmgMod = GetStr(NPC)/10
  11. SetInfoStructUInt(NPC, "override_primary_weapon", 1)
  12. SetInfoStructUInt(NPC, "primary_weapon_damage_low", math.floor(24 + dmgMod))
  13. SetInfoStructUInt(NPC, "primary_weapon_damage_high", math.floor(42 + dmgMod))
  14. SetSeeHide(NPC,1)
  15. end
  16. function hailed(NPC, Spawn)
  17. FaceTarget(NPC, Spawn)
  18. end
  19. function respawn(NPC)
  20. spawn(NPC)
  21. end