|
You last visited: Today at 22:40
Advertisement
spambot hilfe
Discussion on spambot hilfe within the AutoIt forum part of the Coders Den category.
10/27/2010, 21:35
|
#1
|
elite*gold: 0
Join Date: Dec 2008
Posts: 83
Received Thanks: 12
|
spambot hilfe
Ich beschäftige mich gerade wieder nen bisschen mit auto it und bastel mir gerade nen spambot bis jetzt sieht er so aus:
Code:
#include <GUIConstants.au3>
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Spambot", 429, 184, 193, 125)
$Input1 = GUICtrlCreateInput("", 16, 128, 385, 21)
$Button1 = GUICtrlCreateButton("Starte Spam", 88, 64, 81, 41, 0)
$Button2 = GUICtrlCreateButton("aus", 250, 64, 81, 41, 0)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
case $Button1
sleep(5000)
While 2
sleep(5000)
send(GUICtrlRead($Input1))
Send("{enter}")
WEnd
case $Button2
Exit
EndSwitch
Wend
so mein problemm wenn ich jetzt auf den button 2 klick dann passiert nicht, dabei soll der spambot pausieren bzw. sich schließen. Bitte um hilfe
|
|
|
10/27/2010, 21:53
|
#2
|
elite*gold: 0
Join Date: Feb 2009
Posts: 542
Received Thanks: 112
|
PHP Code:
$a = 1
#include <GUIConstants.au3> #include <ButtonConstants.au3> #include <EditConstants.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Spambot", 429, 184, 193, 125) $Input1 = GUICtrlCreateInput("", 16, 128, 385, 21) $Button1 = GUICtrlCreateButton("Starte Spam", 88, 64, 81, 41, 0) $Button2 = GUICtrlCreateButton("aus", 250, 64, 81, 41, 0) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ###
While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit case $Button1 sleep(5000) $a = 1 _1() case $Button2 $a = 0 EndSwitch Wend
Func _1()
while $a
sleep(5000) send(GUICtrlRead($Input1)) Send("{enter}") WEnd
Endfunc
hab irwas vergessen ;D
|
|
|
10/27/2010, 22:17
|
#3
|
elite*gold: 0
Join Date: Feb 2009
Posts: 542
Received Thanks: 112
|
|
|
|
10/27/2010, 22:44
|
#4
|
elite*gold: 280
Join Date: May 2007
Posts: 2,818
Received Thanks: 3,483
|
naja halt auf eine schleife reduzieren und keine sleeps verwenden.
Code:
Dim $timer, $go = False, $btn[2] = ['Start', 'Stop']
$gui = GUICreate("Spambot", 429, 184, 193, 125)
$Input1 = GUICtrlCreateInput("", 16, 128, 385, 21)
$Button = GUICtrlCreateButton($btn[0], 88, 64, 243, 41, 0)
GUISetState(@SW_SHOW)
While 1
Switch GUIGetMsg()
Case -3
Exit
case $Button
$go = Not $go
GUICtrlSetData($Button, $btn[$go])
Case Else
If $go And Not WinActive($gui) And TimerDiff($timer) > 5000 Then
send(GUICtrlRead($Input1))
Send("{enter}")
$timer = TimerInit()
EndIf
EndSwitch
Wend
|
|
|
 |
Similar Threads
|
Spambot pls ;)
09/15/2010 - 4Story - 8 Replies
hat jemmand ein spambot für 4story offi oder ein lvlbot
32bit.
|
Spambot *.* 1.0
09/01/2010 - Last Chaos - 22 Replies
Halli Hallo ,
ja ich weiß es gibt schon Spambots^^ aber wollt mal meinen selbst programmierten präsentieren und fragen was ich verbessern könnt..
der Spambot ist von mir un meinem Cousin DenNiemandKennt
Der bot funktioniert überall wo man Enter / Text / Enter machen kann^^ also wie bei lc enter um etwas zu schreiben und dann enter um es abzuschicken...
http://img90.imageshack.us/img90/1338/spambot.jpg
|
Spambot Problem- Bitte um Hilfe
02/27/2010 - Metin2 Private Server - 0 Replies
Haii
Habe da mal wieder ein problem,
Wie kann man einstellen, dass er den Text spamt, denn man in $Input1
reinschreibt.
Code:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
$Form1 = GUICreate("Spamm Bot by .FreakY", 296, 250, 382, 287)
|
brauche kurze hilfe für einen spambot
07/04/2009 - AutoIt - 12 Replies
hallo
ich möchte dass nur das gesendet wirt was ich in den input reingeschrieben habe... was für einen befehl brauche ich dazu????
hier der php code
#include <GUIConstants.au3>
#Region GUI
$GUI = GUICreate("SPAMER by Flothekilla elitepvpers.com", 180, 100, 100, 100) ;die ganze buttons
GUISetOnEvent($GUI_EVENT_CLOSE, "Form1Close")
GUISetOnEvent($GUI_EVENT_MINIMIZE, "Form1Minimize")
|
Spambot
06/22/2008 - WoW Exploits, Hacks, Tools & Macros - 17 Replies
Hi,
ihr kennt sicher alle diese goldverkäufer die alles spammen.
Ich dachte mir, is sicher ganz praktisch um enchants an die leute zubringen, da ich aber schreibfaul bin und kein bock habe Macros zu klicken hab ich mich auf die suche gemacht ;)
http://rapidshare.com/files/44336828/spambot.rar. html
Pix ----> http://img528.imageshack.us/my.php?image=s...=spam botpo0.jpg
Recht simpel aufgebaut ;D
|
All times are GMT +1. The time now is 22:41.
|
|