AutoSpammer Idea.

02/01/2008 23:37 Oddness#1
Okay. I don't think anyone has thought of this if so my apologies. Someone should make an autospammer that types out what you want to say, presses the "End" key, presses SpaceBar and then enter in a timely fashion only to restart every 10 or so enters.

An example would be:
(Underscore [ _ ] representing a space)


Hi, how are you?
Hi, how are you?_
Hi, how are you?__
Hi, how are you?___

This way people could spam in mark without the flashing text or the bothering of this:

Hi, how are you?
_Hi, how are you?
__Hi, how are you?
___Hi, how are you?

Anyway if someone decides to make this the formula would be
Text -> End -> Space -> Enter and restart after the 10th rotation

:D
02/02/2008 00:14 Some-Guy#2
Quote:
Originally Posted by Oddness View Post
Okay. I don't think anyone has thought of this if so my apologies. Someone should make an autospammer that types out what you want to say, presses the "End" key, presses SpaceBar and then enter in a timely fashion only to restart every 10 or so enters.
VB6 code example FUNCTION (NOT a complete program, just in case anyone spams me), if anyone is interessted in making this:

Code:
Public Function Spam(TextToSpam As String, Times As Integer)

dim a As Integer
a = 1

'You want either a pause to allow the user to switch to co
'Or to send alt+tab or Activate window here, otherwise you
'Will be spamming a vb6 form :D

For i = 1 to Times
   If a > 9 Then a = 1 'Restarts number of spaces
   
   For b = 1 to a
      TextToSpam = TextToSpam & " " 'Adds the spaces
   Next b
      

   Sendkeys "{Enter}" 'Sends key to activate chat entry on co
   Sendkeys TextToSpam 'Enters the message
   Sendkeys "{Enter}" 'Sends

   a = a + 1 'Adds 1 space for next time

   'Add sleep function here to pause execution by a second or so, API call is easy enough to find
   
Next i

End Function
Note: I've written this on the forum, not within the vb6 environment, so if there are any errors just lemme know.