The problem I am having with it is that the bot/macro will not work in game.. but will work on everything else
now here is my code:
Code:
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_UseX64=n
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#cs --------------------------------------------------------------
Autoit Version: 3.3.6.1
Author: 5oonigga
#ce --------------------------------------------------------------
#include <GUIConstantsEx.au3> ;Adds a GUI interface
Global $Paused
HotKeySet("{PAUSE})","TogglePause") ;Script will pause when Pause button is Pressed
HotKeySet("{ESC}","Stop") ;Script can be stopped by hitting the ESC button
GUICreate("Kabod Bot", 335, 100) ;the GUI Box
GUISetState(@SW_SHOW) ; to show the GUI box
GUICtrlCreateLabel("Key", 8, 10) ; adds key text to the GUI
$key1 = GUICtrlCreateInput ("", 35, 8, 120)
GUICtrlCreateLabel("Time", 8, 44)
$time1 = GUICtrlCreateInput("", 35, 40, 120)
GUICtrlCreateLabel("Key", 8, 74)
$key2 = GUICtrlCreateInput("", 35, 68, 120)
$startbutton = GUICtrlCreateButton("Start", 190, 8, 60)
While 1
$msg = GUIGetMsg ()
Select
Case $msg = $startbutton
$send1 = GUICtrlRead($key1)
$sleep1 = GUICtrlRead($time1)
$send2 = GUICtrlRead($key2)
While 1
Sleep(2000)
Send("{TAB}")
Sleep(500)
Send($send1)
Sleep($sleep1)
Send($send2)
Sleep($sleep1)
WEnd
Case $msg = $GUI_EVENT_CLOSE
GUIDelete()
ExitLoop
EndSelect
WEnd
I am new to Autoit but i have a general understanding of the basic stuff as of right now...
The only thing is that I have googled and searched and searched again for my problem and I cant find anything on it.. people said it should work even with a basic of the basic
but i cant get anything to work








