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

Saj

Remember my name
Joined
Feb 26, 2008
Messages
2,127
Reaction score
6
Hey, I use this code
Code:
cleanTime = 3600 -- clean every 60 minutes
warnTime = 10 -- gives 30 second warning
lastclean = 0
focus = 0
hasWarned = 0
function onThink()
if lastclean == 0 then
lastclean = os.time()
end
if os.difftime (os.time(), lastclean) >= (cleanTime-warnTime) and hasWarned == 0 then
selfSay("/B Global floor clean in "..warnTime.." seconds.")
lastclean = os.time()
hasWarned = 1
end
if os.difftime (os.time(), lastclean) >= (warnTime) and hasWarned == 1 then
selfSay('/clean')
lastclean = os.time()
hasWarned = 0
end
end

Too clean but it doesn't clean, could anyone help me?
 
Back
Top