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

Crystal Arrow

Mayeb set those functions:

<attribute key="ammoType" value="arrow" />
<attribute key="ammoType" value="bolt" />

Not sure if it will work.
 
in items.xml you add
XML:
		<attribute key="ammoType" value="bolt" />
or
XML:
		<attribute key="ammoType" value="arrow" />
to that item

make sure you have these lines too
XML:
		<attribute key="weaponType" value="distance" />
		<attribute key="slotType" value="two-handed" />
or just compare it to an arrow or bolt..
 
in items.xml you add
XML:
		<attribute key="ammoType" value="bolt" />
or
XML:
		<attribute key="ammoType" value="arrow" />
to that item

make sure you have these lines too
XML:
		<attribute key="weaponType" value="distance" />
		<attribute key="slotType" value="two-handed" />
or just compare it to an arrow or bolt..

With the topic owner post, i can say he already made the crystal arrow, but its only working with BOWS, and he needs with crossbow too,...
Thats why I posted:

XML:
<attribute key="ammoType" value="arrow" />
<attribute key="ammoType" value="bolt" />

It should work.
 
XML:
	<item id="2352" article="an" name="crystal arrow">
		<attribute key="weight" value="70" />
		<attribute key="slotType" value="ammo" />
		<attribute key="attack" value="38" />
		<attribute key="maxHitChance" value="90" />
		<attribute key="weaponType" value="ammunition" />
		<attribute key="ammoType" value="arrow" />
		<attribute key="ammoType" value="bolt" />
		<attribute key="shootType" value="onyxarrow" />
		<attribute key="ammoAction" value="removecount" />
	</item>

Here it is.
Edit for your needs.
 
Back
Top