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

One handed bow

Jajjje

New Member
Joined
Feb 21, 2009
Messages
21
Reaction score
0
Hello, I need help to create a one-handed bow.

This is the item.xml file for the bow:
<item id="8858" name="Elethriel's Elemental Bow" override="yes">
<attribute key="weight" value="4400" />
<attribute key="weaponType" value="distance" />
<attribute key="ammoType" value="arrow" />
<attribute key="range" value="6" />
<attribute key="hitChance" value="7" />
<attribute key="attack" value="11" />

and here is the weapon.xml file for the bow:
<!-- Elethriel's Elemental Bow -->
<distance id="8858" level="100" unproperly="1" event="function" value="default">
<vocation id="3"/>
<vocation id="7" showInDescription="0"/>
</distance>

Also, im using crystal arrow for this bow, but for some reason when it shoots, it looks like you are throwing spears, does anyone know how to fix this?

here are the arrow item.xml and weapon.xml:

<item id="2352" article="a" name="Crystal arrow" override="yes">
<attribute key="weight" value="70" />
<attribute key="slotType" value="ammo"/>
<attribute key="attack" value="75"/>
<attribute key="maxHitChance" value="90"/>
<attribute key="weaponType" value="ammunition"/>
<attribute key="ammoType" value="arrow"/>
<attribute key="ammoAction" value="removecount"/>





<distance id="2352" level="100" event="function" value="default"/>
 
Try this

Code:
<item id="2352" article="a" name="Crystal arrow" override="yes">
<attribute key="weight" value="70" />
<attribute key="slotType" value="ammo"/>
<attribute key="attack" value="75"/>
<attribute key="maxHitChance" value="90"/>
<attribute key="weaponType" value="ammunition"/>
<attribute key="ammoType" value="arrow"/>
<attribute key="shootType" value="arrow" />
<attribute key="ammoAction" value="removecount"/>

don't forget the

Code:
<attribute key="shootType" value="arrow" />
 
Back
Top