11/14/2009, 15:21
|
#3
|
elite*gold: 0
Join Date: Sep 2009
Posts: 70
Received Thanks: 16
|
hi
also der code für picup bot :
Quote:
#cs ----------------------------------------------------------------------------
AutoIt Version: 3.3.0.0
Author: Hairichi
#ce ----------------------------------------------------------------------------
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Metin 2 Pic up bot", 256, 123, 192, 124)
$Group1 = GUICtrlCreateGroup("Pic up bot", 24, 16, 193, 89)
$Button1 = GUICtrlCreateButton("On [F7]", 32, 40, 83, 49, $WS_GROUP)
GUICtrlCreateGroup("", -99, -99, 1, 1)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
HotKeySet ( "{F7}" , "Start" ) ;zum Starten f7 drücken
HotKeySet ( "{F8}" , "Ende" ) ;zum beenden f8 drücken
Func Start ()
While (1)
Send("y") ;der drückt dann dauernd y (picup ^^)
Wend
EndFunc
Func Ende ()
Exit
EndFunc
while 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
Send("{F7}")
EndSwitch
Wend
|
mit f7 oder On button starten
und mit f8 beenden
|
|
|