Quote:
Originally Posted by Hybrid~
Please, learn the language.
The example I posted is in visual basic.
I remembered that autoit dont have a timer.
So you will need a button too, to refresh the trainer.
Code:
case $button1
_YourFuncName ()
Now, the func
Code:
Func _YourFuncName ()
$w = ProcessWait("S4Client.exe")
$PID = ProcessExists("S4Client.exe")
$OPEN = _MemoryOpen ($PID)
If GUICtrlRead($Checkbox1) = 1 Then
_MemoryWrite(Address,$OPEN,"hacked Value","Type-probably long")
Else if ; or just else, I dont remember
_MemoryWrite (Address, $ OPEN,"normal value","type-as I said, long")
EndIf
; here u do the same with the other checkboxes.
EndFunc
|
Sorry that im so noob in making hacks :/ Should it look like this?
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
case $button1
_REFRESH ()
EndSwitch
WEnd
Func _REFRESH ()
$w = ProcessWait("S4Client.exe")
$PID = ProcessExists("S4Client.exe")
$OPEN = _MemoryOpen ($PID)
If GUICtrlRead($Checkbox1) = 1 Then
_MemoryWrite(Address,$OPEN,"837533829","long")
Else if
_MemoryWrite (Address, $ OPEN,"829800581","long")
EndIf