Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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!
can some make a script that will remove a stone like 10 min every 3 h then after 10 min it will come back and wait 3h then it will be removed 10 min.. and same think after that and so on
function onTimer()
local s = getStorage(1)
if os.time() > s then
doCreateItem({x=1105, y=1062, z=7}, StoneID)
else
return false
end
addEvent(startEvent, config.timeToStartEvent * 10 * 60)
doRemoveItem(getTileItemById({x=1105, y=1062, z=7}, StoneID).uid)
end