Register for your free account! | Forgot your password?

Go Back   elitepvpers > Shooter > WarRock > WarRock Guides, Tutorials & Modifications
You last visited: Today at 06:19

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[How-To]SpamBot in AutoIt erstellen

Discussion on [How-To]SpamBot in AutoIt erstellen within the WarRock Guides, Tutorials & Modifications forum part of the WarRock category.

Reply
 
Old   #1
 
elite*gold: 20
Join Date: Feb 2010
Posts: 561
Received Thanks: 257
Post [How-To]SpamBot in AutoIt erstellen

Hallo Leute.
Hier zeige ich euch wie ihr einen SpamBot in AutoIT erstellt !

Was brauchen wir ??

-AutoIT
-SciTE Editor

So fangen wir mal an :

Ersteinmal brauchen wir die Includes und das HotkeySet :

Code:
HotKeySet("{F1}","_start")
HotKeySet("{F2}","_pause")
HotKeySet("{F3}","_end")

#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
Nun brauchen wir unser Design der Code sieht z.b. so aus :

Code:
$Form1 = GUICreate("SpamBot TuT", 226, 156, 192, 124)
$Input1 = GUICtrlCreateInput("Input1", 8, 32, 209, 21)
$Label1 = GUICtrlCreateLabel("Text der gesendet werden soll :", 8, 8, 152, 17)
$Label2 = GUICtrlCreateLabel("Start F1", 8, 64, 41, 17)
$Label3 = GUICtrlCreateLabel("Pause F2", 8, 96, 49, 17)
$Label4 = GUICtrlCreateLabel("Beenden F3", 8, 128, 62, 17)
GUISetState(@SW_SHOW)
Den habe ich mit dem Koda Form Designer erstellt !

Nun muss unser Hotkeyset natürlich Funktionen haben !
Das sieht bei unserem SpamBot so aus :

Code:
While 1
Sleep(2000)
WEnd



Func _start()
msgbox (0,"Started","Started")
While 2
	send (GuiCtrlread($Input1))
send ("{enter}")
sleep (4000)
WEnd
EndFunc


Func _pause()
	msgbox (0,"Pause","Paused")
While 3
Sleep(2000)
WEnd
ENdFunc

Func _end()
	msgbox (0,"Exit","Exiting...")
	sleep (1000)
Exit
EndFunc

So nun sind wird Fertig !

Unser gesamter Code sieht jetz so aus :

Code:
HotKeySet("{F1}","_start")
HotKeySet("{F2}","_pause")
HotKeySet("{F3}","_end")

$Form1 = GUICreate("SpamBot TuT", 226, 156, 192, 124)
$Input1 = GUICtrlCreateInput("Input1", 8, 32, 209, 21)
$Label1 = GUICtrlCreateLabel("Text der gesendet werden soll :", 8, 8, 152, 17)
$Label2 = GUICtrlCreateLabel("Start F1", 8, 64, 41, 17)
$Label3 = GUICtrlCreateLabel("Pause F2", 8, 96, 49, 17)
$Label4 = GUICtrlCreateLabel("Beenden F3", 8, 128, 62, 17)
GUISetState(@SW_SHOW)

While 1
	$nMsg = GUIGetMsg()
	Switch $nMsg
		Case $GUI_EVENT_CLOSE
			Exit

	EndSwitch
WEnd


While 1
Sleep(2000)
WEnd



Func _start()
msgbox (0,"Started","Started")
While 2
	send (GuiCtrlread($Input1))
send ("{enter}")
sleep (4000)
WEnd
EndFunc


Func _pause()
	msgbox (0,"Pause","Paused")
While 3
Sleep(2000)
WEnd
ENdFunc

Func _end()
	msgbox (0,"Exit","Exiting...")
	sleep (1000)
Exit
EndFunc
Mfg Reackon !

Have Fun ;D
CrAcKxX is offline  
Thanks
1 User
Old 12/28/2010, 11:04   #2
 
elite*gold: 0
Join Date: Mar 2009
Posts: 3,963
Received Thanks: 1,584
Quote:
Originally Posted by CrAcKxX View Post
Hallo Leute.
Hier zeige ich euch wie ihr einen SpamBot in AutoIT erstellt !

Was brauchen wir ??

-AutoIT
-SciTE Editor

So fangen wir mal an :

Ersteinmal brauchen wir die Includes und das HotkeySet :

Code:
HotKeySet("{F1}","_start")
HotKeySet("{F2}","_pause")
HotKeySet("{F3}","_end")

#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
Nun brauchen wir unser Design der Code sieht z.b. so aus :

Code:
$Form1 = GUICreate("SpamBot TuT", 226, 156, 192, 124)
$Input1 = GUICtrlCreateInput("Input1", 8, 32, 209, 21)
$Label1 = GUICtrlCreateLabel("Text der gesendet werden soll :", 8, 8, 152, 17)
$Label2 = GUICtrlCreateLabel("Start F1", 8, 64, 41, 17)
$Label3 = GUICtrlCreateLabel("Pause F2", 8, 96, 49, 17)
$Label4 = GUICtrlCreateLabel("Beenden F3", 8, 128, 62, 17)
GUISetState(@SW_SHOW)
Den habe ich mit dem Koda Form Designer erstellt !

Nun muss unser Hotkeyset natürlich Funktionen haben !
Das sieht bei unserem SpamBot so aus :

Code:
While 1
Sleep(2000)
WEnd



Func _start()
msgbox (0,"Started","Started")
While 2
	send (GuiCtrlread($Input1))
send ("{enter}")
sleep (4000)
WEnd
EndFunc


Func _pause()
	msgbox (0,"Pause","Paused")
While 3
Sleep(2000)
WEnd
ENdFunc

Func _end()
	msgbox (0,"Exit","Exiting...")
	sleep (1000)
Exit
EndFunc

So nun sind wird Fertig !

Unser gesamter Code sieht jetz so aus :

Code:
HotKeySet("{F1}","_start")
HotKeySet("{F2}","_pause")
HotKeySet("{F3}","_end")

$Form1 = GUICreate("SpamBot TuT", 226, 156, 192, 124)
$Input1 = GUICtrlCreateInput("Input1", 8, 32, 209, 21)
$Label1 = GUICtrlCreateLabel("Text der gesendet werden soll :", 8, 8, 152, 17)
$Label2 = GUICtrlCreateLabel("Start F1", 8, 64, 41, 17)
$Label3 = GUICtrlCreateLabel("Pause F2", 8, 96, 49, 17)
$Label4 = GUICtrlCreateLabel("Beenden F3", 8, 128, 62, 17)
GUISetState(@SW_SHOW)

While 1
	$nMsg = GUIGetMsg()
	Switch $nMsg
		Case $GUI_EVENT_CLOSE
			Exit

	EndSwitch
WEnd


While 1
Sleep(2000)
WEnd



Func _start()
msgbox (0,"Started","Started")
While 2
	send (GuiCtrlread($Input1))
send ("{enter}")
sleep (4000)
WEnd
EndFunc


Func _pause()
	msgbox (0,"Pause","Paused")
While 3
Sleep(2000)
WEnd
ENdFunc

Func _end()
	msgbox (0,"Exit","Exiting...")
	sleep (1000)
Exit
EndFunc
Mfg Reackon !

Have Fun ;D
Das ist wohl eher angebracht?


Quote:
Originally Posted by Walter Sobchak View Post
Ist kein Tutorial und in Releases passt es auch nicht rein.

Poste es wenn überhaupt dann im Sammelthread.

#closed

Quote:
Originally Posted by Walter Sobchak View Post
Bitte informiere dich nochmal darüber was ein Tutorial ist.
Zu sagen wo man welchen Code einfügt ist nicht wirklich ein Tutorial.
Versuch das ganze mal etwas ausführlicher zu umschreiben und zu erklären, damit die Leute wissen was der Code überhaupt macht.
Lg Algaten™
(Tut=Alles erklären denn woher sollen die wissen was was ist?)
Algaten™ is offline  
Old 12/29/2010, 17:32   #3
 
elite*gold: 20
Join Date: Feb 2010
Posts: 561
Received Thanks: 257
Da haste auch wieder recht ^^
Bitten closen !
CrAcKxX is offline  
Old 02/06/2011, 19:32   #4
 
elite*gold: 0
Join Date: Jul 2010
Posts: 336
Received Thanks: 222
ja das ist kein tut und die codes isnd eh falsch teilweise variablen nicht erklärt ...
LordFlorax is offline  
Reply


Similar Threads Similar Threads
[TUT] Autoit Spambot für ICQ,MSN usw.
02/07/2011 - AutoIt - 14 Replies
-
Spambot fehler (autoit)
09/01/2010 - AutoIt - 3 Replies
Hayy.. ich wollte gerade einen Spambot erstellen der wenn ich in einen anderen Fenster "F1" drücke das spammt was in der Edit box steht #include <GUIConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Spambot", 625, 365, 193, 125) $Edit1 = GUICtrlCreateEdit("", 24, 96, 577, 233) GUICtrlSetData(-1, "Edit1") $Label1 = GUICtrlCreateLabel("F1=Start Spam", 24, 40, 127, 28) GUICtrlSetFont(-1, 16, 400, 0, "MS Sans Serif")
AutoIT v.3 [TuT] 4Story SpamBoT ;)
07/18/2010 - 4Story - 17 Replies
Hallo Leute, Heute zeige ich euch wie ihr einen SPAMBOT erstellen könnt ganz einfach mit AutoIt v.3 :). Als erstes downloadet ihr AutoIt v.3 AutoIt - Meinungen - Download.CHIP.eu Dann installiet ihr es. Dann rechtsklick "neu" AutoIt v3 Script
[Frage] AutoIt Spambot
04/19/2010 - AutoIt - 4 Replies
Hallöle, soooo, das hab ich schonmal: Ich will aber noch einen "Stop" Button einsetzten:
autoit spambot verbesserungsvorschläge
02/06/2010 - Coding Releases - 2 Replies
Hallo, Habe vor ca einer woche mit autoit angefangen und hab nen spambot geschrieben würd gerne ein paar verbesserungsvorschläge haben ich kann ihn ja als .exe anhängen ich schreib mal den code rein: ;Mein Spambot ;------------------------------------------------ --------------- #include <ButtonConstants.au3>



All times are GMT +1. The time now is 06:19.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.