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

Help with storage value [movemets]

example

Lua:
function onStepIn(cid, item, position, fromPosition)
   if isPlayer(cid) == TRUE then
        if getPlayerStorageValue(cid, 3545, 1) == 1 then     
             doTeleportThing(cid, {x=283, y=214, z=10})
        else
             doTeleportThing(cid, fromPosition)
             doPlayerSendTextMessage(cid,TALKTYPE_BROADCAST, "only players with STORAGEVALUE <3545> = 1 can pass.")	           
        end
   else
        doTeleportThing(cid, fromPosition)
   end
  return TRUE
end
 
Back
Top