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

My first script :o

Thanks a lot, and how'd be if I want to enable a teleporter after putting items on a tile

i think the easiest way would be

local frompos = { x = x, y = x, z = x}
local topos = { x = x, y = x, z = x}
local tp = getTileItemById(topos, 1387)
if itemPos.itemid == 2400 then
doCreateTp(xxx, fromPos, toPos)
end
return 1

but I want the tp to be there already
like make a condition for entering the tp...
 
Back
Top