Quote:
Originally Posted by Mega Byte
Look up OpenProcess
TerminateProcess
SendMessage
CreateThread
Sleep
Direct Input
ReadProcessMemory
Or cheap out and try autoit... lol
WriteProcessMemory
|
yea i tried autoit but it didn't make sense to me xD
ok here... i've made this in autoit by reading a tutorial, can you guide me a bit more?
Quote:
#cs ----------------------------------------------------------------------------
AutoIt Version: 3.3.0.0
Author: shad0wboss
#ce ----------------------------------------------------------------------------
#include <GUIConstantsEx.au3>
GUICreate("shad0wboss's Bot", 335, 100)
GUISetState(@SW_SHOW)
GUICtrlCreateLabel("Key", 8, 10)
$key1 = GUICtrlCreateInput("", 35, 8, 120)
GUICtrlCreateLabel("Time", 8, 44)
$time1 = GUICtrlCreateInput("", 35, 40, 120)
GUICtrlCreateLabel("Key 2", 8, 44)
$key2 = GUICtrlCreateInput("", 35, 40, 120)
$startbutton = GUICtrlCreateButton("Start", 190, 8, 60)
While 1
$msg = GUIGetMsg()
Select
Case $msg = $startbutton
$send1 = GUICtrlRead($key1)
$send2 = GUICtrlRead($key2)
$sleep1 = GUICtrlRead($time1)
While 1
Send($send1)
Sleep($sleep1)
WEnd
Case $msg = $GUI_EVENT_CLOSE
GUIDelete()
ExitLoop
EndSelect
wEnd
|
Can you also tel me how i can have the buff option there as well so that it auto presses, lets say "6" every 60 seconds? and that this code works only for process "TwelveSky2" even tho it is minimized