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

How to make normal Bolt

Celots.pl

New Member
Joined
Jan 18, 2013
Messages
2
Reaction score
0
I want make new Bolt "weapon" But i want just normal dmg from bolt just put attack "65" without scripts
 
In items.xml
add this

XML:
	<item id="item id" article="a" name="bolt name" plural="bolts">
		<attribute key="weight" value="80" />
		<attribute key="slotType" value="ammo" />
		<attribute key="attack" value="how much attack should it have????" />
		<attribute key="maxHitChance" value="90" />
		<attribute key="weaponType" value="ammunition" />
		<attribute key="ammoType" value="bolt" />
		<attribute key="shootType" value="bolt" />
		<attribute key="ammoAction" value="removecount" />
	</item>

or this for a bolt weapon:

XML:
	<item id="weapon id" article="a" name="name weapon">
		<attribute key="weight" value="3500" />
		<attribute key="weaponType" value="distance" />
		<attribute key="ammoType" value="bolt" />
		<attribute key="range" value="5" />
		<attribute key="hitChance" value="10" />
		<attribute key="attack" value="30" />
	</item>
 
Back
Top