Hi,
I just started to learn VB and making a spammer for warrock.
But what is the best interval for it?
Can someone tell , so you wont get mute whill using the spammer.
Ty,
Guppie11
Lol. 1 , 5, 10. Depends how fast you want it.
Hmm... I think 100 is the best. Less will make your pc lag if you dont have a really really good one.
Thanks all ,
Spammer working fine and i aint getting Mutted :P
Can someone tell me how i save it as a .exe file?
Originally Posted by Guppie11
Thanks all ,
Spammer working fine and i aint getting Mutted :P
Can someone tell me how i save it as a .exe file?
1)Press Debug(the "play" button)
2)Close the program
3)Go to your Program folder, Document>Visual Studio 2008>Projects>NAMEHERE>bin>Debug> And there is your .exe
DAMN YOU HEJ! BEAT ME TO IT!! I NEARLY FINISHED TYPING IT UP1! *&*^#@)$^#$ YOU!
HA HA, As Far as lag
Use Application.DoEvents , Spammer should allow the user to select by the way
For WarRock, the best interval for spamming is around 1200 milliseconds (1.2 seconds).
Also, to avoid anti-mute, make additional lines for spamming.
You can do this by following the tutorial in my signature.
Edit:
For spamming, if you enter the same message 4 times in a row (I believe within 5 seconds of each other), you get muted.
As NextGen said, allow them to select Interval.
So probably in Form1_Load put in
Timer1.Interval = TextBox1.Text or something.
But WTF is Application.DoEvents... Please explain NextGen?
I set my interval to 1, but it is best to set it at around 25 too 100 for Warrock and with with multiple lines to spam.
Use Boolean and a Trigger instead of a timer, use my sleep snippet which uses application.DoEvents
If you call DoEvents , your application can handle all of the other events that are in Que, or will be added to Que, Essentially decreasing lag and allowing your PC / application to run that much smoother.
(all this in place of a timer that is)
Originally Posted by [G]host
I set my interval to 1, but it is best to set it at around 25 too 100 for Warrock and with with multiple lines to spam.
The WarRock chat won't allow you spam that fast, which could cause your spammer to malfunction and either screw up the text line OR spam the same thing enough times to get muted.
Around 1200 is the best interval.
Originally Posted by NextGen1
Use Boolean and a Trigger instead of a timer, use my sleep snippet which uses application.DoEvents
If you call DoEvents , your application can handle all of the other events that are in Que, or will be added to Que, Essentially decreasing lag and allowing your PC / application to run that much smoother.
(all this in place of a timer that is)
Great! Can you make a tutorial on using Do.Events and using Booleans and Triggers?
Add 2 buttons
Add 2 textboxes
View Code
' First thing we need to do (just below Public Class form1 is declare 2 switches, we want to make it public so we use
[php]
' Create the "Flag" , The On and Off Switches of the application
Public Switch As Boolean = True
[/php]
This switch will act like a light switch, if the switch is on, then the light is on, if the switch is off, then the light is off , for our purposes, if the switch is on, spam away, if it is off, do not spam.
Now we need to use my sleep code from the Snippets Vault
This will allow us to create a pause that won't stop the program from responding.
[php]
' Create a Sleep with DoEvents to keep the program running smoothly
Private Sub Sleep(ByVal PauseTime As Double)
Dim Tind As Int16
For Tind = 1 To PauseTime / 50
Threading.Thread.Sleep(50)
Application.DoEvents()
Next
End Sub
[/php]
Now we can create the spamming part.
You will create your own sub, So Private Sub Spam() / End Sub , This will be where we add what we want to happen if the switch is on
[php]
' If the switch is not off then
If Not Switch = False Then
' do as long as the switch is on
Do While Switch = True
' assuming textbox1,text is where the user adds the spamming content
SendKeys.Send(TextBox1.Text)
' assuming textbox2 is where the user enters the interval in MS
Sleep(TextBox2.Text)
' Do over and over as long as the switch is on
Loop
Else
' Do nothing
End If
[/php]
At this point, go to button 1 and double click it in the code, turn the switch on and send the code to Spam()
[php]
Switch = True
Spam()
[/php]
then goto button 2 click event code and add
[php]
Switch = off
[/php]
all you need to add is switch = off because it will only spam if the perquisites are met, if switch is not off and it will only loop if switch is in the on position .