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

OpenTibia Effects Packet Patcher 8.54

Qbazzz

Pół człowiek, pół litra
Joined
Jul 3, 2009
Messages
107
Solutions
1
Reaction score
98
Location
inside of the box
Hello again guys. This time I'm releasing small patcher made in DUP2.
What it does? This patch changes packet 0x83(effects) in client 8.54 from default:
Code:
msg->AddByte(0x83);
msg->AddPosition(pos);
msg->AddByte(type + 1);
to:
Code:
msg->AddByte(0x83);
msg->AddPosition(pos);
msg->AddU16(type + 1);
Remember to change that in server side.
You should change type of "type" variable from uint8_t to uint16_t too.
Samples based on TFS 0.3.6, may vary on other svn's.
Now you can send more effects than 254!

Effects_Packet_Patcher.exe - Serwis skanujący Jotti
Because that is executable patcher virus scan will always show some threat, but I assure You that is not dangerous.

Download: http://qbazzz.c0.pl/EPP_8.54.7z
Password: otland.net

You used it? Please donate on paypal: [email protected]
 

Attachments

Last edited by a moderator:
Is there any chance for tutorial? (How to do this, on any other Tibia version)
 
Is there any chance for tutorial? (How to do this, on any other Tibia version)
Hey, long time wasn't here :p
Probably it's to easy thing to make tutorial for it. You only need to know how to use debugger and know some functions of tibia client. Read some tuts on tpforums and on tibiapf you will find useful things too.
 
Back
Top