Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Guild Wars > GW Bots
You last visited: Today at 03:11

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

Advertisement



Problem mit Autoit im stealth Modus

Discussion on Problem mit Autoit im stealth Modus within the GW Bots forum part of the Guild Wars category.

Reply
 
Old   #1

 
Heikofant's Avatar
 
elite*gold: 141
The Black Market: 242/0/2
Join Date: Mar 2007
Posts: 1,067
Received Thanks: 223
#CLOSED

#CLOSED
Heikofant is offline  
Old 01/08/2009, 21:45   #2
 
elite*gold: 0
Join Date: Dec 2007
Posts: 680
Received Thanks: 141
um /resign zu schreiben braucht er die shift taste..nur mal so als tipp
xSharkoonX is offline  
Old 01/08/2009, 22:08   #3

 
Heikofant's Avatar
 
elite*gold: 141
The Black Market: 242/0/2
Join Date: Mar 2007
Posts: 1,067
Received Thanks: 223
ich mach wenn überhaupt -resign , aber meistens löse ich das über up+enter

also im code hab nirgends ein zeichen, welches shift erfordert ...
Heikofant is offline  
Old 01/08/2009, 22:21   #4
 
elite*gold: 0
Join Date: Dec 2007
Posts: 301
Received Thanks: 53
hast du, den bei /resign brauchst du das zeichen : "/" und dafür braucht man die shift taste
Hokler is offline  
Old 01/08/2009, 22:31   #5

 
Heikofant's Avatar
 
elite*gold: 141
The Black Market: 242/0/2
Join Date: Mar 2007
Posts: 1,067
Received Thanks: 223
NEIN, ich hab doch geschrieben, dass ich "-resign" mache, da brauch ich kein Shift -.-
Heikofant is offline  
Old 01/08/2009, 22:31   #6
 
elite*gold: 0
Join Date: Jun 2006
Posts: 239
Received Thanks: 31
Er hat doch schon gesagt das er ken shift braucht und es auch nicht benutzt?!?!
//E: gleichzeitig
Illuminatus is offline  
Old 01/08/2009, 22:34   #7

 
Heikofant's Avatar
 
elite*gold: 141
The Black Market: 242/0/2
Join Date: Mar 2007
Posts: 1,067
Received Thanks: 223
ja, und ausserdem ist das buchstaben killen sehr komisch ... wenn ich chatte lässt er einfach einen buchstaben, den ich tippe weg ...und ich hab auch keil Delete oder sonstiges im Macro drinne
Heikofant is offline  
Old 01/08/2009, 22:46   #8
 
elite*gold: 0
Join Date: Jan 2008
Posts: 1,098
Received Thanks: 198
Opt("SendKeyDelay", 25) erhöhen.
i4mSoH34Vy is offline  
Old 01/08/2009, 23:07   #9

 
Heikofant's Avatar
 
elite*gold: 141
The Black Market: 242/0/2
Join Date: Mar 2007
Posts: 1,067
Received Thanks: 223
ich hab nur einmal diesen befehl, ganz zu anfangs tippt er -resign ein und dann nurnoch up+enter

hab aber jetzt beim looten von "ö" auf "o" gewechselt, vlt lags an dem ö, was ja auf ner ami tastatur recht schwierig ist^^
Heikofant is offline  
Old 01/08/2009, 23:21   #10
 
NBA's Avatar
 
elite*gold: 0
Join Date: Apr 2008
Posts: 1,874
Received Thanks: 213
Code:
Code:
Opt("SendkeyDelay",100)
Opt("SendkeyDownDelay,100)
So geht das bei mir meistens (und bei englischer tastatur braucht man shift auch nicht, / ist schon auf dem keyboard, ganz ohne shift)
NBA is offline  
Old 01/08/2009, 23:27   #11
 
elite*gold: 0
Join Date: Nov 2008
Posts: 576
Received Thanks: 191
es sollte mal wirklich einer eine funktion schreiben, die zuverlässig resign an gw übergeben kann, damit hier nicht noch öffter dannach gefragt wird.
__wadim is offline  
Old 01/08/2009, 23:47   #12
 
elite*gold: 0
Join Date: Sep 2008
Posts: 732
Received Thanks: 216
wie wärs hiermit :-p

Code:
Func giveup()
	RS(500,1000)
	ControlSend($client, "", "", "{-}")
RS(200,1000)
ControlSend($client, "", "", "r")
RS(50,100)
ControlSend($client, "", "", "e")
RS(50,100)
ControlSend($client, "", "", "s")
RS(50,100)
ControlSend($client, "", "", "i")
RS(50,100)
ControlSend($client, "", "", "g")
RS(50,100)
ControlSend($client, "", "", "n")
RS(50,100)
	ControlSend($client, "", "", "{Enter}")
	Sleep(100)
	While _memoryread($death,$hprocess,'int')<>1
	RS(25,50)
	WEnd
	RS(2000,3000)
	$x = Random(413,601) 
	$y = Random(385,397)
	ControlClick($client,"","","left",1,$x,$y)
	Sleep(1000)

EndFunc
da können ja eigenlich keine buchstaben verschlugt werden :-p
Dunham is offline  
Old 01/08/2009, 23:51   #13
 
Gabba2's Avatar
 
elite*gold: 0
Join Date: Jan 2008
Posts: 1,403
Received Thanks: 918
Code:
#include <WindowsConstants.au3>
#include <WinAPI.au3>
Opt("WinTitleMatchMode", 3)


Dim $Keys[0xFF + 1]

For $i = 1 To 0xFF
	$Chr = DllCall("user32.dll", "int", "MapVirtualKey", "int", $i, "int", 2)
	$Chr = StringLower(ChrW(BitAND($Chr[0], 0xFFFF)))
	$Keys[$i] = $Chr
Next

Func _GetVK($Chr)
	$Chr = String($Chr)
	For $i = 1 To 0xFF
		If $Keys[$i] = $Chr Then Return $i
	Next
EndFunc   ;==>_GetVK

Func WINAPI_send($Text, $win = "Guild Wars", $Sleep1 = 90, $Sleep2 = 130)
	$hwnd = WinGetHandle($win)
	$len = StringLen($Text)
	$Array_Text = StringSplit($Text, "")
	For $i = 1 To $len
		_WinAPI_PostMessage($hwnd, $WM_KEYDOWN, _GetVK($Array_Text[$i]), 0)
		Sleep(Random($Sleep1 - 5, $Sleep1 + 5))
		_WinAPI_PostMessage($hwnd, $WM_KEYup, _GetVK($Array_Text[$i]), 0)
		Sleep(Random($Sleep2 - 5, $Sleep2 + 5))
	Next
EndFunc   ;==>WINAPI_send

Func Paste_send($Text, $win = "Guild Wars", $Sleep1 = 90, $Sleep2 = 130); 80, 120
	Opt("SendKeyDownDelay", $Sleep1)
	Opt("SendKeyDelay", $Sleep2)
	$hwnd = WinGetHandle($win)
	$Anfang = ClipGet()
	ClipPut($Text)
	Sleep(Random($Sleep1 - 5, $Sleep1 + 5))
	ControlSend($hwnd, "", "", "{CTRLDOWN}v{CTRLup}")
	Sleep(Random($Sleep2 - 5, $Sleep2 + 5))
	ClipPut($Anfang)
EndFunc   ;==>Paste_send
Macht beides halt im Endeffekt das selbe. Mit Winapi gehts eigentlich schon ganz gut aber ab und an verschluckt er da auch was (wenn er erstmal durcheinander ist mit einer Taste dann so richtig). Mit Paste gehts wunderbar. Ist nicht die schönste Lösung aber es macht eigentlich keine Probleme. Verwendung sollte selbsterklärend sein bei einem so kurzen Code.
Credits gehen an jeden der in irgendeinem Forum irgendwas auch nur annähernd zu dem Thema geschrieben hat insbesondere Azunai.
Gabba2 is offline  
Old 01/09/2009, 09:44   #14

 
Heikofant's Avatar
 
elite*gold: 141
The Black Market: 242/0/2
Join Date: Mar 2007
Posts: 1,067
Received Thanks: 223
wie gesagt, dass resign ist nicht das Problem, da ich es mit up+enter mache.

Aber dennoch macht der manchmal shift/killt buchstaben.

funktionierts denn mit winapi besser?
Heikofant is offline  
Reply


Similar Threads Similar Threads
Problem with stealth bot
06/14/2012 - Silkroad Online - 3 Replies
when i try to open stealthex bot i get this error http://i16.photobucket.com/albums/b6/gmkpl11/untit led-4.jpg can any1 help me out?
Empire Earth 3 Online Modus Problem
12/21/2010 - Technical Support - 25 Replies
Hey Leute hab mal ein Problem möchte Empire Earth online zocken aber der will am anfang von mir nen Gamespy Code jetzt die frage von wo ich den Code bekomme google bringt mir zumindestens kein Ergebis nur damits klar ist ich hab das Spiel Legal erworben



All times are GMT +2. The time now is 03:11.


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