New version 1.2
Hi
[Only registered and activated users can see links. Click Here To Register...]
This is Multi Speed Trainer
Download: Attachment
Virus Scan: [Only registered and activated users can see links. Click Here To Register...]
Virus Scan 1.1: [Only registered and activated users can see links. Click Here To Register...]
Virus Scan 1.2: [Only registered and activated users can see links. Click Here To Register...]
Instruction:
1.Start S4
2.Suspend S4Client.exe and HGWC.exe Before S4Client.exe Window Came Up
3.Open Trainer
4.Press F12
5.Close Hack
6.Resume S4Client.exe and HGWC.exe
Ok in new 1.2 not work with autosuspenders because autosuspenders suspend too early.If you can make this code trainer it should work with this auto suspender.
Here How To Suspend:
Made ßy [Pen**Guy] and Sleepy Boy
Hi
[Only registered and activated users can see links. Click Here To Register...]
This is Multi Speed Trainer
Download: Attachment
Virus Scan: [Only registered and activated users can see links. Click Here To Register...]
Virus Scan 1.1: [Only registered and activated users can see links. Click Here To Register...]
Virus Scan 1.2: [Only registered and activated users can see links. Click Here To Register...]
Instruction:
1.Start S4
2.Suspend S4Client.exe and HGWC.exe Before S4Client.exe Window Came Up
3.Open Trainer
4.Press F12
5.Close Hack
6.Resume S4Client.exe and HGWC.exe
Ok in new 1.2 not work with autosuspenders because autosuspenders suspend too early.If you can make this code trainer it should work with this auto suspender.
Here How To Suspend:
|
|
Code:
#RequireAdmin
HotKeySet("{F11}", "_Resume")
OnAutoItExitRegister("_OnExit")
Global $hDll_Kernel32 = DllOpen("kernel32.dll"), $hDll_Ntdll = DllOpen("ntdll.dll")
_Suspend()
While Sleep(700)
WEnd
Func _Resume()
_ProcessResume(ProcessExists("HGWC.exe"))
_ProcessResume(ProcessExists("S4Client.exe"))
Exit
EndFunc
Func _Suspend()
ToolTip("Waiting for S4League...", 0, 0)
ProcessWait("HGWC.exe")
ProcessWait("S4Client.exe")
_ProcessSuspend(ProcessExists("HGWC.exe"))
_ProcessSuspend(ProcessExists("S4Client.exe"))
ToolTip("")
EndFunc
Func _OnExit()
DllClose($hDll_Kernel32)
DllClose($hDll_Ntdll)
EndFunc
; ===============================
Func _ProcessSuspend($pid)
If Not $pid Then Return SetError(2)
Local $aiHandle = DllCall($hDll_Kernel32, "int", "OpenProcess", "int", 2035711, "int", False, "int", $pid)
Local $iSuccess = DllCall("ntdll.dll", "int", "NtSuspendProcess", "int", $aiHandle[0])
DllCall($hDll_Kernel32, "ptr", "CloseHandle", "ptr", $aiHandle)
Return SetError(IsArray($iSuccess) = 0, 0, IsArray($iSuccess) = 1)
EndFunc
Func _ProcessResume($pid)
If Not $pid Then Return SetError(2)
Local $aiHandle = DllCall($hDll_Kernel32, "int", "OpenProcess", "int", 2035711, "int", False, "int", $pid)
Local $iSuccess = DllCall("ntdll.dll", "int", "NtResumeProcess", "int", $aiHandle[0])
DllCall($hDll_Kernel32, "ptr", "CloseHandle", "ptr", $aiHandle)
Return SetError(IsArray($iSuccess) = 0, 0, IsArray($iSuccess) = 1)
EndFunc
Made ßy [Pen**Guy] and Sleepy Boy