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

Bug Time Ring

you item.xml timering looks like this?

XML:
 	<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>
 
Here bro

test 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" />
                <attribute key="speed" value="20" />
		<attribute key="showattributes" value="1" />
	</item>
 
is add in movements
PHP:
	<movevent type="Equip" itemid="2206" slot="ring" event="function" value="onEquipItem"/>
	<movevent type="DeEquip" itemid="2206" slot="ring" event="function" value="onDeEquipItem"/>
 

Similar threads

Back
Top