This dumps different incoming packets when they're received on RS. You should use this to dump your stuff quickly; because RS will probably update soon.
[Only registered and activated users can see links. ]
Packets:
- RunScript
- Config (big/small)
- ButtonGraphics (big/small)
- SendItems
- SendInterface
- AccessMask
might add some more if I feel like
Credits
- Jagex (client)
- Richard (deob)
- Me (took 15 mins of my time to make it dump packets)
This is made for hotyutes 601/602 grizzly framework; but you can use it for other things aswell.
You should use this runscript:
Code:
public static void scriptRequest(Player p, String[] requests, int... requestIDs) {
OutStream out = new OutStream(1024);
out.sendPacket_VARSHORT(36);
out.addShort((short) 0);
for (String request : requests)
out.addString(request);
for (int requestID : requestIDs)
out.addInt(requestID);
out.shortPacketClose();
out.write(p.getIdentity().getSocket());
}