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

Need donate boots

Byllan

Member
Joined
Dec 29, 2009
Messages
1,079
Reaction score
12
Location
SWEDEN
Need donate firewalker boots can someone post a script And i need donate wand and donate rod too
 
Donate Boots:
goto ID 9932 in items.xml and replace it with this;
Code:
	<item id="9932" article="a" name="donator boots">
		<attribute key="description" value="Wearing these boots increases your regeneration."/>
		<attribute key="weight" value="1200"/>
		<attribute key="slotType" value="feet"/>
		<attribute key="transformDeEquipTo" value="2644"/>
		<attribute key="healthGain" value="HP/sec"/>
		<attribute key="healthTicks" value="1000"/>
		<attribute key="manaGain" value="MP/sec"/>
		<attribute key="manaTicks" value="2000"/>
	</item>

Donate Staff:
goto items.xml goto id 7958 and replace it with;
Code:
	<item id="7958" article="a" name="jester staff">
		<attribute key="weight" value="725"/>
		<attribute key="weaponType" value="wand"/>
		<attribute key="shootType" value="death"/>
		<attribute key="range" value="3"/>
	</item>

now goto, data/weapons/weapons.xml
after;
Code:
	<wand id="8910" level="42" mana="13" min="55" max="75" type="death" event="function" value="default"> <!-- Underworld Rod -->
		<vocation id="2"/>
	</wand>
add the following;
Code:
	<wand id="7958" level="8" mana="25" min="255" max="375" type="death" event="function" value="default"> <!-- Jester Staff -->
		<vocation id="2"/>
		<vocation id="1"/>
		<vocation id="5"/>
		<vocation id="6"/>
	</wand>

rep++ :)
 
<item id="5907" article="an" name="Slingshot">
<attribute key="weight" value="420"/>
<attribute key="attack" value="85"/>
<attribute key="weaponType" value="distance"/>
<attribute key="shootType" value="smallstone"/>
<attribute key="range" value="6"/>
</item>



++rep
 
<item id="5907" article="an" name="Slingshot">
<attribute key="weight" value="420"/>
<attribute key="attack" value="85"/>
<attribute key="weaponType" value="distance"/>
<attribute key="shootType" value="smallstone"/>
<attribute key="range" value="6"/>
++rep

And if you want to have it so only a one vocatio can use the star, just simpaly add this line to you wepon.xml

PHP:
<Wepon id="5907" level="X" type="earth" event="function" value="default"> <!-- Slingshot -->
<vocation id="X"/> <!-- Paladin voc id. -->
<vocation id="X"/> <!-- Royal Paladin voc id. -->
</Wepon>
 
Last edited:
Back
Top