Valhalla Legends Forums Archive | Battle.net Bot Development | VB6 0x0E Packet Help

AuthorMessageTime
TriCk
[VB6]

Ok heres my problem,
I've tried about 2 different ways of sending the packet &HE, i'm trying to get speed, like those floods that u see that send 5 lines, i'd like to get that working with my ops bot, to integrate it into my bot if people want to ban people with different ways of sending the packets...

Thanks

Edit:

I've already tried these:

[code]
Buffer2 = Buffer2 & Chr(&HFF) & Chr(PacketID) & MakeWORD(Len(Buffer) + 4) & Buffer
If Form1.sck1(Index).State = sckConnected Then Form1.sck1(Index).SendData Buffer2
Clear2
Clear
[/code]
Buffer2 is just another string, and Clear2 clears buffer2
[code]
If Form1.sck1(Index).State = sckConnected Then Form1.sck1(Index).SendData Chr(&HFF) & Chr(PacketID) & MakeWORD(Len(Buffer) + 4) & Buffer
[/code]
June 23, 2004, 11:06 PM
Spht
[quote author=TriCk link=board=17;threadid=7411;start=0#msg66891 date=1088031992]
[VB6]

Ok heres my problem,
I've tried about 2 different ways of sending the packet &HE, i'm trying to get speed, like those floods that u see that send 5 lines, i'd like to get that working with my ops bot, to integrate it into my bot if people want to ban people with different ways of sending the packets...

Thanks

Edit:

I've already tried these:

[code]
Buffer2 = Buffer2 & Chr(&HFF) & Chr(PacketID) & MakeWORD(Len(Buffer) + 4) & Buffer
If Form1.sck1(Index).State = sckConnected Then Form1.sck1(Index).SendData Buffer2
Clear2
Clear
[/code]
Buffer2 is just another string, and Clear2 clears buffer2
[code]
If Form1.sck1(Index).State = sckConnected Then Form1.sck1(Index).SendData Chr(&HFF) & Chr(PacketID) & MakeWORD(Len(Buffer) + 4) & Buffer
[/code]
[/quote]

Are you saying that your send chat doesn't work? If so, does Buffer (the chat message) contain a null terminator? If not, add it. Messages are typically null terminated.
June 23, 2004, 11:30 PM
TriCk
Have u seen those floods come in spam 5 lines and leave?
I was wondering how that was done so quickly......
What way was the packet sent
June 23, 2004, 11:35 PM
R.a.B.B.i.T
With no delay.
Those packets are sent all at once, and usually don't go through other subs. I've seen a few flood sources that insert the header, length, and data, then clear the buffer all in 1 foul swoop. Also, floodbots don't use queues.
June 24, 2004, 2:16 AM
TriCk
Could someone possibly help with some example code?
June 24, 2004, 3:44 AM
Stealth
[quote author=TriCk link=board=17;threadid=7411;start=0#msg66956 date=1088048670]
Could someone possibly help with some example code?
[/quote]

You've asked this in two threads now. Have you tried perhaps learning VB before spamming the forums with code requests?
June 24, 2004, 4:10 AM
TriCk
Stealth, I do, i just want to know if people have faster ways of sending that packet, and as for the other one, i've done trial and error atleast 20 times, with no good results....

These forums are the last thing i come to if i have a problem.
June 24, 2004, 4:13 AM
KkBlazekK
Don't most Spam bots use local hashes to save time with connection?
June 24, 2004, 4:55 AM
UserLoser.
[quote author=TriCk link=board=17;threadid=7411;start=0#msg66962 date=1088050381]
... i just want to know if people have faster ways of sending that packet, ...
[/quote]

Disable use of nagel algorithm (see setsockopt) and don't use VB
June 24, 2004, 5:59 AM
LoRd
[quote author=UserLoser. link=board=17;threadid=7411;start=0#msg66974 date=1088056785]
[quote author=TriCk link=board=17;threadid=7411;start=0#msg66962 date=1088050381]
... i just want to know if people have faster ways of sending that packet, ...
[/quote]

Disable use of nagel algorithm (see setsockopt) and don't use VB
[/quote]

But VB is so elite :(
June 24, 2004, 7:57 AM
LordNevar
[quote author=LoRd[nK] link=board=17;threadid=7411;start=0#msg66976 date=1088063835]
[quote author=UserLoser. link=board=17;threadid=7411;start=0#msg66974 date=1088056785]
[quote author=TriCk link=board=17;threadid=7411;start=0#msg66962 date=1088050381]
... i just want to know if people have faster ways of sending that packet, ...
[/quote]

Disable use of nagel algorithm (see setsockopt) and don't use VB
[/quote]

But VB is so elite :(
[/quote]

HAHA..... I can die happy now lol!
June 24, 2004, 1:12 PM

Search