
SALUT J'AI BESOIN D AIDE
En faite je conné des valeur QUI MARCHE ; je reporte mes valeur su AUTOIT grace au tuto de splinter mais sa marche pas donc si vous pouviez m'aider ... Voila le script
merci de m'aider au plus vite j'ai vraiment besoin d'aide et meme si j'ai fait une grosse betise disez la ^_^ bonne journée
En faite je conné des valeur QUI MARCHE ; je reporte mes valeur su AUTOIT grace au tuto de splinter mais sa marche pas donc si vous pouviez m'aider ... Voila le script
PHP:
#RequireAdmin
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_icon=..\..\Public\ssswwwxxx.exe
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
Global $Form1 = GUICreate("trainer by fsadki", 444, 296, 312, 167)
Global $Checkbox1 = GUICtrlCreateCheckbox("no Slang", 104, 72, 65, 49)
Global $Checkbox3 = GUICtrlCreateCheckbox("no intro", 184, 32, 73, 33)
Global $Button1 = GUICtrlCreateButton("Start !!!", 104, 120, 233, 57, $WS_GROUP)
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()
$PID = ProcessWait("S4Client.exe")
Sleep(1000)
Local $HPROCESS = _MEMORYOPEN($PID)
Sleep(1000)
If GUICtrlRead($Checkbox1) = 1 Then
_MEMORYWRITE(0x00F1D63A, $HPROCESS, "no_slang", "char[5]")
_MEMORYWRITE(0x00F1D60A, $HPROCESS, "no_slang", "char[5]")
_MEMORYWRITE(0x00F1D5DA, $HPROCESS, "no_slang", "char[5]")
EndIf
If GUICtrlRead($Checkbox2) = 1 Then
_MEMORYWRITE(0x404ADB8C, $HPROCESS, "no_into" , "char[4]")
_MEMORYWRITE(0x010F50C0, $HPROCESS, "no_into" , "char[4]")
EndIf
EndFunc
Exit