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

Better BOH.

dank shire

New Member
Joined
Jul 8, 2007
Messages
24
Reaction score
1
On my 7.92 server, i had taken the Pirate Boots and turned them into a pair of boots called "The Quickness" and copied boots of haste.lua and changed the name to "The Quickness" and in the items.xml i had added
<attribute key="speed" value="1200"/>

Just to test it, and it had worked on my 7.92, but now that I've upgraded to 8.0, I cant get it to work anymore : anyone got any ideas?

Edit: Bah, its been like a day and no one can help? :
 
Maybe u need a better items.xml because I got it to work on my evo 8.0 server, by just adding that code u posted at the beginning.
 
In items.xml there should be a place where it describes it's speed. Find it and alter the value , play with it. You'll get it.
 
My boots of haste got this:
Code:
	<item id="2195" name="boots of haste">
		<attribute key="weight" value="750"/>
		<attribute key="slotType" value="feet"/>
		<attribute key="speed" value="40"/>
	</item>
My pirate boots got this:
Code:
<item id="5462" name="pirate boots">
		<attribute key="weight" value="800"/>
		<attribute key="armor" value="2"/>
		<attribute key="slotType" value="feet"/>
	</item>

So your QUIKNESS Boots will look like this maby:
Code:
<item id="5462" name="pirate boots">
		<attribute key="weight" value="800"/>
		<attribute key="slotType" value="feet"/>
		<attribute key="speed" value="100"/>
	</item>[
 
Well, I don't really think they are better, its just a easy edit..
Maybe its better for your x9999 server, but not for mine..
 
im very confused why noone has told him..... Go into the movement.xml and copy what it says for boots of haste in there, should be something like this

<movevent event="Equip" itemid="2195" slot="feet" function="onEquipItem"/>
<movevent event="DeEquip" itemid="2195" slot="feet" function="onDeEquipItem"/>
 
Back
Top