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

Windows [7.6] Bictrainer on OT

shadowstalker09

New Member
Joined
Nov 11, 2008
Messages
2
Reaction score
0
Hey guys, so I just started up a server and it seems people are duping with bictrainer. The wallhack, however, doesn't work. Would anyone be able to tell me how I can fix this bictrainer cloning issue?
 
sure, in protocol76.cpp under

C++:
void Protocol76::parseThrow(NetworkMessage &msg)

find


C++:
    if(from_x == to_x && from_y == to_y && from_z == to_z)
        return;
and replace it with
C++:
    if(from_x == to_x && from_y == to_y && from_z == to_z)
        return;
    if (count == 0x00 && from_stack != 0xFF)
        return;

that should fix it :)
 
sure, in protocol76.cpp under

C++:
void Protocol76::parseThrow(NetworkMessage &msg)

find


C++:
    if(from_x == to_x && from_y == to_y && from_z == to_z)
        return;
and replace it with
C++:
    if(from_x == to_x && from_y == to_y && from_z == to_z)
        return;
    if (count == 0x00 && from_stack != 0xFF)
        return;

that should fix it :)
Hes for sure holding his OT online since 2012 :D
 
Back
Top