I don't know but is english allowed here? lol anyways, i've been on an autoit script using theforsaken's tutorial but i'm stuck at a part, i want to add another place for spamming another key but here only one key is working...and also i can't figure out how to make the "stop" button work.
Quote:
#cs ----------------------------------------------------------------------------
AutoIt Version: 3.3.0.0
Author: shad0wboss
#ce ----------------------------------------------------------------------------
#include <GUIConstantsEx.au3>
GUICreate("shad0wboss's Bot", 300, 150)
GUISetState(@SW_SHOW)
GUICtrlCreateLabel("AOE", 2, 10)
$key1 = GUICtrlCreateInput("", 65, 8, 120)
GUICtrlCreateLabel("PickUp", 2, 82)
$key2 = GUICtrlCreateInput("", 65, 40, 120)
GUICtrlCreateLabel("Spam times", 2, 44)
$time1 = GUICtrlCreateInput("", 65, 75, 120)
$startbutton = GUICtrlCreateButton("Start", 190, 8, 60)
$stopbutton = GUICtrlCreateButton("Stop", 190, 40, 60)
While 1
$msg = GUIGetMsg()
Select
Case $msg = $startbutton
$send1 = GUICtrlRead($key1)
$send2 = GUICtrlRead($key2)
$sleep1 = GUICtrlRead($time1)
While 1
Send($send1)
Send($send2)
Sleep($sleep1)
WEnd
Case $msg = $stopbutton
Exit
Case $msg = $GUI_EVENT_CLOSE
GUIDelete()
ExitLoop
EndSelect
WEnd