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

Compiling Paladin hit chance

DextaaH

Member
Joined
Jul 24, 2011
Messages
335
Reaction score
7
Paladins in my server have a low hit chance with distance weapon. Where to make it higher? Thanks!
 
data\items\items.xml

search for whatever distance weapons you want to make better.

example:

Code:
<item id="2389" name="spear" article="a">
		<attribute key="weight" value="2000" />
		<attribute key="attack" value="25" />
		<attribute key="weaponType" value="distance" />
		<attribute key="shootType" value="spear" />
		<attribute key="range" value="3" />
		<attribute key="breakChance" value="3" />
		<attribute key="ammoAction" value="moveback" />
         [B]<attribute key="hitChance" value="99" />[/B]
	</item>
 
Back
Top