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

request

Animera

* * * * *
Joined
Dec 9, 2008
Messages
2,432
Solutions
5
Reaction score
603
Location
ANIMERA.ONLINE
i request someone tell me how to edit tibia client
like the skill name axe fighting to *** Fighting
 
xvi32.rar

Use the XVI32 search function, and you'll find it.
 
If i save and i open it says c:\program files\tibia85\tibia.exe is no valid win32- application
YOU NOOB


i open client
and do replace function
i write Axe fighting text to hex
and replace with Sex Fighting text to hex
errorrssszzzz
 
If i save and i open it says c:\program files\tibia85\tibia.exe is no valid win32- application
YOU NOOB


i open client
and do replace function
i write Axe fighting text to hex
and replace with Sex Fighting text to hex
errorrssszzzz

Any simple, minimum, tiny mistake with HEX, and you are done, your client dies.

Do it again, using OVERWRITE.
 
if i advance in skill it says you advanced in axe fighting but skill bar is sex fighting :s
 
Hunted
where i change you advance?......
player.cpp
Code:
		sprintf(advMsg, "You advanced in %s.", getSkillName(skill).c_str());
To change skill names, tools.cpp:
Code:
std::string getSkillName(uint16_t skillid)
{
	switch(skillid)
	{
		case SKILL_FIST:
			return "fist fighting";
			break;
		case SKILL_CLUB:
			return "club fighting";
			break;
		case SKILL_SWORD:
			return "sword fighting";
			break;
		case SKILL_AXE:
			return "axe fighting";
			break;
		case SKILL_DIST:
			return "distance fighting";
			break;
		case SKILL_SHIELD:
			return "shielding";
			break;
		case SKILL_FISH:
			return "fishing";
			break;
		case MAGLEVEL:
			return "magic level";
			break;
		case LEVEL:
			return "level";
			break;
		default:
			return "unknown";
			break;
	}
}
 
Back
Top