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

[Request] Super Boots

exique

Natala-ot.com
Joined
Sep 28, 2008
Messages
1,673
Reaction score
25
Location
Sweden
Hey!

Do any body have a script for like "Super boots"?

Gives 10 in every skill level + magic...
and it generates mana and hp double as fast as softboots?

:thumbup:
 
Wouldn't it be like this:

items.xml

Code:
	<item id="xxxx" name="super boots">
		<attribute key="weight" value="800"/>
		<attribute key="slotType" value="feet"/>
		<attribute key="decayTo" value="xxxx"/>
		<attribute key="transformDeEquipTo" value="xxxx"/>
		<attribute key="duration" value="14400"/>
		<attribute key="healthGain" value="2"/>
		<attribute key="healthTicks" value="4000"/>
		<attribute key="manaGain" value="3"/>
		<attribute key="manaTicks" value="2000"/>
		<attribute key="showduration" value="1"/>
	</item>

or:

Code:
		<attribute key="healthTicks" value="2000"/>
		<attribute key="manaTicks" value="1000"/>

:eek:
 
Code:
	<item id="xxxx" name="super boots">
		<attribute key="weight" value="800"/>
		<attribute key="slotType" value="feet"/>
		<attribute key="skillAxe" value="10"/>
		<attribute key="skillClub" value="10"/>
		<attribute key="skillFist" value="10"/>
		<attribute key="skillSword" value="10"/>
		<attribute key="skillDistance" value="10"/>
		<attribute key="skillMagic" value="10"/>
		<attribute key="healthGain" value="2"/>
		<attribute key="healthTicks" value="2000"/>
		<attribute key="manaGain" value="4"/>
		<attribute key="manaTicks" value="1000"/>
	</item>
Also... I don't know if this ones exist:

Code:
		<attribute key="skillMagic" value="10"/>
		<attribute key="skillDistance(Dist?)" value="10"/>
 
Change
Lua:
	<attribute key="skillDistance" value="10"/>

To
Lua:
	<attribute key="skillDist" value="10"/>

Add this to movements.xml
Lua:
	<movevent type="DeEquip" itemid="xxxx" slot="feet" event="function" value="onDeEquipItem"/>
	<movevent type="Equip" itemid="xxxx" slot="feet" event="function" value="onEquipItem">
 
Code:
	<item id="xxxx" name="super boots">
		<attribute key="weight" value="800"/>
		<attribute key="slotType" value="feet"/>
		<attribute key="skillAxe" value="10"/>
		<attribute key="skillClub" value="10"/>
		<attribute key="skillFist" value="10"/>
		<attribute key="skillSword" value="10"/>
		<attribute key="skillDistance" value="10"/>
		<attribute key="skillMagic" value="10"/>
		<attribute key="healthGain" value="2"/>
		<attribute key="healthTicks" value="2000"/>
		<attribute key="manaGain" value="4"/>
		<attribute key="manaTicks" value="1000"/>
	</item>
Also... I don't know if this ones exist:

Code:
		<attribute key="skillMagic" value="10"/>
		<attribute key="skillDistance(Dist?)" value="10"/>

I need one that givs 700 manas per second plx rep!
 
Back
Top