*M* : yup it was originally based off coproxy i released 10 years ago.
XtremeX-CO : I'm still thinking about it, i don't want to see people making money off it. The bot check reply packets are in crack anyway. F2 03 but not F4 03's which is the sync packet.
Just ask if you want any packets, i'd rather just post them and help you make your own bot then release the source just now.
Code:
aid = Mid(str, 5, 4)
ta = txa(timeGetTime, aid)
end4 = crypt_name(name1)
x4 = random '0 - FFFF & FFFF
x5 = random
x6 = random
x7 = random
pack = MakeHex2("20 00 F4 03") & aid & MakeHex2(ta & x4 & x5 & x6 & x7) & end4
gsend (pack)
Code:
Function crypt_name(cname As String) As String
z1 = XOREncryption(Mid(cname, 1, 1), Chr(&H23))
z2 = XOREncryption(Mid(cname, 2, 1), Chr(&H98))
crypt_name = Chr("&H" & z1) & Chr("&H" & z2) & Chr(0) & Chr(0)
End Function