Hello Developers I wanna something .. I learned autoit script but need 1 hint :D
I make my own hack but need know if that have any wrong ? ( Not Copied )
(I work with win7 32bit)
If that have any wrong just tell me fast please
End :D
I make my own hack but need know if that have any wrong ? ( Not Copied )
(I work with win7 32bit)
If that have any wrong just tell me fast please
Code:
#cs ----------------------------------------------------------------------------
AutoIt Version: 3.3.10.2
Author: MaDo
Script Function:
Template AutoIt script.
#ce ----------------------------------------------------------------------------
; Script Start - Add your code below here
#include <ButtonConstants.au3>
#include <nomadmemory.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Small Hack By MaDo -V0.1-", 421, 205, 192, 124)
GUISetBkColor(0x3366FF)
$Pic1 = GUICtrlCreatePic("E:\S4 League\New folder\s4 League back.jpg", 0, 0, 420, 76)
$Button1 = GUICtrlCreateButton("Start Hack -MaDo-", 184, 80, 235, 81)
GUICtrlSetFont(-1, 16, 800, 0, "Segoe Script")
$Checkbox1 = GUICtrlCreateCheckbox("1 Hit Kill", 16, 88, 97, 17)
$Checkbox2 = GUICtrlCreateCheckbox("Inf sp", 112, 88, 73, 17)
$Checkbox3 = GUICtrlCreateCheckbox("200 Hp", 16, 120, 97, 17)
$Checkbox4 = GUICtrlCreateCheckbox("Hit Range", 112, 120, 73, 17)
$Label2 = GUICtrlCreateLabel("Copy Right @MaDo", 184, 184, 219, 20)
GUICtrlSetFont(-1, 10, 800, 0, "Arial Black")
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()
GUISetState(@SW_HIDE)
ToolTip( "Wait for S4Client.exe", 0, 0)
MsgBox(1 , "Small Hack By MaDo" , "Hacked" )
$Wait = ProcessWait("S4Client.exe") ; This will make the hack search for HGWC
$Pid = ProcessExists("S4Client.exe") ; This means he found HGWC
ToolTip("Founded S4 League Enjoy", 0, 0)
Sleep (500)
$OPEN = _MemoryOpen ($PID) ; Open memory
If GUICtrlRead($Checkbox1) = 1 Then ; If this checkbox checked ..
_MemoryWrite(0x0052ACB9,$OPEN,"1593591259","long") ; Change Value
EndIf
If GUICtrlRead($Checkbox2) = 1 Then ; If this checkbox checked ..
_MemoryWrite(0x0048D3D2,$OPEN,"2348565979","long") ; Change Value
EndIf
If GUICtrlRead($Checkbox3) = 1 Then ; If this checkbox checked ..
_MemoryWrite(0x00529F64,$OPEN,"2348565979","long") ; Change Value
EndIf
If GUICtrlRead($Checkbox4) = 1 Then ; If this checkbox checked ..
_MemoryWrite(0x01283FA0,$OPEN,"0","float") ; Change Value
EndIf
EndFunc