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

Help on exhaust system

Ashtar

ShadowRealm.online
Joined
May 1, 2009
Messages
312
Reaction score
102
Well, since Tibia 8.22~ they've added a dual-exhaust system, which allows you to use healing & offensive spells at the same time, since they are on different timers. I would like to set it back to how 7.6 was and make them all on the same timer. Can anyone tell me how can i change this? I'm using TFS crying damnson v5 8.60, any help on how I would go about doing this would be great, thanks.
 
Open spells.cpp and replace:
[cpp]if(player->hasCondition(CONDITION_EXHAUST, EXHAUST_COMBAT))[/cpp]
with:
[cpp]if(player->hasCondition(CONDITION_EXHAUST, EXHAUST_HEALING))[/cpp]

and

[cpp]player->addExhaust(exhaustion, isAggressive ? EXHAUST_COMBAT : EXHAUST_HEALING);[/cpp]
with:
[cpp]player->addExhaust(exhaustion, EXHAUST_HEALING);[/cpp]

Then recompile.
 
Back
Top