How to make a door of expertise
So you wanna learn how to make a door of expertise? It's simple. First choose the door.![]()
Right click and select properties and this should come up
![]()
Now an easy way to remember this is simply just write 1000 where it says action Id, now lets say you want people that are higher than level 50 to enter, add 50 to the 1000, so the action id is 1050. If you want 150+ to pass, put 1150. and press Okay.
Really simple.
Hello i tried this for a level requirment of 300,000 but its automatically change itself to 65535 any ideas ?
thanks
function onUse(cid, item, fromPosition, itemEx, toPosition)
if getPlayerLevel(cid) >= 100000 then
if getPlayerPosition(cid).x == toPosition.x and getPlayerPosition(cid).y == toPosition.y then
doTransformItem(item.uid, item.itemid+1)
doTeleportThing(cid, toPosition, true)
end
else
doPlayerSendTextMessage(cid, 21, "Players of level 100000 can only pass.")
end
return true
end
I want to learn who to make a teleport with a lvl
Like the door u done
Because in my ot i want to make a teleports with lvls
Edit:
In fact its rebs