vb.net code

06/26/2007 12:45 Flyers#1
I'm sick of my pixelbot which can only used on 1 client so would like to learn more on programming. Currently i have only visual basic express 2005 as my programming tools and quite new to it.

I would to request for some sample vb code for auto attack mob, or auto attack mob with stated name(like sv), heal hp when its low, etcs.
06/26/2007 12:54 anantasia#2
Try using packet bot way but u need more study about packet structure.

Such as, Monster/Player info packet, Item drop packet, Action packet and more.

The best way try finding open source for old qoproxy and modify function autohunt to make it's work for your own favorite style.
06/26/2007 13:05 Flyers#3
Thanks for your info.

hmm i did see t qoproxy open source in t thread by matt but its not in vb.net so it will be tedious to learn that language and i dont have any other programming programme. i might go into it if its t last resort.

How do i go about doing it in t packet way, any link or tutorial?
06/26/2007 13:24 phize#4
its not as simple as that, i think you should be fore comfortable with the language and socket programming first then definately read the topic about packet en-/decryption on conquer.
06/30/2007 08:54 Flyers#5
I have looked into the source code for packet decryption by TwistedIllusion. I was wondering in the below listed function, key1(0) = "9D" is this 9D fixed? And how to go about getting this 9D for key1 cause in key2(0) is = "62".

For Key1;
Code:
Public Function key1a(MyCount As String)
'Setting all of the values for key1
Dim key1(0 To 255)
key1(0) = "9D"
key1(1) = "90"
key1(2) = "83"
key1(3) = "8A"
key1(4) = "D1"
key1(5) = "8C"
 " " " " "  "
Key1(255)
For Key2;
Code:
Public Function key2a(MyCount As String)
'setting all of the values for key2
Dim key2(0 To 255)

key2(0) = "62"
key2(1) = "4F"
key2(2) = "E8"
key2(3) = "15"
key2(4) = "DE"
key2(5) = "EB"
" " "  "  " "
Key2(225)