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

Recent content by bladam

  1. B

    Lua Help with a script

    Use stackpos=1 on all positions since I assume you don't want to stack items on each other local piece1pos = { -- Location of FirstID [1] = {x = 1015, y = 1029, z = 8, stackpos = 1}, {firstID = 7426}, [2] = {x = 1015, y = 1029, z = 8, stackpos = 1}, {firstID = 3961}, [3] = {x = 1015, y...
  2. B

    Globalevent problem ;/

    If your using this code. local t = {6289,5069,6238,6746} local pos = {x=911, z=1178, y=7} function onThink(interval, lastExecution, thinkInterval) for i = 1, #t do if getTileItemById(pos, t[i]) then doRemoveItem(getTileItemById(pos,t[i]).uid, 1) doCreateItem(t[i+1], 1, pos) break; end...
Back
Top