Results 1 to 1 of 1
  1. #1
    Zehrg
    Zehrg is offline
    Guest
    Join Date
    2014 Apr
    Posts
    1
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0

    Post A better spambot than the others with AutoIt

    Hello there,


    This is my first post and I try to share something "usefully" things.


    I made a spambot with Au3, not like the others with only one text, because this spambot sends 2 texts and you can control the "ms", the time between the 2 textes and you can only send one text.

    You start him, enter your text and the "ms" and then you have 5 seconds until it starts (ofc as admin). you can close it with F3 and that is it.


    Spambot (by Zehrg).rar

    I hope you enjoy,
    Zehrg


    Code:
    #RequireAdmin
    
    HotKeySet( "{F3}", "terminate")
    Func Terminate()
       Exit 0
    EndFunc
    
    MsgBox( 4096, "Hinweis!", "Falls nur ein Text gesendet werden soll, nur eine Box ausfüllen! - '1000ms' entspricht 1 Sekunde.")
    
    $I1 = InputBox( "Text 1, Spambot by Zehrg", "Bitte Text 1 eingeben")
    $I2 = InputBox( "Text 2, Spambot by Zehrg", "Bitte Text 2 eingeben")
    $ms = InputBox( "ms", "Zeit zwischen dem Senden der beiden Texte. -Nur Zahlen!")
    
    MsgBox( 4096, "Hinweis!", "Nach Bestätigung 5 Sekunden Zeit bis zum Senden")
    
    Sleep(5000)
    
    ToolTip( "F3 zum schließen", 0, 0, "By Zehrg", 1, 1)
    
    
    while 1
       Send($I1)
       Send( "{ENTER}")
       Sleep($ms)
       Send($I2)
       Send( "{ENTER}")
       Sleep($ms)
    WEnd

Similar Threads

  1. [Help]AutoIT
    By marcelo380 in forum Perfect World
    Replies: 0
    Last Post: 2013-12-24, 11:13 AM
  2. AutoIT bot for RO2
    By vampire296 in forum AutoIt
    Replies: 9
    Last Post: 2013-09-26, 05:10 AM
  3. [Help]Autoit with xtrap
    By snOw. in forum Aika Online
    Replies: 4
    Last Post: 2012-01-09, 02:33 PM
  4. [Help] Last Chaos AutoIt Bot
    By pohkak in forum Last Chaos
    Replies: 2
    Last Post: 2011-07-05, 07:09 PM
  5. [Request] JD vengeance autoit bot
    By Tsouliang in forum Jade Dynasty
    Replies: 0
    Last Post: 2011-06-03, 07:47 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •