Note: These changes can break your server, think twice before installing this!
TFS 1.x
This guide will show you how to break max skill,level,magic level in the sources.
open player.cpp
find
[code]
void Player::addExperience(Creature* source, uint64_t exp, bool sendText/* = false*/)
[/code]
remove
[code]
if (currLevelExp >= nextLevelExp) {
//player has reached max level
levelPercent = 0;
sendStats();
return;
}
[/code]
find and remove
[code]
if (currLevelExp >= nextLevelExp) {
//player has reached max level
break;
}
[/code]
find
[code]
void Player::addSkillAdvance(skills_t skill, uint64_t count)
[/code]
remove
[code]
if (currReqMana >= nextReqMana) {
//player has reached max magic level
return;
}
[/code]
remove
[code]
if (currReqTries >= nextReqTries) {
//player has reached max skill
return;
}
[/code]
find
[code]
void Player::addManaSpent(uint64_t amount)
[/code]
That's it your done.