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

Magic force field of expertise

Dunno if there's a better way to do this.. But try using this script in movements :

Code:
reqlevel = 150
newpos = {x=1000, y=700, z=7}

function onStepIn(cid, item, position, fromPosition)

if isPlayer(cid) == TRUE then
 if getPlayerLevel(cid) >= reqlevel then
    doTeleportThing(cid, newpos)
    doSendMagicEffect(getCreaturePosition(cid), 10)
 else
    	doCreatureSay(cid, "Only players level "..reqlevel.." or higher can teleport.", TALKTYPE_ORANGE_1)
 end
else
return FALSE
end
return TRUE
end

Just, put an unique id or action id to the ground.. And put a teleport above that ground as decoration... The script must work.. If not, tell me what's goin' wrong. 'Cause I just did this script here xD
 
Back
Top