Itutorial
Legendary OT User
- Joined
- Dec 23, 2014
- Messages
- 2,394
- Solutions
- 68
- Reaction score
- 1,065
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
remove
find and remove
find
remove
remove
find
That's it your done.
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*/)
remove
Code:
if (currLevelExp >= nextLevelExp) {
//player has reached max level
levelPercent = 0;
sendStats();
return;
}
find and remove
Code:
if (currLevelExp >= nextLevelExp) {
//player has reached max level
break;
}
find
Code:
void Player::addSkillAdvance(skills_t skill, uint64_t count)
remove
Code:
if (currReqMana >= nextReqMana) {
//player has reached max magic level
return;
}
remove
Code:
if (currReqTries >= nextReqTries) {
//player has reached max skill
return;
}
find
Code:
void Player::addManaSpent(uint64_t amount)
That's it your done.
Last edited by a moderator: