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

Script - need premium account or x level to pass bridge

xardas33

New Member
Joined
Jan 28, 2010
Messages
83
Reaction score
0
Hello. I looking for script - you need premium account to pass titles on bridge, if you don't have premium you will be teleported few positions back, and the same to pass titles on bridge but you need required level.
 
Code:
function onStepIn(cid, item, position, fromPosition)

     if getPlayerPremiumDays(cid) < 1 then
         doTeleportThing(cid, fromPosition)
     end
     return true
end
If it should teleport he player further back than 1 square, you can change fromPosition to the position it should teleport the player to.
Code:
{x = 100, y = 100, z = 7}
 
Back
Top