Register for your free account! | Forgot your password?

Go Back   elitepvpers > Shooter > S4 League
You last visited: Today at 17:50

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Help with my trainer please!

Discussion on Help with my trainer please! within the S4 League forum part of the Shooter category.

Reply
 
Old   #1
 
Javierz's Avatar
 
elite*gold: 0
Join Date: Apr 2010
Posts: 41
Received Thanks: 296
Exclamation Help with my trainer please!

Hello !

I made my own trainer, but 'dont work'!




Quote:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <NomadMemory.au3>
#RequireAdmin

#Region ### START Koda GUI section ### Form=C:\Program Files\koda_1.7.2.0\Forms\S4Trainer.kxf
$Form1 = GUICreate("S4League Trainer", 241, 214, 192, 124)
$pushbackinput = GUICtrlCreateInput("3000", 96, 24, 129, 21)
$Label1 = GUICtrlCreateLabel("Pushback", 8, 24, 64, 20)
GUICtrlSetFont(-1, 10, 400, 0, "MS Sans Serif")
$Label2 = GUICtrlCreateLabel("Critical DMG", 8, 56, 78, 20)
GUICtrlSetFont(-1, 10, 400, 0, "MS Sans Serif")
$criticalinput = GUICtrlCreateInput("2.5", 96, 56, 129, 21)
$cutspeedinput = GUICtrlCreateInput("0.8", 96, 88, 129, 21)
$Label3 = GUICtrlCreateLabel("CutSpeed", 8, 88, 64, 20)
GUICtrlSetFont(-1, 10, 400, 0, "MS Sans Serif")
$Label4 = GUICtrlCreateLabel("Sp Reg", 8, 120, 50, 20)
GUICtrlSetFont(-1, 10, 400, 0, "MS Sans Serif")
$spreginput = GUICtrlCreateInput("7.5", 96, 120, 129, 21)
$Button1 = GUICtrlCreateButton("Start Hack", 8, 160, 225, 25, $WS_GROUP)
$Label5 = GUICtrlCreateLabel("Javierz Creation", 80, 192, 80, 19)
GUICtrlSetFont(-1, 10, 400, 2, "Monotype Corsiva")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
exit
Case $Button1
$valcriticalinput = GUICtrlRead($criticalinput)
$valcutspeed = GUICtrlRead($cutspeedinput)
$valpushback = GUICtrlRead($pushbackinput)
Start()
Exit


EndSwitch
WEnd

Func Start()
ToolTip("Waiting for S4Client.exe ...", 0, 0)
$READCRIT = GUICtrlRead($criticalinput)
$READCUT = GUICtrlRead($cutspeedinput)
$READPUSH = GUICtrlRead($pushbackinput)
$READSP = GUICtrlRead($spreginput)

$EXISTS = ProcessWait("S4Client.exe")
Sleep(500)
$OPEN = _MEMORYOPEN(ProcessExists("S4Client.exe"))
$CRIT = 0x0C709CC
$CUT = 0x0C50718
$PUSH = 0x0C4C5E0
$SP = 0x0C4C5E8



$READ1 = _MEMORYREAD($CRIT, $OPEN, "float")
$READ2 = _MEMORYREAD($CUT, $OPEN, "float")
$READ3 = _MEMORYREAD($PUSH, $OPEN, "float")
$READ4 = _MEMORYREAD($SP, $OPEN, "float")


$WRITE1 = _MEMORYWRITE($CRIT, $OPEN, $READCRIT, "float")
$WRITE2 = _MEMORYWRITE($CUT, $OPEN, $READCUT, "float")
$WRITE3 = _MEMORYWRITE($PUSH, $OPEN, $READPUSH, "float")
$WRITE4 = _MEMORYWRITE($SP, $OPEN, $READSP, "float")

Exit
EndFunc

I open the trainer (as admin), I press the start button (Start Hack) will show the tooltip
Run S4Lauch
Press Start
running the game tooltip is closed


But the hack does not do its function
once inside the game

Help me please?




















(I Speak Spanish, I understand a little English and German. English bad )

Thanks,
Javierz
Javierz is offline  
Old 06/03/2010, 17:05   #2
 
Smincke2's Avatar
 
elite*gold: 0
Join Date: Jul 2009
Posts: 184
Received Thanks: 299
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <NomadMemory.au3>
#RequireAdmin
SetPrivilege("SeDebugPrivilege", 1)
#Region ### START Koda GUI section ### Form=C:\Program Files\koda_1.7.2.0\Forms\S4Trainer.kxf
$Form1 = GUICreate("S4League Trainer", 241, 214, 192, 124)
$pushbackinput = GUICtrlCreateInput("3000", 96, 24, 129, 21)
$Label1 = GUICtrlCreateLabel("Pushback", 8, 24, 64, 20)
GUICtrlSetFont(-1, 10, 400, 0, "MS Sans Serif")
$Label2 = GUICtrlCreateLabel("Critical DMG", 8, 56, 78, 20)
GUICtrlSetFont(-1, 10, 400, 0, "MS Sans Serif")
$criticalinput = GUICtrlCreateInput("2.5", 96, 56, 129, 21)
$cutspeedinput = GUICtrlCreateInput("0.8", 96, 88, 129, 21)
$Label3 = GUICtrlCreateLabel("CutSpeed", 8, 88, 64, 20)
GUICtrlSetFont(-1, 10, 400, 0, "MS Sans Serif")
$Label4 = GUICtrlCreateLabel("Sp Reg", 8, 120, 50, 20)
GUICtrlSetFont(-1, 10, 400, 0, "MS Sans Serif")
$spreginput = GUICtrlCreateInput("7.5", 96, 120, 129, 21)
$Button1 = GUICtrlCreateButton("Start Hack", 8, 160, 225, 25, $WS_GROUP)
$Label5 = GUICtrlCreateLabel("Javierz Creation", 80, 192, 80, 19)
GUICtrlSetFont(-1, 10, 400, 2, "Monotype Corsiva")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
exit
Case $Button1
$valcriticalinput = GUICtrlRead($criticalinput)
$valcutspeed = GUICtrlRead($cutspeedinput)
$valpushback = GUICtrlRead($pushbackinput)
Start()
Exit


EndSwitch
WEnd

Func Start()
ToolTip("Waiting for S4Client.exe ...", 0, 0)
$READCRIT = GUICtrlRead($criticalinput)
$READCUT = GUICtrlRead($cutspeedinput)
$READPUSH = GUICtrlRead($pushbackinput)
$READSP = GUICtrlRead($spreginput)

$EXISTS = ProcessWait("S4Client.exe")
Sleep(500)
$OPEN = _MEMORYOPEN(ProcessExists("S4Client.exe"))
$CRIT = 0x0C709CC
$CUT = 0x0C50718
$PUSH = 0x0C4C5E0
$SP = 0x0C4C5E
Sleep(500)
Do
$WRITE1 = _MEMORYWRITE($CRIT, $OPEN, $READCRIT, "float")
$WRITE2 = _MEMORYWRITE($CUT, $OPEN, $READCUT, "float")
$WRITE3 = _MEMORYWRITE($PUSH, $OPEN, $READPUSH, "float")
$WRITE4 = _MEMORYWRITE($SP, $OPEN, $READSP, "float")
Until _MEMORYREAD($CRIT, $OPEN, "float") = $CRIT
Exit
EndFunc


;Diese Script sieht aus als ob du es Decompliert hättest weil alle variablen groß geschrieben sind
Smincke2 is offline  
Old 06/04/2010, 02:59   #3
 
ZzcarloszZ's Avatar
 
elite*gold: 1
Join Date: Dec 2009
Posts: 141
Received Thanks: 630
Te aparece error porque tienes ejecutado en procesos "EmptyProcess.exe"(Finalizalo)


If sirvio my Help Please Presses the Button of Thanks!
ZzcarloszZ is offline  
Old 06/05/2010, 01:58   #4
 
ZzcarloszZ's Avatar
 
elite*gold: 1
Join Date: Dec 2009
Posts: 141
Received Thanks: 630
Finaliza report, googlecrash,jusched, ssscheduler, y otros que crees que afecte S4Client.exe

Quote:
$CRIT = 0x0C709CC
$CUT = 0x0C50718
$PUSH = 0x0C4C5E0
$SP = 0x0C4C5E
pon la andress asi por ejem: 00FD45564, EN AUTOLOIT ES 0X00FD45564
ZzcarloszZ is offline  
Old 06/05/2010, 02:40   #5
 
elite*gold: 0
Join Date: Jun 2010
Posts: 35
Received Thanks: 30
Do it like this:
PHP Code:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <NomadMemory.au3>
#RequireAdmin

#Region ### START Koda GUI section ### Form=C:\Program Files\koda_1.7.2.0\Forms\S4Trainer.kxf
$Form1 GUICreate("S4League Trainer"241214192124)
$pushbackinput GUICtrlCreateInput("3000"962412921)
$Label1 GUICtrlCreateLabel("Pushback"8246420)
GUICtrlSetFont(-1104000"MS Sans Serif")
$Label2 GUICtrlCreateLabel("Critical DMG"8567820)
GUICtrlSetFont(-1104000"MS Sans Serif")
$criticalinput GUICtrlCreateInput("2.5"965612921)
$cutspeedinput GUICtrlCreateInput("0.8"968812921)
$Label3 GUICtrlCreateLabel("CutSpeed"8886420)
GUICtrlSetFont(-1104000"MS Sans Serif")
$Label4 GUICtrlCreateLabel("Sp Reg"81205020)
GUICtrlSetFont(-1104000"MS Sans Serif")
$spreginput GUICtrlCreateInput("7.5"9612012921)
$Button1 GUICtrlCreateButton("Start Hack"816022525$WS_GROUP)
$Label5 GUICtrlCreateLabel("Javierz Creation"801928019)
GUICtrlSetFont(-1104002"Monotype Corsiva")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
$nMsg 
GUIGetMsg()
Switch 
$nMsg
    
Case $Button1
    Start
()
Case 
$GUI_EVENT_CLOSE
exit
EndSwitch
WEnd

Func Start
()
ToolTip("Waiting for S4Client.exe ..."00)
$READCRIT GUICtrlRead($criticalinput)
$READCUT GUICtrlRead($cutspeedinput)
$READPUSH GUICtrlRead($pushbackinput)
$READSP GUICtrlRead($spreginput)

$EXISTS ProcessWait("S4Client.exe")
Sleep(500)
$OPEN _MemoryOpen(ProcessExists("S4Client.exe"))
$CRIT 0x00C709CC
$CUT 
0x00C50718
$PUSH 
0x00C4C5E0
$SP 
0x00C4C5E8

$WRITE1 
_MemoryWrite($CRIT$OPEN$READCRIT"float")
$WRITE2 _MemoryWrite($CUT$OPEN$READCUT"float")
$WRITE3 _MemoryWrite($PUSH$OPEN$READPUSH"float")
$WRITE4 _MemoryWrite($SP$OPEN$READSP"float")

$READ1 _MemoryRead($CRIT$OPEN"float")
$READ2 _MemoryRead($CUT$OPEN"float")
$READ3 _MemoryRead($PUSH$OPEN"float")
$READ4 _MemoryRead($SP$OPEN"float")

Exit
EndFunc 
Tischbein. is offline  
Reply




All times are GMT +1. The time now is 17:51.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.