PHP Code:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <NomadMemory.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 189, 113, 216, 140)
$Checkbox1 = GUICtrlCreateCheckbox("200 HP", 40, 8, 145, 25)
$Button1 = GUICtrlCreateButton("Hack", 40, 32, 65, 25)
$Label1 = GUICtrlCreateLabel("Mano", 112, 72, 31, 17)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
_Hack()
EndSwitch
WEnd
Func _Hack()
If GUICtrlRead($Checkbox1) = 1 Then _MemoryWrite(0x0053A184,_MemoryOpen(ProcessWait("S4Client.exe")),"2348565979","long")
Exit
EndFunc
is there any mistake ?