• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Monster

Yeah like a message to warn everyone then a message saying hes coming then he comes into the world of death appeal ( like the orshabaal script) im using 8.60 client tfs 0.3.6
 
Code:
<globalevent name="think" time="22:30:00" event="script" value="singlespawn.lua"/>

Code:
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
 
Last edited:
Back
Top