• 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 change Atk speed on vocations/skill gaining

IMac

entrepreneur
Joined
May 31, 2009
Messages
2,482
Reaction score
16
Location
Pluto
im gonna show u how to change the atkspeed in in vocations.xml

now find attackspeed[highlited blue] lets say change it from 3000 to 100 and your atk speed will be faster
Code:
<?xml version="1.0" encoding="UTF-8"?>
<vocations>
	<vocation id="0" name="None" description="none" gaincap="5" gainhp="5" gainmana="5" gainhpticks="6" gainhpamount="1" gainmanaticks="6" gainmanaamount="1" manamultiplier="4.0" [COLOR="Blue"]attackspeed="2000"[/COLOR] soulmax="100" gainsoulticks="120" fromvoc="0">
		<formula meleeDamage="1.0" distDamage="1.0" defense="1.0" armor="1.0"/> 
		<skill id="0" multiplier="1.5"/>
		<skill id="1" multiplier="2.0"/>
		<skill id="2" multiplier="2.0"/>
		<skill id="3" multiplier="2.0"/>
		<skill id="4" multiplier="2.0"/>
		<skill id="5" multiplier="1.5"/>
		<skill id="6" multiplier="1.1"/>
	</vocation>
this works for every vocation just find it and change the atk speed:thumbup:also it can work for custom vocations or vip vocations

and the skills id are

1: fist
2:sword
3:axe
4:club
5:distance
6:shielding

the skill gaining will be the same thing just find the skill you would it the vocation to gain faster on and change it
example :
Code:
<?xml version="1.0" encoding="UTF-8"?>
<vocations>
	<vocation id="0" name="None" description="none" gaincap="5" gainhp="5" gainmana="5" gainhpticks="6" gainhpamount="1" gainmanaticks="6" gainmanaamount="1" manamultiplier="4.0" attackspeed="2000" soulmax="100" gainsoulticks="120" fromvoc="0">
		<formula meleeDamage="1.0" distDamage="1.0" defense="1.0" armor="1.0"/> 
		<skill id="0" multiplier="1.5"/>
		<[COLOR="Red"]skill id="1" multiplier="2.0"/>[/COLOR]
		<skill id="2" multiplier="2.0"/>
		<skill id="3" multiplier="2.0"/>
		<skill id="4" multiplier="2.0"/>
		<skill id="5" multiplier="1.5"/>
		<skill id="6" multiplier="1.1"/>
	</vocation>
find the skill you want to gain faster[highlited example] and change it lets say from 2.0 to 1.0 it will gain that skill faster.


hope it helped some ppl if you like rep:thumbup::wub:
 
Last edited:
You are wrong here:
Macaronie said:
find the skill you want to gain faster[highlited example] and change it lets say from 2.0 to 3.0 it will gain that skill faster.

You must decrease 2.0 to a lower value so it becomes faster.
 
Back
Top