• Welcome to Valhalla Legends Archive.
 

Multi form bot

Started by Tazo, March 21, 2004, 03:28 PM

Previous topic - Next topic

Tazo

Quote from: Archangel on March 24, 2004, 02:19 PM
ex:
colChild(index).Winsock1.sendData
could u do like colChild(me.index).sckbnet.senddata

MyndFyre

Quote from: Adron on March 24, 2004, 02:09 PM
Quote from: Myndfyre on March 24, 2004, 02:07 PM
Quote from: BaDDBLooD on March 24, 2004, 08:21 AM
that's good, but you forgot something more important for a mass bot =)

sending text to a certain MDI Form

Not necessarily; if each Form handles its own connection, then you don't have to worry about sending the appropriate text to the appropriate form.

But if you want to send a lot of spam to all the connections at once you need to be able to go through the MDI forms and send text to them.

eww, is this person trying to make a spam bot?  :-/
QuoteEvery generation of humans believed it had all the answers it needed, except for a few mysteries they assumed would be solved at any moment. And they all believed their ancestors were simplistic and deluded. What are the odds that you are the first generation of humans who will understand reality?

After 3 years, it's on the horizon.  The new JinxBot, and BN#, the managed Battle.net Client library.

Quote from: chyea on January 16, 2009, 05:05 PM
You've just located global warming.

Archangel

lol a SpamBot eww!!!, you should make something more creative :o
I'm not an Addict.

Tazo

Quote from: Archangel on March 24, 2004, 03:07 PM
lol a SpamBot eww!!!, you should make something more creative :o
what do you mean, creative.. by the way, my bot wont connect, but all the packets and everything are right (it connects, then like sits or something lol)

MyndFyre

Quote from: Archangel on March 24, 2004, 03:07 PM
lol a SpamBot eww!!!, you should make something more creative :o

Me, or the person who is trying to make the multi-form bot?

It helps if you use the "Reply with Quote" feature, so that we can know what you're talking about
QuoteEvery generation of humans believed it had all the answers it needed, except for a few mysteries they assumed would be solved at any moment. And they all believed their ancestors were simplistic and deluded. What are the odds that you are the first generation of humans who will understand reality?

After 3 years, it's on the horizon.  The new JinxBot, and BN#, the managed Battle.net Client library.

Quote from: chyea on January 16, 2009, 05:05 PM
You've just located global warming.

Archangel

#20
Quote from: Myndfyre on March 24, 2004, 03:08 PM
Quote from: Archangel on March 24, 2004, 03:07 PM
lol a SpamBot eww!!!, you should make something more creative :o

Me, or the person who is trying to make the multi-form bot?

It helps if you use the "Reply with Quote" feature, so that we can know what you're talking about

ohh sorry i wasnt talking about you i was talking about
the person who is trying to make the multi-form bot.
I'm not an Addict.

Archangel

Quote from: laurion on March 24, 2004, 03:08 PM
Quote from: Archangel on March 24, 2004, 03:07 PM
lol a SpamBot eww!!!, you should make something more creative :o
what do you mean, creative.. by the way, my bot wont connect, but all the packets and everything are right (it connects, then like sits or something lol)

All declares from a MDI Child have to be Private.
Private - (My conclution)It saves all the data in Ram for each MDI Child.
I'm not an Addict.

BaDDBLooD

btw, i have a program that makes 12 difference connection's, and i have it like connection(3)

how would i go about, telling each connection number to send text to a certain form's text box?

because i was making a quick thing for one of my friends, that allows him to be on 3 aol screennames, but it just says Name#1 (blah)

but i want it to go to 3 seperate mdi children!
There are only two kinds of people who are really fascinating: people who know absolutely everything, and people who know absolutely nothing.

Grok

Quote from: Archangel on March 24, 2004, 03:07 PM
lol a SpamBot eww!!!, you should make something more creative :o

Nothing wrong with making a spambot.  The work that goes into planning, designing, coding, testing, debugging a spambot teaches new programming patterns that may not be in a single-bot design.

I think you meant to say you opposed him using a spambot.  But even that is OK on occasion.

Archangel

#24
Quote from: BaDDBLooD on March 24, 2004, 06:32 PM
btw, i have a program that makes 12 difference connection's, and i have it like connection(3)

how would i go about, telling each connection number to send text to a certain form's text box?

because i was making a quick thing for one of my friends, that allows him to be on 3 aol screennames, but it just says Name#1 (blah)

but i want it to go to 3 seperate mdi children!

Didn't i said that already?

Quote
I think you meant to say you opposed him using a spambot.  But even that is OK on occasion.

Yes i mean that.

[EDIT] Answer to Grok^^
I'm not an Addict.

Tazo

Quote
my bot wont connect, but all the packets and everything are right (it connects, then like sits or something lol)
Any help please?

effect

Maybe if u tell us some circumstances , i dont believe anyone here can read code telepathically.
Quote from: Mangix on March 22, 2005, 03:03 AM
i am an expert Stealthbot VBScript. Recognize Bitch.

Archangel

Quote from: NuLL on March 24, 2004, 07:54 PM
Maybe if u tell us some circumstances , i dont believe anyone here can read code telepathically.
I agree with him. Maybe is the way you using the PacketBuffer.
I'm not an Addict.

Tazo

Ok. It sends 0x50 (Below) And then it disconnects [or sits?]

Public Sub Packet50()
Product = "PX2D"
   With PBuffer
       .InsertDWORD &H0
       .InsertNonNTString "68XI" & Product
       .InsertDWORD &HA
       .InsertDWORD &H0
       .InsertDWORD &H0
       .InsertDWORD &H480
       .InsertDWORD &H1033
       .InsertDWORD &H1033
       .InsertNTString "USA"
       .InsertNTString "United States"
       .SendPacket &H50
   End With
AddText vbGrey, "0x50 Sent"
End Sub

Packet Buffer:

Public Function SendPacket(PacketID As Byte)
   If frmMain.sckbnet.State <> sckConnected Then: Exit Function
       frmMain.sckbnet.SendData Chr(&HFF) & Chr(PacketID) & MakeWORD(Len(Buffer) + 4) & Buffer
   Clear
End Function

The mdi form is MDIBot and the child is frmMain

Archangel

Quote
frmMain.sckbnet.SendData Chr(&HFF) & Chr(PacketID) & MakeWORD(Len(Buffer) + 4) & Buffer

I think thats your problem.
I'm not an Addict.

|