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

C++ Exhaustion (TFS 1.0)

Frostie

Mapper/basic scripter (NL)
Joined
Feb 14, 2012
Messages
447
Reaction score
425
Location
Holland
Could someone tell me how to make the exhaustion of all spells lower ?

Edit:
making the spells exhaustion works but the attack exhoustion make it inpossible to attack faster :/
 
Last edited:
Code:
        <instant group="attack" spellid="80" name="Berserk" words="exori" lvl="35" mana="115" prem="1" needweapon="1" exhaustion="4000" groupcooldown="2000" needlearn="0" script="attack/berserk.lua">
                <vocation name="Knight"/>
                <vocation name="Elite Knight"/>
        </instant>
when you change exhaustion to lower won't work?
 
Code:
        <instant group="attack" spellid="80" name="Berserk" words="exori" lvl="35" mana="115" prem="1" needweapon="1" exhaustion="4000" groupcooldown="2000" needlearn="0" script="attack/berserk.lua">
                <vocation name="Knight"/>
                <vocation name="Elite Knight"/>
        </instant>
when you change exhaustion to lower won't work?
Off course not :) otherwise i knew what to do ^^
 
You have to change the cooldown too. try messing with both of them, set exhaustion to 0 and cooldown to 1000 or something...
 
Back
Top