Source Code

03/11/2014 20:33 playerstar14#1
Can Someone who is more familiar with Auto It let me know it my script is correct or what needs to be added for it to work.

Code:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <NomadMemory.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Tsukiko Nakumura", 291, 187, 192, 124)
$Checkbox1 = GUICtrlCreateCheckbox("God Mode", 88, 40, 89, 25)
$Label1 = GUICtrlCreateLabel("Tsukiko Nakumura", 0, 136, 285, 42)
GUICtrlSetFont(-1, 24, 800, 6, "Old English Text MT")
GUICtrlSetColor(-1, 0x800000)
GUICtrlSetBkColor(-1, 0x000000)
$Button1 = GUICtrlCreateButton("Start", 48, 80, 161, 49)
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("Start S4 League!",0,0)
MsgBox ( 0, "Hacked", "Have Fun" )
$WAIT = ProcessWait("S4Client.exe")
$PID = ProcessExists("S4Client.exe")
Sleep(500)
$OPEN = _MemoryOpen ($PID)
If GUICtrlRead($Checkbox1) = 1 Then
		_MemoryWrite(0x00529CD5,$OPEN,"1592365200","long")
	EndIf
Exit
EndFunc
03/11/2014 20:51 Djordyy#2
Your really close to it yea ;)
Try this:

#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <NomadMemory.au3>

#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Tsukiko Nakumura", 291, 187, 192, 124)
$Checkbox1 = GUICtrlCreateCheckbox("God Mode", 88, 40, 89, 25)
$Label1 = GUICtrlCreateLabel("Tsukiko Nakumura", 0, 136, 285, 42)
GUICtrlSetFont(-1, 24, 800, 6, "Old English Text MT")
GUICtrlSetColor(-1, 0x800000)
GUICtrlSetBkColor(-1, 0x000000)
$Button1 = GUICtrlCreateButton("Start", 48, 80, 161, 49)
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("Start S4 League!",0,0)
MsgBox ( 0, "Hacked", "Have Fun" )
$WAIT = ProcessWait("S4Client.exe")
$PID = ProcessExists("S4Client.exe")
Sleep(500)
$OPEN = _MemoryOpen ($PID)
If GUICtrlRead($Checkbox1) = 1 Then
_MemoryWrite(0x00529CD5,$OPEN,"1592365200","long")
EndIf
Exit
EndFunc
03/11/2014 21:14 playerstar14#3
Okay Ill try it :)
Edit: Don't Work
Hmm...What else do you think could be the problem?
03/11/2014 21:17 Djordyy#4
Quote:
Originally Posted by playerstar14 View Post
Okay Ill try it :)
Oki ;)
I have tryed your source code to.
And it works really good with starting it ;P

Quote:
Originally Posted by playerstar14 View Post
Okay Ill try it :)
Edit: Don't Work
Hmm...What else do you think could be the problem?
The Bypass
03/11/2014 21:35 playerstar14#5
I used the Synopsis bypass do you think I should try the Full Metal?
I just wanna get my hack up and running if I can do that I will release a trainer with more functions.
03/11/2014 21:41 Djordyy#6
Quote:
Originally Posted by playerstar14 View Post
I used the Synopsis bypass do you think I should try the Full Metal?
I just wanna get my hack up and running if I can do that I will release a trainer with more functions.
I have tryed Synopsis bypass to,
But it says that i need to disable my Anti Virus?
How to do that lol.
03/11/2014 21:44 playerstar14#7
Lol go to your icon tray click on the arrow to show the rest of your icons and then right click your Virus protector and click disable antivirus.
03/11/2014 21:46 Djordyy#8
Quote:
Originally Posted by playerstar14 View Post
Lol go to your icon tray click on the arrow to show the rest of your icons and then right click your Virus protector and click disable antivirus.
I dont have disable, I have only open.
03/11/2014 21:52 playerstar14#9
What's the name of your Virus Program?
03/12/2014 06:42 WITZIG#10
Bro, did you download the NomadMemory.au3 and put it into your incluude Folder?
You have to do this :)
Just search for : NomadMemory.au3 download
03/12/2014 07:33 Djordyy#11
Quote:
Originally Posted by WITZIG View Post
Bro, did you download the NomadMemory.au3 and put it into your incluude Folder?
You have to do this :)
Just search for : NomadMemory.au3 download
I think he did, If he didnt download it he would not add: #include <NomadMemory.au3> to it.
03/12/2014 15:54 playerstar14#12
Quote:
Originally Posted by WITZIG View Post
Bro, did you download the NomadMemory.au3 and put it into your incluude Folder?
You have to do this :)
Just search for : NomadMemory.au3 download
Yea I did all of that And when i tried it out it did not work.
03/12/2014 16:31 Hybrid~#13
Did u even read the code?
You're calling the function _hack() but you don't have one.
You have the _Hack() function
Got it?
03/12/2014 19:15 Omdi#14
#moved