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

Knight bug

Eraser

Hoster
Joined
Jul 20, 2007
Messages
29
Reaction score
0
Location
Muntlix (Austria)
How do i fix the skilling multiplier at my knights, i have to skill 1h for axe fighting 11 to 12.
I HAVE searched on otland.net for my problem but didnt find the answers.
If i change skill rate in config.lua ill increase the skill speed for paladins too, and theyll get 100+skills in a few minutes, and in vocation.xml i can change multiplier to 10.0 and nothing happens, what do i have to do???

Greets Eraser
 
Go to vocations.xml

search for

<vocation id="4" name="Knight" description="a knight" needpremium="0" gaincap="25" gainhp="15" gainmana="5" gainhpticks="3" gainhpamount="5" gainmanaticks="6" gainmanaamount="5" manamultiplier="3.0" attackspeed="2000" soulmax="100" gainsoulticks="120" fromvoc="4">
<formula meleeDamage="1.0" distDamage="1.0" defense="1.0" armor="1.0"/>
<skill id="0" multiplier="1.1"/>
<skill id="1" multiplier="1.1"/>
<skill id="2" multiplier="1.1"/>
<skill id="3" multiplier="1.1"/>
<skill id="4" multiplier="1.4"/>
<skill id="5" multiplier="1.1"/>
<skill id="6" multiplier="1.1"/>
</vocation>

<skill id="0" multiplier="1.1"/>
<skill id="1" multiplier="1.1"/>
<skill id="2" multiplier="1.1"/>
<skill id="3" multiplier="1.1"/>
<skill id="4" multiplier="1.4"/>
<skill id="5" multiplier="1.1"/>
<skill id="6" multiplier="1.1"/>

The 1.1, 1.4 is where u change the skills. Skill id 5 = distance 1,2,3,4 is axe club sword and so on.

Change the number 1.1 to 0.9 or something and knights skills will be faster
 
Well i think you need to change this ;)
Code:
<skill id="0" multiplier="1.1"/>
<skill id="1" multiplier="1.1"/>
<skill id="2" multiplier="1.1"/>
<skill id="3" multiplier="1.1"/>
<skill id="4" multiplier="1.4"/>
<skill id="5" multiplier="1.1"/>
<skill id="6" multiplier="1.1"/>
Higher the multiplier is faster you skill. Was this what you were looking for?:confused:
 
Code:
<skill id="0" multiplier="1.1"/> fist
<skill id="1" multiplier="1.1"/> club
<skill id="2" multiplier="1.1"/> sword
<skill id="3" multiplier="1.1"/> axe
<skill id="4" multiplier="1.4"/> dist
<skill id="5" multiplier="1.1"/> shield
<skill id="6" multiplier="1.1"/> fish

lower the number the faster it gains
so if you want it really fast set it to 0 xD
 
Back
Top