[Autoit] Speed hack help

03/12/2010 02:14 ax5#1
I dont use CPU Coding in autoit so i hop some one can help me do make a script that can speed upp the games CPU faster and slower like cheat engen dose.
I have only made this hehe. Like i sad i dont use memory-cpu (NomadMemory.au3):mofo:

Maybe give tip for tutorials or somthing or example scripts :)

Quote:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <SliderConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("CPU Hack", 196, 130, 192, 114)
$Slider1 = GUICtrlCreateSlider(16, 40, 153, 33)
$Button1 = GUICtrlCreateButton("Start/Stop", 104, 88, 73, 25, $WS_GROUP)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit

EndSwitch
WEnd
hmmm
03/13/2010 18:46 ax5#2
Bump. Someone help ?
03/15/2010 15:53 Cholik#3
Well ... this is the tutorial section .... you see the problem ?

#infracted
#moved
03/15/2010 16:14 ax5#4
Quote:
Originally Posted by Walter Sobchak View Post
Well ... this is the tutorial section .... you see the problem ?

#infracted
#moved
Sorry my bad, will not happen agen :mofo::handsdown:
03/15/2010 18:18 Banana.Crafts#5
I think Cheat Engine use a DLL for the Speedhack!
03/16/2010 22:37 ax5#6
hmm Ok but need some code for autoit to do that
03/17/2010 14:17 .nAno#7
maybe this will help you to toogle the speedhack ;)
[Only registered and activated users can see links. Click Here To Register...]
03/18/2010 00:28 ax5#8
hmmm ok but still no good to help me
03/18/2010 15:41 .nAno#9
ohh, sorry copyed the wrong link I meant the Source Code ;)
03/21/2010 21:21 ax5#10
Quote:
Originally Posted by .nAno View Post
ohh, sorry copyed the wrong link I meant the Source Code ;)
Ok the sorce code plz :=)
03/22/2010 16:06 .nAno#11
[Only registered and activated users can see links. Click Here To Register...]

Ok this should be the right one ;) Hope you'll have fun :P
04/08/2012 11:40 *TheWarLords*#12
you Need Func Too Work
04/17/2012 01:38 *TheWarLords*#13
Code:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <SliderConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("CPU Hack", 196, 130, 192, 114)
$Slider1 = GUICtrlCreateSlider(16, 40, 153, 33)
$Button1 = GUICtrlCreateButton("Start/Stop", 104, 88, 73, 25, $WS_GROUP)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
	$nMsg = GUIGetMsg()
	Switch $nMsg
		Case $GUI_EVENT_CLOSE
			Exit
		Case $Button1
			Cheat()
	EndSwitch
WEnd

Func Cheat()
ToolTip("Start S4 League!",0,0)
$WAIT = ProcessWait("S4Client.exe")
Sleep(500)
$PID = ProcessExists("S4Client.exe")
$OPEN = _MemoryOpen ($PID)
_memorywrite(0xAddressf,$OPEN,$Value)
Exit 0
EndFunc