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

Help, time ring not working

goto movments.xml and add :
Lua:
	<movevent type="Equip" itemid="2169" slot="ring" event="function" value="onEquipItem"/>
	<movevent type="Equip" itemid="2206" slot="ring" event="function" value="onEquipItem"/>
	<movevent type="DeEquip" itemid="2206" slot="ring" event="function" value="onDeEquipItem"/>

and in items look for time ring and place it with this
Lua:
	<item id="2169" article="a" name="time ring">
		<attribute key="weight" value="90"/>
		<attribute key="slotType" value="ring"/>
		<attribute key="transformEquipTo" value="2206"/>
		<attribute key="stopduration" value="1"/>
		<attribute key="showduration" value="1"/>
	</item>
 
Back
Top