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

Lua simple doors

Haaan

New Member
Joined
Oct 24, 2009
Messages
56
Reaction score
0
Hello how to make object like classic doors i mean when press use on object(closed doors-non walkable) this changing to other(open doors-walkable)?

I know walkable etc. is to do in dat editor but how to make when press this changing to other object
 
Last edited:
this?
Lua:
function onUse(cid, item, fromPosition, itemEx, toPosition)
return item.itemid == 10776 and doTransformItem(item.uid,10777) or item.itemid == 10777 and doTransformItem(item.uid,10776)
end

Remember change ID.
 
Back
Top