eq2emu-content/SpawnScripts/DownBelow/CreeperProtector.lua
2024-10-26 11:37:28 +00:00

39 lines
No EOL
863 B
Lua
Executable file

--[[
Script Name : SpawnScripts/DownBelow/CreeperProtector.lua
Script Author : LordPazuzu
Script Date : 2022.06.25 10:06:22
Script Purpose :
:
--]]
function spawn(NPC)
local Level = GetLevel(NPC)
local level1 = 9
local level2 = 10
local difficulty1 = 6
local hp1 = 275
local power1 = 110
local difficulty2 = 6
local hp2 = 370
local power2 = 130
if Level == level1 then
SpawnSet(NPC, "difficulty", difficulty1)
SpawnSet(NPC, "hp", hp1)
SpawnSet(NPC, "power", power1)
elseif Level == level2
then
SpawnSet(NPC, "difficulty", difficulty2)
SpawnSet(NPC, "hp", hp2)
SpawnSet(NPC, "power", power2)
end
end
function hailed(NPC, Spawn)
FaceTarget(NPC, Spawn)
end
function respawn(NPC)
spawn(NPC)
end