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

Programmer Effects Limit - OldClient

_Aion_

Nothing Else
Joined
Jan 19, 2010
Messages
400
Solutions
4
Reaction score
10
Location
Jequie,Bahia,Brazil
Hello, i'm searching someone, that know how "unlock" limit of magic effects and distance effects.
I have changed all uint8 to uint16 in sourcer and client side...
But when i login, crash my client, i think that is something wrong in my oldclient.
if you know how solve this, asnwer here.

About client: Tibia 8.60
About Server: OTX 2.x
Changed value by sourcer(no bugs) and ollydbg for oldclient(debug)
 
Open debugger, go to 004104B4 for magic effects and change:
Code:
CALL 004F9A60
MOVZX EAX,AL
to:
Code:
CALL 004F9C00
MOVZX EAX,AX
For distance shoot go to 004108F6 and change like previous.
If you changed already in server then should be fine.
 
Open debugger, go to 004104B4 for magic effects and change:
Code:
CALL 004F9A60
MOVZX EAX,AL
to:
Code:
CALL 004F9C00
MOVZX EAX,AX
For distance shoot go to 004108F6 and change like previous.
If you changed already in server then should be fine.
I made this but when login give debug.
I will try again
 
Try change magic effects first, check if it works and then change distance shoot.
Show server side.
Should be changed:
C++:
msg->AddByte(type + 1);
to:
C++:
msg->AddWord(type + 1);

and ofc type of type variable everywhere.
 
Open debugger, go to 004104B4 for magic effects and change:
Code:
CALL 004F9A60
MOVZX EAX,AL
to:
Code:
CALL 004F9C00
MOVZX EAX,AX
For distance shoot go to 004108F6 and change like previous.
If you changed already in server then should be fine.

when i do this modification, i cant use elfbot, if u close elfbot in X, shift+12 don't open this again!
 
Elfbot is not prepared for that probably. Maybe you can modify elf too dunno.

with tibia 8,54 extended i dont have this erros with elfbot.
I have this error only with tibia 8.6 extended, u know if the problem is elfbot (8.6)?
 
Back
Top