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

Boots of haste and time ring ain't making any difference in speed ??

GM Drama

Member
Joined
Mar 13, 2013
Messages
127
Reaction score
6
So players on my server say that boots of haste and time ring doesn't make them faster. I checked items.xml and it says that it should add speed but appearently it's not doing any difference. I'll link the items.xml code for time ring and boots of haste.

Boots of haste.
Code:
item id="2195" name="boots of haste">
		<attribute key="weight" value="750"/>
		<attribute key="slotType" value="feet"/>
		<attribute key="speed" value="40"/>
		<attribute key="showattributes" value="1"/>
	</item>
Time ring.
Code:
	<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>
 
Have you checked in movements.xml as well?

XML:
<!-- Boots of Haste -->
    <movevent type="Equip" itemid="2195" slot="feet" event="function" value="onEquipItem"/>
    <movevent type="DeEquip" itemid="2195" slot="feet" event="function" value="onDeEquipItem"/>
XML:
<!-- Time Ring -->
    <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"/>
 
Have you checked in movements.xml as well?

XML:
<!-- Boots of Haste -->
    <movevent type="Equip" itemid="2195" slot="feet" event="function" value="onEquipItem"/>
    <movevent type="DeEquip" itemid="2195" slot="feet" event="function" value="onDeEquipItem"/>
XML:
<!-- Time Ring -->
    <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"/>

Those are there too. I don't know if it could be the sources ?
 
There's nothing wrong with the sources. The new speed formula is logarithmic, so the speed changes taper off the higher your level is. Players probably just have a hard time noticing the difference, but that doesn't mean they aren't there.

Use the /info command to check player speed before and after they equip the speed items, as long as it changes then the system is working correctly.
 
There's nothing wrong with the sources. The new speed formula is logarithmic, so the speed changes taper off the higher your level is. Players probably just have a hard time noticing the difference, but that doesn't mean they aren't there.

Use the /info command to check player speed before and after they equip the speed items, as long as it changes then the system is working correctly.

Yeah thanks the speed changes. And yeah it just takes alot longer to get fast with the new formula which is good in my opinion.
 
Back
Top