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

Miss Hit paladins.

GuHB

Member
Joined
Dec 14, 2009
Messages
630
Reaction score
9
Location
Brazil
How can i Fix the Miss Hit of paladins?

In my ots, Paladins and Royal Paladin have much miss hit.. Some times the spear go away and anothers the monster block the hit.

How can i Fix it?

In vocations.xml i do this, but it just increase in strength of attacks, dont in miss hits.
XML:
 distDamage="1.07"

In items.xml dont have any tag. :S


Someone can help me?
 
In items.xml, add attribute hitChance, for example:
Code:
	<item id="7368" article="an" name="assassin star" plural="assassin stars">
		<attribute key="weight" value="200" />
		<attribute key="attack" value="65" />
		<attribute key="weaponType" value="distance" />
		<attribute key="shootType" value="redstar" />
		<attribute key="range" value="4" />
		<attribute key="breakChance" value="33" />
[B][COLOR="red"]		<attribute key="hitChance" value="95" />[/COLOR][/B]
		<attribute key="ammoAction" value="moveback" />
	</item>

See also: http://www.tibia-stats.com/index.php?akcja=6003&research=distance
 
Back
Top