wikutag
SoulBound 8.6 100% custom
I want to do a world boss that will spawn for so long then it disappears anything like this for tfs 0.3.6??
<globalevent name="think" time="22:30:00" event="script" value="singlespawn.lua"/>
local function doRemoveSingleSpawn(m)
if isCreature(m) then
doRemoveCreature(m)
end
return true
end
function onTimer(interval)
doBroadcastMessage("Orshabaal is coming.")
local m = doCreateMonster("Orshabaal", {x = 32362, y = 31789, z = 7})
addEvent(doRemoveSingleSpawn, 60 * 60 * 1000, m)
return true
end