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

Attack speed slower while healing

Marko999x

I love highexp
Staff member
Board Moderator
Premium User
Joined
Dec 14, 2017
Messages
4,005
Solutions
107
Reaction score
3,175
Location
Germany
Hey
As the title says my attack speed is slower while healing
Is it supposed to be like this?
Im using tfs 1.3
 
I think when you use the rune or any item, it resets the time for next auto attack that's why it looks like it slower.
 
LUA:
-- Item Usage
timeBetweenActions = 1
timeBetweenExActions = 1
well i set this in config.lua to 1 and 1 to remove exhaust from stairs, holes cause it affects pvp in highexp servers if it didn't work normally for you in your player.cpp
Code:
void Player::onWalk(Direction& dir)
{
    Creature::onWalk(dir);
    setNextActionTask(nullptr);
    //setNextAction(OTSYS_TIME() + getStepDuration(dir));
}

just block the third line

iam not sure 100% this will solve your issue but i think so
 
I think when you use the rune or any item, it resets the time for next auto attack that's why it looks like it slower.

and how can I solve this problem then?

LUA:
-- Item Usage
timeBetweenActions = 1
timeBetweenExActions = 1
well i set this in config.lua to 1 and 1 to remove exhaust from stairs, holes cause it affects pvp in highexp servers if it didn't work normally for you in your player.cpp
Code:
void Player::onWalk(Direction& dir)
{
    Creature::onWalk(dir);
    setNextActionTask(nullptr);
    //setNextAction(OTSYS_TIME() + getStepDuration(dir));
}

just block the third line

iam not sure 100% this will solve your issue but i think so

I will try it in some mins
 
Problem have been solved by editing source.
I forgot that I changed my sources befor
my fault but thanks
 
Back
Top