|
You last visited: Today at 02:08
Advertisement
Spambot Frage
Discussion on Spambot Frage within the GW Bots forum part of the Guild Wars category.
02/28/2009, 21:25
|
#1
|
elite*gold: 0
Join Date: Jan 2009
Posts: 25
Received Thanks: 0
|
Spambot Frage
Hey ich bin grad einen Spambot am Schreiben. Hier der bisherige Code
PHP Code:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
HotKeySet("{F8}", "_end")
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Spambot by plachta1234 v.0.0.1.4487", 354, 211, 193, 125)
$Button1 = GUICtrlCreateButton("Start!!!", 0, 0, 353, 129, 0)
GUICtrlSetFont(-1, 40, 400, 0, "MS Sans Serif")
$Input1 = GUICtrlCreateInput("Fenstername", 0, 152, 145, 21)
$Input2 = GUICtrlCreateInput("Spamnachricht", 0, 184, 145, 21)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
_start()
EndSwitch
WEnd
Func _start()
While 1
ControlSend ($Input1,"","",$Input2)
Sleep (100)
ControlSend ($Input1,"","","{Enter}")
Sleep (100)
WEnd
EndFunc ;==>_start
Func _end()
Exit
EndFunc
Nur will er keine Nachrichten schreiben?! Wo liegt denn bitte der Fehler
|
|
|
02/28/2009, 21:41
|
#2
|
elite*gold: 0
Join Date: Jun 2008
Posts: 520
Received Thanks: 494
|
im backgrund lässt er doch abundzu buchstanben aus und so versuchs doch einfach mal mit send das es nicht im background läuft
|
|
|
02/28/2009, 22:02
|
#3
|
elite*gold: 0
Join Date: Jan 2009
Posts: 25
Received Thanks: 0
|
PHP Code:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
HotKeySet("{F8}", "_end")
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Spambot by plachta1234 v.0.0.1.4487", 354, 211, 193, 125)
$Button1 = GUICtrlCreateButton("Start!!!", 0, 0, 353, 129, 0)
GUICtrlSetFont(-1, 40, 400, 0, "MS Sans Serif")
$Input2 = GUICtrlCreateInput("Spamnachricht", 0, 184, 145, 21)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
_start()
EndSwitch
WEnd
Func _start()
Sleep (5000)
While 1
Send ($Input2)
Sleep (100)
Send ("{Enter}")
Sleep (100)
WEnd
EndFunc ;==>_start
Func _end()
Exit
EndFunc ;==>_end
So sieht es aktuell aus. Nur wenn ich es teste spammt er "4".
|
|
|
02/28/2009, 22:15
|
#4
|
elite*gold: 0
Join Date: Apr 2008
Posts: 1,874
Received Thanks: 213
|
Du darfst nicht die $inputs schreiben, dann komm die control ID
du musst
Code:
Func _start()
Sleep (5000)
While 1
$read2 = GuiCtrlRead($input2)
Send ($read2)
Sleep (100)
Send ("{Enter}")
Sleep (100)
WEnd
EndFunc ;==>_start
es so machen
|
|
|
02/28/2009, 23:34
|
#5
|
elite*gold: 0
Join Date: Jan 2009
Posts: 25
Received Thanks: 0
|
Dankeschön das hat mir sehr geholfen nur bei dem ersten send musste ich $Input2 mit $read2 vertauschen. aktuell sieht es so aus:
PHP Code:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
HotKeySet("{F8}", "_end")
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Spambot by plachta1234 v.0.0.1.4487", 354, 211, 193, 125)
$Button1 = GUICtrlCreateButton("Start!!!", 0, 0, 353, 129, 0)
GUICtrlSetFont(-1, 40, 400, 0, "MS Sans Serif")
$Input2 = GUICtrlCreateInput("Spamnachricht", 0, 184, 145, 21)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
_start()
EndSwitch
WEnd
Func _start()
Sleep (4000)
While 1
$read2 = GuiCtrlRead($Input2)
Send ($read2)
Sleep (20)
Send ("{Enter}")
Sleep (20)
WEnd
EndFunc ;==>_start
Func _end()
Exit
EndFunc ;==>_end
Ich hab einfach mal rumprobiert und "$read1 = GuiCtrlRead($Input1)" dazugefügt wobei Input1 eine InputBox war wo man den Fenster namen einträgt. Das ControlSend sah so aus:
PHP Code:
ControlSend ($read1,"","",$read2)
Doch leider hat es nicht funktioniert.
|
|
|
02/28/2009, 23:49
|
#6
|
elite*gold: 0
Join Date: Apr 2008
Posts: 1,874
Received Thanks: 213
|
versuch mal "Guild Wars" (bzw. dein spiel) mit den "" einzutragen...
|
|
|
03/01/2009, 13:31
|
#7
|
elite*gold: 0
Join Date: Jan 2009
Posts: 25
Received Thanks: 0
|
Eigentlich könnte ich doch die KeySend func benutzen von der tt6 oder? nur bezieht die sich nicht nur auf GW?
|
|
|
03/01/2009, 14:48
|
#8
|
elite*gold: 0
Join Date: Apr 2008
Posts: 1,874
Received Thanks: 213
|
eigentlich schon
|
|
|
03/01/2009, 16:22
|
#9
|
elite*gold: 0
Join Date: Jan 2009
Posts: 25
Received Thanks: 0
|
Dankeschön für deine Hilfe als Danke hab ich dein YhnB mal 10 Lvl gepusht 
@NBA: ich kann dein YhnB weiter pushen  später helf ich dir vll ein bisschen so ca. 40 Lvl^^
|
|
|
03/01/2009, 18:56
|
#10
|
elite*gold: 0
Join Date: Apr 2008
Posts: 1,874
Received Thanks: 213
|
 thx
|
|
|
 |
Similar Threads
|
[SX] Spambot V4
11/10/2010 - WarRock Hacks, Bots, Cheats & Exploits - 10 Replies
Screenshot]
http://www.abload.de/img/spambotv4jhff.png
Functions]
-up to 4 textboxes
-3 types of antimute (for warrock)
-3 types of antidetect
-hotkeys
-adjustable speed
|
spambot frage
08/13/2010 - Diablo 2 - 3 Replies
hi ^^
mal ne kurze frage, hat jemand ne ahnung was die ganzen spambots benutzen? ^^ sind das scripts fürn d2nt oder irgendwas anderes?
falls es fürn d2nt ist würden mich die scripts mal interessieren ^^
(nein, ich will keine spambots laufen lassen ^^ geht mir mehr darum wie die sich in spiele einklinken)
lg ^^
|
My SpamBot
04/25/2010 - Off Topic - 1 Replies
Hi all, today i made a spam bot i know is noobish cuse it is my first one, could u say what u think about it and what i can add to it and how.:handsdown:
|
[Frage] AutoIt Spambot
04/19/2010 - AutoIt - 4 Replies
Hallöle,
soooo, das hab ich schonmal:
Ich will aber noch einen "Stop" Button einsetzten:
|
frage zu spambot
03/10/2010 - AutoIt - 3 Replies
thx habe eine antwort bekommen
|
All times are GMT +1. The time now is 02:08.
|
|