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

Clean server on spesific time

sebbe hbk

Mapper - Hoster
Joined
Sep 1, 2009
Messages
164
Reaction score
3
Location
I ditt garage
Hey i have searched for a script that clean your server map on a specific time.

For an example

The server clean the map on 09:00am and on 09:00pm

Can someone make this script?

Repp ofc
 
Solved

put
Code:
<globalevent name="clean6" time="01:00" event="script" value="clean.lua"/>

instead of
Code:
<globalevent name="clean6" interval="1200" event="script" value="clean.lua"/>


and in the lua, change
Code:
function onThink(interval, lastExecution, thinkInterval)

to
Code:
function onTimer(interval, lastExecution, timerInterval)


If someone else needs it :)
 
Back
Top