Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Guild Wars > GW Bots
You last visited: Today at 21:44

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

Advertisement



Wie bot erstellen ? ^^

Discussion on Wie bot erstellen ? ^^ within the GW Bots forum part of the Guild Wars category.

Reply
 
Old 04/01/2009, 21:26   #16
 
elite*gold: 0
Join Date: Nov 2008
Posts: 576
Received Thanks: 191
lol sehe da überhaupt kein problem drinn.. in c genauso wenig. kp was du gemacht hast aber es funktioniert!
__wadim is offline  
Old 04/01/2009, 21:35   #17


 
buFFy!'s Avatar
 
elite*gold: 1826
Join Date: Mar 2009
Posts: 4,310
Received Thanks: 6,287
Naja..mit C sehe ich da auch kein Problem drin, aber mit AutoIT.
Ich denke ich gehe da auch einfach falsch ran.. zu wenig EXP mit AutoIT..
Hab mal eben nen alten Versuch rausgekramt.
Code:
#include <Misc.au3>
$dll = DllOpen("user32.dll")
$File = FileOpen("Log.txt", 1)
;========================
;-_IsPressed Table
;========================
Const $0 = 30
Const $1 = 31
Const $2 = 32
Const $3 = 33
Const $4 = 34
Const $5 = 35
Const $6 = 36
Const $7 = 37
Const $8 = 38
Const $9 = 39
Const $A = 41
Const $B = 42
Const $C = 43
Const $D = 44
Const $E = 45
Const $F = 46
Const $G = 47
Const $H = 48
Const $I = 49
Const $J = "4A"
Const $K = "4B"
Const $L = "4C"
Const $M = "4D"
Const $N = "4E"
Const $O = "4F"
Const $P = 50
Const $Q = 51
Const $R = 52
Const $S = 53
Const $T = 54
Const $U = 55
Const $V = 56
Const $W = 57
Const $X = 58
Const $Y = 59
Const $Z = "5A"

While True
	If _IsPressed($0, $dll) Then
		FileWriteLine($File, "0")
		Sleep(150)
	EndIf
	If _IsPressed($1, $dll) Then
		FileWriteLine($File, "1")
		Sleep(150)
	EndIf
	If _IsPressed($2, $dll) Then
		FileWriteLine($File, "2")
		Sleep(150)
	EndIf
	If _IsPressed($3, $dll) Then
		FileWriteLine($File, "3")
		Sleep(150)
	EndIf
	If _IsPressed($4, $dll) Then
		FileWriteLine($File, "4")
		Sleep(150)
	EndIf
	If _IsPressed($5, $dll) Then
		FileWriteLine($File, "5")
		Sleep(150)
	EndIf
	If _IsPressed($6, $dll) Then
		FileWriteLine($File, "6")
		Sleep(150)
	EndIf
	If _IsPressed($7, $dll) Then
		FileWriteLine($File, "7")
		Sleep(150)
	EndIf
	If _IsPressed($8, $dll) Then
		FileWriteLine($File, "8")
		Sleep(150)
	EndIf
	If _IsPressed($9, $dll) Then
		FileWriteLine($File, "9")
		Sleep(150)
	EndIf
WEnd
DllClose($dll)
FileClose($File)
buFFy! is offline  
Old 04/01/2009, 22:17   #18
 
_revo's Avatar
 
elite*gold: 57
Join Date: Jun 2007
Posts: 10,720
Received Thanks: 5,092
Code:
	If _IsPressed($1, $dll) Then
		FileWriteLine($File, "1")
		while _IsPressed($1, $dll)
			Sleep (...)
		WEnd
	EndIf
dann halt ggf. noch nen timer einbauen der das delay ausgibt
_revo is offline  
Old 04/01/2009, 22:41   #19


 
buFFy!'s Avatar
 
elite*gold: 1826
Join Date: Mar 2009
Posts: 4,310
Received Thanks: 6,287
Ah. Danke
Eigentlich brauche ich das garnicht, aber trotzdem Danke - wieder was dazu gelernt.. hätt ich auch selbst drauf kommen können
buFFy! is offline  
Old 04/01/2009, 23:13   #20
 
elite*gold: 0
Join Date: Dec 2007
Posts: 137
Received Thanks: 30
Ich würde mich generell mit Programmieren beschäftigen. D.h. mal irgendein Tutorial durcharbeiten, damit du die Grundkenntnisse lernst.
bingbongman is offline  
Old 04/02/2009, 16:09   #21
 
elite*gold: 0
Join Date: Mar 2009
Posts: 60
Received Thanks: 0
Quote:
Originally Posted by eF_Hacks View Post
Naja..mit C sehe ich da auch kein Problem drin, aber mit AutoIT.
Ich denke ich gehe da auch einfach falsch ran.. zu wenig EXP mit AutoIT..
Hab mal eben nen alten Versuch rausgekramt.
Code:
#include <Misc.au3>
$dll = DllOpen("user32.dll")
$File = FileOpen("Log.txt", 1)
;========================
;-_IsPressed Table
;========================
Const $0 = 30
Const $1 = 31
Const $2 = 32
Const $3 = 33
Const $4 = 34
Const $5 = 35
Const $6 = 36
Const $7 = 37
Const $8 = 38
Const $9 = 39
Const $A = 41
Const $B = 42
Const $C = 43
Const $D = 44
Const $E = 45
Const $F = 46
Const $G = 47
Const $H = 48
Const $I = 49
Const $J = "4A"
Const $K = "4B"
Const $L = "4C"
Const $M = "4D"
Const $N = "4E"
Const $O = "4F"
Const $P = 50
Const $Q = 51
Const $R = 52
Const $S = 53
Const $T = 54
Const $U = 55
Const $V = 56
Const $W = 57
Const $X = 58
Const $Y = 59
Const $Z = "5A"

While True
	If _IsPressed($0, $dll) Then
		FileWriteLine($File, "0")
		Sleep(150)
	EndIf
	If _IsPressed($1, $dll) Then
		FileWriteLine($File, "1")
		Sleep(150)
	EndIf
	If _IsPressed($2, $dll) Then
		FileWriteLine($File, "2")
		Sleep(150)
	EndIf
	If _IsPressed($3, $dll) Then
		FileWriteLine($File, "3")
		Sleep(150)
	EndIf
	If _IsPressed($4, $dll) Then
		FileWriteLine($File, "4")
		Sleep(150)
	EndIf
	If _IsPressed($5, $dll) Then
		FileWriteLine($File, "5")
		Sleep(150)
	EndIf
	If _IsPressed($6, $dll) Then
		FileWriteLine($File, "6")
		Sleep(150)
	EndIf
	If _IsPressed($7, $dll) Then
		FileWriteLine($File, "7")
		Sleep(150)
	EndIf
	If _IsPressed($8, $dll) Then
		FileWriteLine($File, "8")
		Sleep(150)
	EndIf
	If _IsPressed($9, $dll) Then
		FileWriteLine($File, "9")
		Sleep(150)
	EndIf
WEnd
DllClose($dll)
FileClose($File)
wo/wie einfügen ? weil nen code zu posten hilft wenig ? habe keine ahnung von C++ ^^
Grenth is offline  
Old 04/02/2009, 16:13   #22


 
buFFy!'s Avatar
 
elite*gold: 1826
Join Date: Mar 2009
Posts: 4,310
Received Thanks: 6,287
Quote:
Originally Posted by Grenth View Post
wo/wie einfügen ? weil nen code zu posten hilft wenig ? habe keine ahnung von C++ ^^
Nirgendwo.. außerdem ist das AutoIT.
Ich hab doch geschrieben das es nur ein Versuch ist.. aber ich bin gerade dabei so ne art "Makro_Maker" zu schreiben.. bald fertig.
Hab Geduld
buFFy! is offline  
Old 04/02/2009, 16:14   #23
 
elite*gold: 0
Join Date: Mar 2009
Posts: 60
Received Thanks: 0
heißt ein programm das loggt wie lange und in welcher reienfolge das und das getippt ?

dein alter gedanke sag ich mal funkt bei mir leider garnicht ^^
Grenth is offline  
Old 04/02/2009, 18:23   #24


 
buFFy!'s Avatar
 
elite*gold: 1826
Join Date: Mar 2009
Posts: 4,310
Received Thanks: 6,287
Quote:
Originally Posted by Grenth View Post
heißt ein programm das loggt wie lange und in welcher reienfolge das und das getippt ?

dein alter gedanke sag ich mal funkt bei mir leider garnicht ^^
Also.. Ich bin jetzt soweit das man a-z und 0-9 aufnehmen kann..
füge jetzt noch Numpad und F-Tasten hinzu, dann nen netten GUI und dann ists fertig.
buFFy! is offline  
Old 04/02/2009, 18:31   #25
 
elite*gold: 0
Join Date: Nov 2008
Posts: 576
Received Thanks: 191
und wie siehts mit den zeitabständen aus, die zwischen den tasteingaben liegen?
wenn das zum botschreiben benutzt werden soll, dann ist das eigentlich ziemlich wichtig, sofern es kein keylogger sein soll.
__wadim is offline  
Old 04/02/2009, 18:35   #26
 
elite*gold: 0
Join Date: Mar 2009
Posts: 60
Received Thanks: 0
Quote:
Originally Posted by eF_Hacks View Post
Also.. Ich bin jetzt soweit das man a-z und 0-9 aufnehmen kann..
füge jetzt noch Numpad und F-Tasten hinzu, dann nen netten GUI und dann ists fertig.
wow nice :>
und wie schauts aus mit dem was mein vorgänger gepostet hat ?`^^
und noch ne frage: wirds kostenlos ? :P
Grenth is offline  
Old 04/02/2009, 18:36   #27


 
buFFy!'s Avatar
 
elite*gold: 1826
Join Date: Mar 2009
Posts: 4,310
Received Thanks: 6,287
Hier mal der Code wie ich es für z.B. W mache.
Code:
$File = FileOpen("GuildWars_Bot.au3", 1)
$dll = DllOpen("user32.dll")
Const $W = 57
If _IsPressed($W, $dll) Then
 $W_Timer = TimerInit()
  While _IsPressed($W, $dll)
   Sleep(1)
  WEnd
 FileWrite($File, 'Send("' & '{w down' & '}' & '")' & @CRLF & 'Sleep(' & Int(TimerDiff($W_Timer)) & ')' & @CRLF & 'Send("' & '{w up' & '}' & '")' & @CRLF)
EndIf
buFFy! is offline  
Old 04/02/2009, 18:40   #28
 
elite*gold: 0
Join Date: Mar 2009
Posts: 60
Received Thanks: 0
wow das sieht soweit ich das verstehe gut aus nur meine frage mit dem preis steht immernoch ^^
Grenth is offline  
Old 04/02/2009, 18:44   #29


 
buFFy!'s Avatar
 
elite*gold: 1826
Join Date: Mar 2009
Posts: 4,310
Received Thanks: 6,287
Jo, hab deinen Post erst später gesehen.
Sowas kostet Nix.
Zummindest nicht bei Mir.
buFFy! is offline  
Old 04/02/2009, 18:52   #30
 
elite*gold: 0
Join Date: Mar 2009
Posts: 60
Received Thanks: 0
find ich nice
ich mag kein shareware ^^ denke thread hat sich geklärt ?

eF_Hacks haste icq ? meine nr 468722404 ^^
Grenth is offline  
Reply


Similar Threads Similar Threads
.exe erstellen?
01/08/2010 - Metin2 Private Server - 1 Replies
Hi Leute, habe mal kurz ne frage, wie kan man eine .exe erstellen wie Longju3 oder Fantasymt2 und so? Also das es einen Installer gibt, der Destop verknüpfung etc. erstellt..? Und achja wie kan ich bei Mod.Client die Music ändern..? habe kein BGM Ordner -.-
WoWMobs/Waffen/etc. erstellen + batchen , Datenbank erstellen!
10/25/2009 - WoW Private Server - 2 Replies
Hallo Leute, schon wieder habe ich einen Tutorial für euch^^ Dieses mal geht es um Navicat, und ich hoffe er hilft euch wiedereinmal :) Navigation: 0.0 Download 1. Arcemu 2. Mangos 3. Mein Video mit meiner scheiß Stimme^^ Download:
Wie Npc Erstellen
10/10/2009 - Metin2 Private Server - 0 Replies
Hi, Weiß jemand wie man Npcs erstellet wenn ja antworten pls !
De Exe erstellen?
10/08/2009 - Metin2 Private Server - 17 Replies
Hey gibts vlt ein ausfühliches tut wie man ne Exe erstellt? gibt zwar ein vid tut was aber irgendwie mir nicht weiter Hilft da ich eine Exe für ein Hamachi server machen will könnte vlt jmd mir ein Link zum tut geben? oder mir ne Exe erstellen? Gruß
acc erstellen
10/23/2008 - Metin2 Private Server - 8 Replies
ich wollt fragen ob mir jemand den link schicken kann wo man einen acc machen kann und bitte sagen wo ich was hinschreiben muss thx im voraus



All times are GMT +1. The time now is 21:48.


Powered by vBulletin®
Copyright ©2000 - 2026, 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 ©2026 elitepvpers All Rights Reserved.