[CodeSource] Mon tout premier Trainer

    Publicités

Users Who Are Viewing This Thread (Total: 0, Members: 0, Guests: 0)

Status
Not open for further replies.

Irotosan

Membre actif
Nov 9, 2012
253
0
321
26
In You'r Dream
Salut tout le monde je tiens a vous donnez Le code source de mon tout premier hack s4league c’était un minitrainer en cadeau je vous donne des values a jours celle de godmode et sp infini :

Code Source :


PHP:
#RequireAdmin
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Icon=..\..\..\..\..\Program Files (x86)\alaplaya\S4League\S4League.ico
#AutoIt3Wrapper_Compile_Both=y
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <NomadMemory.au3>
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
$Form1 = GUICreate("Aides By Irotosan", 207, 61, 192, 124)
GUISetBkColor(0x0000FF)
$Checkbox1 = GUICtrlCreateCheckbox("GodMode", 8, 8, 97, 17)
$Checkbox2 = GUICtrlCreateCheckbox("SpInfini", 8, 32, 97, 17)
$Button1 = GUICtrlCreateButton("Start Hack", 112, 16, 75, 25)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

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

Func cheat()
	ToolTip("En Attente d'S4league ...", 0, 0)
	ProcessWait("S4Client.exe")
	$PID = ProcessExists("S4Client.exe")
	Sleep(500)
	$OPEN = _MEMORYOPEN($PID)
	_processsuspend("Aegis.exe")
	_processsuspend("Aegis64.exe")
	_processsuspend("HGWC.exe")
	_processsuspend("S4Client.exe")
	_processsuspend("XTrap.xt")
	Sleep(2000)
	If GUICtrlRead($Checkbox1) = 1 Then
		_MEMORYWRITE(0x00519785, $OPEN, "3135869072", "long")
	EndIf
	If GUICtrlRead($Checkbox2) = 1 Then
		_MEMORYWRITE(0x00481DA2, $OPEN, "2348565979", "long")
	EndIf
		_memoryclose(ProcessExists("S4Client.exe"))
	_processresume("Aegis.exe")
	_processresume("Aegis64.exe")
	_processresume("HGWC.exe")
	_processresume("S4Client.exe")
	_processresume("XTrap.xt")
	Exit 0
EndFunc
Func _PROCESSSUSPEND($PROCESS)
	$PROCESSID = ProcessExists($PROCESS)
	If $PROCESSID Then
		$AI_HANDLE = DllCall("kernel32.dll", "int", "OpenProcess", "int", 2035711, "int", False, "int", $PROCESSID)
		$I_SUCESS = DllCall("ntdll.dll", "int", "NtSuspendProcess", "int", $AI_HANDLE[0])
		DllCall("kernel32.dll", "ptr", "CloseHandle", "ptr", $AI_HANDLE)
		If IsArray($I_SUCESS) Then
			Return 1
		Else
			SetError(1)
			Return 0
		EndIf
	Else
		SetError(2)
		Return 0
	EndIf
EndFunc




Func _PROCESSRESUME($PROCESS)
	$PROCESSID = ProcessExists($PROCESS)
	If $PROCESSID Then
		$AI_HANDLE = DllCall("kernel32.dll", "int", "OpenProcess", "int", 2035711, "int", False, "int", $PROCESSID)
		$I_SUCESS = DllCall("ntdll.dll", "int", "NtResumeProcess", "int", $AI_HANDLE[0])
		DllCall("kernel32.dll", "ptr", "CloseHandle", "ptr", $AI_HANDLE)
		If IsArray($I_SUCESS) Then
			Return 1
		Else
			SetError(1)
			Return 0
		EndIf
	Else
		SetError(2)
		Return 0
	EndIf
EndFunc

Je vous ferait peut être un tutoriel d'explication

Cordialement,
 
Status
Not open for further replies.