Support Forums

Full Version: [TuT] VB6 Message Box Spammer [TuT]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4
Another thing why are you trashing my thread yall are acting like I am trying to harm people stop 2 staring stuff, OK its been up for hours and its not closed so obviously its not hurting anything. Thank you infinity very much its a PRANK it does one thing gets laughs. I am a well known Hackforums member I have no need to harm people ok. Please stop 1 staring my thread and trashing it.
(03-26-2011, 06:03 PM)HakkuR* Wrote: [ -> ]Another thing why are you trashing my thread yall are acting like I am trying to harm people stop 2 staring stuff, OK its been up for hours and its not closed so obviously its not hurting anything. Thank you infinity very much its a PRANK it does one thing gets laughs. I am a well known Hackforums member I have no need to harm people ok. Please stop 1 staring my thread and trashing it.

Bro the 1 staring wasn't me but sorry to hear that. I'll stop since you asked nicely, (I think.)
I have been saying it's nothing malicious this whole time...
Thats a pretty nice tutorial right their! But can't this also be done in a .bat form? I think I remember doing something like this and using either "loop", "goto x", "repeat", ETC.
You also can use a loop:

For intTeller As Integer = 1 To 100
MessageBox.Show("hello")

Next
(03-26-2011, 07:21 PM)SeePlusPlus Wrote: [ -> ]I have been saying it's nothing malicious this whole time...

We actually got him to unlock it with just the right amount of luck lol. Fortunately he was generous enough to agree that it shouldn't be breaking the rules. You'd have to use this code as a snippet in another project to have a chance of using it as something malicious in my opinion. But just this code by itself won't do anything harmful.
(03-26-2011, 04:39 PM)SeePlusPlus Wrote: [ -> ]"this kind of talk"
This isn't anything? This is a prank, not a freakin virus.

This is a virus:

That indeed is one its also jailtime possible. lol
Why don't put it in a loop. Saves a lot of coding work.
(03-27-2011, 06:41 AM)dudesons123 Wrote: [ -> ]You also can use a loop:

For intTeller As Integer = 1 To 100
MessageBox.Show("hello")

Next

That will only spam 100 times. You could define say:

Code:
RepeatN As Integer

Then make an input box for a user specified integer of the number of times to spam.

Of you could use an endless loop to continue spamming with something like:

Code:
Do While x = x

            MsgBox("something")
            x = x + 1

        Loop

Think of it less about a spammer, and take my advice as more of a learning experience for loops.
Pages: 1 2 3 4