[AutoIT] Sending Packets Help

08/06/2011 01:00 kevin_owner#31
I don't know what's wrong with your first stream but in the walk packet there is a flag. The #2 is 1 for ground walking and 0 for skywalking which changes the sturcture of the packet a bit. I can't find this byte in the packet your program received.
08/06/2011 02:06 DeXeee#32
Quote:
Originally Posted by kevin_owner View Post
I don't know what's wrong with your first stream but in the walk packet there is a flag. The #2 is 1 for ground walking and 0 for skywalking which changes the sturcture of the packet a bit. I can't find this byte in the packet your program received.
Maybe i pick up a wrong packet ?
08/06/2011 02:16 sarkoplata#33
Quote:
Originally Posted by DeXeee View Post
Maybe i pick up a wrong packet ?
fayck autoshit :pimp:
autoshit + packetbased = ultra double failure bullshit.
I would try to start vb.net or c# asap if i were you.
08/06/2011 02:36 DeXeee#34
Quote:
Originally Posted by sarkoplata View Post
fayck autoshit :pimp:
autoshit + packetbased = ultra double failure bullshit.
I would try to start vb.net or c# asap if i were you.
I dont even know the AutoIT, vb.net is too difficult for me :o

About the packet, i think that i get a wrong copied :S I will try to compare now ...
08/06/2011 02:49 sarkoplata#35
Quote:
Originally Posted by DeXeee View Post
I dont even know the AutoIT, vb.net is too difficult for me :o

About the packet, i think that i get a wrong copied :S I will try to compare now ...
vb.net should not be too difficult for you.. if really it is, then i advice you to start with basics..
08/06/2011 02:51 ÑõÑ_Ŝŧóp#36
Quote:
Originally Posted by DeXeee View Post
I dont even know the AutoIT, vb.net is too difficult for me :o

About the packet, i think that i get a wrong copied :S I will try to compare now ...
maybe vb.net is a lil bit hard
but you can try c# its not hard at all ...
08/06/2011 02:56 DeXeee#37
Guys i find matches 11 / 11 , here it is :

edx Packet :

Code:
[S -> C][B021]
#1 C6371500                                  
#2 01                                             
#3 A9 60                                         
#4 31 00                                        
#5 D7 FF                                       
#6 F0 00                                         
#7 01                                           
#8 A9 60                                           
#9 7B 00                                           
#10 49 D5 25 C2                                 
#11 9C 0D
AutoIT Packet :
Code:
0x180021B00200(#1)C6371500(#2)01(#3)A960(#4)3100(#5)D7FF(#6)F000(#7)01(#8)A960(#9)7B00(#10)49D525C2(#11)9C0D
This code is always the same
Code:
"0x180021B00200"
I will try to make some attacking bot now :)
08/06/2011 03:19 ZeraPain#38
Quote:
Originally Posted by sarkoplata View Post
fayck autoshit :pimp:
autoshit + packetbased = ultra double failure bullshit.
I would try to start vb.net or c# asap if i were you.
vb.net is not really better than autoit ;-)

Code:
"0x180021B00200"
it's the header of the packet, containing size, opcode and security

Quote:
Originally Posted by DeXeee View Post
I will try to make some attacking bot now :)
AutoIT don't really suits to this task.

i made a packedbased autoit bot some months ago and i can just say that it's hard because you can't really do it the way you want.
you have to work with other methods than a packetreader or otherwise autoit will be too slow to interpret/send the packets.

i recommend you to start learning C# or continue playing a little bit with packets to get a better understanding before trying to create a bot.
08/06/2011 03:40 sarkoplata#39
Quote:
Originally Posted by ÑõÑ_Ŝŧóp View Post
maybe vb.net is a lil bit hard
but you can try c# its not hard at all ...
both depends on .net .. and c# is known as more difficult then vb. i agree that , syntax is different only , not much , but anyway vb.net has advantages for a beginner or if you are lazy like me . :D ( i can still both write and read csharp)
08/06/2011 12:21 kevin_owner#40
I would advice to take C# why? cause the syntax is more common so you can switch easier to another language like java or C++ plus it is better supported by microsoft since it's their own language.
08/06/2011 12:43 Schickl#41
Quote:
Originally Posted by sarkoplata View Post
both depends on .net .. and c# is known as more difficult then vb. i agree that , syntax is different only , not much , but anyway vb.net has advantages for a beginner or if you are lazy like me . :D ( i can still both write and read csharp)
imo vb is a lot more confusing than C,C++,C#,Java (C, C++ may be a little hard but still less confusing than vb)


Maybe its only me, but I just can't write programs in a Language with such a "messed up" Syntax

So switching to C# or to Java wouldn't be wrong

It's just what i think^^
08/07/2011 03:28 DeXeee#42
Hey guys ..

I was studied some movement packets

Code:
[C -> S][7021]
01
#1 83 5C
#2 4D 00
#3 3F 02
#4 10 04
#1 = Zone

#2 = X Cord

#3 = ?

#4 = Y Cord


What exactly is #3 ? Is that Z Cord or something like that ? :)
08/07/2011 03:43 ÑõÑ_Ŝŧóp#43
Quote:
Originally Posted by DeXeee View Post
Hey guys ..

I was studied some movement packets

Code:
[C -> S][7021]
01
#1 83 5C
#2 4D 00
#3 3F 02
#4 10 04
#1 = Zone

#2 = X Cord

#3 = ?

#4 = Y Cord


What exactly is #3 ? Is that Z Cord or something like that ? :)
well, not exactly
[C -> S][7021]
01 // dunno but always same
83 // x sec
5C // y sec
4D 00 // x pos
3F 02 // z pos
10 04 // y pos

and to get coords use :
x = (xsec - 135) * 192 + (xpos / 10)
y = (ysec - 92) * 192 + (ypos / 10)
08/07/2011 14:18 kevin_owner#44
@nonstop the first byte is a flag for skywalk and ground walk.

it's 1 if you click on the ground but if you click in the sky it'll be 0 and the structure will be a bit different.

and what DeXee said about the first value Zone that is correct in some causes you'll need the region and in other once the x and y section.
08/18/2011 14:21 Little Hole#45
Want Help :-s


i Get The Packet of walk as:

09 00 21 70 62 18 01 4C 6A 0E 06 01 00 BE 02

09 00 >> Length
21 70 >> Opcode
//with invese bytes Sure :D
put i can't so on !!! i got this packet from SmartSnif!!
is this the real packet that nuconnector send to server or what???

and if this the packet i don't need answer for the last question, and then i want to know
how i calculate the the x and y which i want the char to go ?


above i saw

4D 00 // x pos
3F 02 // z pos
10 04 // y pos

what the decimal value of x ,y and z !!!

Thanks for reading