Zerk hack
PHP Code:
;Agent
Client->Server Opcode(0x70a7)
if(_pck.Opcode == 0x70a7) {
if(_pck.ReadUInt8() != 1) {
/*
Here is where you set what you want to do with the "injectors"
ETC:
DISCONNECT, CONTINUE, BAN.
*/
}
}
CharName injection
PHP Code:
;Register a boolean at the top of ur context
bool CharName_sent = false;
;Agent
Client->Server Opcode(0x7001)
if(_pck.Opcode == 0x7001 && (!this.CharName_sent)) {
// Register
this.CharName_sent = true;
// CharName
this.charname = _pck.ReadAscii();
}
Avatar injection
PHP Code:
;Agent
Client->Server Opcode(0x34A9)
if(_pck.Opcode == 0x34A9) {
// Avatar blue name
string avatar_blue = _pck.ReadAscii().ToLower();
if(!avatar_blue.Contains("avatar")) {
/*
Here is where you set what you want to do with the "injectors"
ETC:
DISCONNECT, CONTINUE, BAN.
*/
}
}
Region injection
PHP Code:
;Agent
Client->Server Opcode(0x7021)
Change it from "Client->Server" to "Server->Client"
Server-Client Opcode(0xB021)
can anyone explain me how to use this fixes ?