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

Gate of Expertise not closing.

Chokkis

New Member
Joined
Sep 18, 2011
Messages
9
Reaction score
0
Hi there! I'm an ingame God on a server at the moment, and
in events, I'd like to have specified doors, and gates of expertise.
My problem, first of all, is that I'm able to fix the door so nobody
under level X can open it, but it doesn't close automatically afterwards.
Is this something I can fix from ingame? I haven't got access to the database,
so if that's needed, I'm screwed I guess.

Second, can I specify the doors more than that? With ./attr I've managed to
set a lower-level limit on the door, but can I make it so that only players
between level X and level Y can enter, and no one else?

Thanks,
/Chokkis
 
Movements script (step out of all itemid's of OPEN doors)

Code:
function onStepOut(cid, item, pos)
	doTransformItem(item.uid, item.itemid-1)
	return true
end
 
Back
Top