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

Solved Take away fast attack, Where?rep+

Ezak

Dimeria.net Realmap pVp-e
Joined
Dec 25, 2007
Messages
295
Reaction score
0
Location
Sweden, Helsingborg
On the server i have its pretty fast attack, i want little fast attack, where do i change it

REP++
 
Last edited:
In data/xml/vocations.xml
for example
Code:
<vocation id="2" name="Druid" description="a Druid" needpremium="0" gaincap="10" gainhp="5" gainmana="30" gainhpticks="6" gainhpamount="20" gainmanaticks="3" gainmanaamount="20" manamultiplier="1.1" [B]attackspeed="2000"[/B] soulmax="100" gainsoulticks="120" fromvoc="2">
= No attack speed
And
Code:
<vocation id="2" name="Druid" description="a Druid" needpremium="0" gaincap="10" gainhp="5" gainmana="30" gainhpticks="6" gainhpamount="20" gainmanaticks="3" gainmanaamount="20" manamultiplier="1.1" [B]attackspeed="1500"[/B] soulmax="100" gainsoulticks="120" fromvoc="2">
= Attack speed

it is attackspeed in milliseconds, 1500= 1.5 sec between each atk, 1000= 1 sec between each atk and so on(Default is 2000=2 sec)
Notice you will have to change all vocations, not just Druid :p
 
In data/xml/vocations.xml
for example
Code:
<vocation id="2" name="Druid" description="a Druid" needpremium="0" gaincap="10" gainhp="5" gainmana="30" gainhpticks="6" gainhpamount="20" gainmanaticks="3" gainmanaamount="20" manamultiplier="1.1" [B]attackspeed="2000"[/B] soulmax="100" gainsoulticks="120" fromvoc="2">
= No attack speed
And
Code:
<vocation id="2" name="Druid" description="a Druid" needpremium="0" gaincap="10" gainhp="5" gainmana="30" gainhpticks="6" gainhpamount="20" gainmanaticks="3" gainmanaamount="20" manamultiplier="1.1" [B]attackspeed="1500"[/B] soulmax="100" gainsoulticks="120" fromvoc="2">
= Attack speed

it is attackspeed in milliseconds, 1500= 1.5 sec between each atk, 1000= 1 sec between each atk and so on(Default is 2000=2 sec)
Notice you will have to change all vocations, not just Druid :p

oohh love you more<3
 
Back
Top