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

Poi electric sparks door.

Lua:
local storage = the-storage-here
function onStepIn(cid, item, position, fromPosition)
    return getPlayerStorageValue(cid, storage) > 7 and true or doTeleportThing(cid, fromPosition) and doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You have not completed the all the pits.")
end
 
Back
Top