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

Windows I need help with auto clener

Ollemucklare

New Member
Joined
Mar 20, 2009
Messages
2
Reaction score
0
hello , i have search alot afther auto clener script but don't find any , so if u got / or want to help me ill priceate that relly much , thx for your help.
 
Last edited:
In global event?

try this, im using it currently. not tested on 0.2.

Only tested on 0.3.2.

PHP:
function executeClean()
	doCleanMap()
	doBroadcastMessage(">> Clean Complete <<", MESSAGE_EVENT_ADVANCE)
	return TRUE
end

function onThink(interval, lastExecution)
	doBroadcastMessage("Server clean within 30 seconds.", MESSAGE_EVENT_ADVANCE)
	addEvent(executeClean, 30000)
	return TRUE
end
 
Back
Top Bottom