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

TFS 1.2 Tile Level req..

Lucifer

Active Member
Joined
Dec 27, 2014
Messages
145
Reaction score
33
Location
Sweden
Need help to write a script so you can not go in that tile if you are under level 50
I Am new and have just started to learning lua...
 
I need something with actionid or uniqueid becuase its not only 1 tile its about 20-30 tiles can u help me with that?

Love you bro <3 Every time i need help you show up! Thank you @Nekiro
 
Just a question because i have similar issue, can u use uniqueid instead of tiles?

function onStepIn(cid, item, position, fromPosition)
if getPlayerLevel(cid) >= 100 then
return true
else
doplayer:sendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "level 100 to pass this tile")
doTeleportThing(cid, fromPosition, false)
end
end

@henkas
 
Last edited:
Back
Top