hello OTLAND I have a script but I want this say "to enter need to be level 120" when you can not enter
Thanks !! i will give +rp
Code:
function onStepIn(cid, item, position, fromPosition)
pos1 = {x=32202, y=32205, z=7} ------- Enter the position the teleport should take you here
pos2 = {x=32350, y=32222, z=7} ------- Enter the position the teleport should take you if you're not level 100 here
if getPlayerLevel(cid) >= 120 then
doTeleportThing(cid, pos1, 1)
else
doTeleportThing(cid, pos2, 1)
return TRUE
end
end