• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

How To Make Door For Level Ex:100 And Qeust

u can use a script like that

LUA:
function onUse(cid, item, fromPosition, itemEx, toPosition)
	if getPlayerStorageValue (cid, 11511) < 1 and getPlayerLevel(cid) >= 100 then 
doPlayerAddItem(cid, x, x)
setPlayerStorageValue(cid, 11511 1)
end
return true
end
 
Last edited:
With quest doors do you mean doors that open with storage?
You can use the doors with those ids for that.
LUA:
specialDoors = {1223, 1225, 1241, 1243, 1255, 1257, 3542, 3551, 5105, 5114, 5123, 5132, 5288, 5290, 5745, 5748, 6202, 6204, 6259, 6261, 6898, 6907, 7040, 7049, 8551, 8553, 9175, 9177, 9277, 9279, 10278, 10280, 10475, 10484, 10782, 10791}
Then add actionid to the door with same number as the storage you want to use for that door.

For level add the actionid to gate of expertise doors.
 
Back
Top