exist one program to send u in boot jail? pls help!!
Any luck that you could put that in some kind of GUI for me? Would appreciate it.Quote:
None that I'm aware with right now that don't require some work (IE: my proxy framework would work just fine... you'd just need to have a button to spam bad packets or w/e to get yourself botjailed)
private void btnSend_Click(object sender, EventArgs e)
{
string[] bytes = packetSend.Text.Split(' ');
byte[] toSend = new byte[bytes.Length + 8];
for (int I = 0; I < bytes.Length; I++)
toSend[I] = byte.Parse(bytes[I]);
selectedChar.SendToServer(toSend);
}