Quote:
Originally Posted by maplemsmesos
Are you aware that a CRC bypass is also needed, since MapleRoyals has a custom integrity check?
So even if you didn’t get banned until level 160, sooner or later you will, especially if you didn’t bypass the check.
Everything is logged on their side.
I’m only saying this for your sake, so there won’t be any misunderstandings and you won’t convince yourself that something here isn’t being detected.
|
You can’t use packet based pet vac without knowing the 4 byte crc…..
Ofcourse I know it
struct PickupPacket {
uint16_t opcode; // 2 bytes - 0xCA
uint8_t mode; // 1 byte
uint32_t tick; // 4 bytes - GetTickCount()
int16_t playerX; // 2 bytes
int16_t playerY; // 2 bytes
uint32_t objectID; // 4 bytes - drop's OID
uint32_t dwCRC; // 4 bytes - character state hash
}; // 19 bytes total