• 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!

After 2h when raid start....

Of course, łap Azorku ;*

Code:
<script delay="3000" file="your_raid.lua"/>

Code:
local config = {
	monsterName = "UNIQUE MONSTER NAME",
	timeToRemove = 2 * 60 * 60 * 1000 -- in ms
}

local autoDestruction()
	local monster = getCreatureByName(config.monsterName)
	if(monster ~= nil) then
		doRemoveCreature(monster)
	end
end

function onRaid()
	addEvent(autoDestruction, config.timeToRemove)
end

test if it works

#Edit
(PL)
Btw. to na górze kładziesz w pliku raidu, tam gdzie singlespawn, areaspawn itd

a to drugie w raids/scripts/your_raid.lua :D
 
Back
Top