After the new patch, having free time, I decided to update the S4 Address Searcher.
Initially, you will have to choose to open:
- S4 Address Searcher
- S4 Address Generator
The difference between these two programs we will see later.
S4 Address Searcher
ChangeLog
What is it?
Find many address
Address
1 Hit
200HP
0gravity
Card Hack
Cut Speed
Dodge Speed
Dragon Ball Dodge
Fast Fire
Ghost Mod
God Mode
hit Range
Wall Shoot
inf anchor
inf sp
Inf Walls BLOCKED
Instant Respawn
Reverse WallJump
Sentry delay
Sentry Range
SP Regen
Cam Hack
Air Walk
Anchor Delay
Anchor speed
Anchor Range
HP Wall
Wall Jump Height
Wall Jump Range
WallJump teleport
Conquest Hack (1/4)
Conquest Hack (2/4)
Conquest Hack (3/4)
Conquest Hack (4/4)
Damage x2
Damage x5
No lvl Channel
bind Range
Enemy hp recovery
Fast reload
inf anchor
Reverse WallJump
Speed Hack (W + W)
Speed Hack (walk)
Instant Touchdown BLOCKED
Sentry Range
Sentry delay
SP Regen
Fumbi Reset BLOCKED
Tutorial
Download S4 Address Searcher
Enter S4 Address Searcher folder S4League
open S4League
Wait until the login
Open the program as an administrator
Select S4 Address Searcher
Click on Search
Wait
Address found - will be saved in:
-------------------------------
If at the end of the research appears error means that it has not been possible to find the address
S4 Address Generator
With this program, you will be able to generate some address you selected (I don't have put a lot of address because there is the address searcher).
Tutorial
Download S4 Address Searcher
Open the program as an administrator
Select S4 Address Searcher
Select the address to generate
Click on Generate
Address found - will be generated in:
VirusTotal
10/47 sono falsi positivi
Use the address to create a Trainer (Example)
Here's an example of code to create the hack for the Dodge Speed:
The code is a little commented on, you should be able to understand how it works.
------------
Credits
LykosNiko
Initially, you will have to choose to open:
- S4 Address Searcher
- S4 Address Generator
The difference between these two programs we will see later.
S4 Address Searcher
ChangeLog
Code:
v0.1: First version v0.2: Find also the address of conquest hack v0.3: Works with the new patch / Find more address / Added S4 Address Generator
Find many address
Address
1 Hit
200HP
0gravity
Card Hack
Cut Speed
Dodge Speed
Dragon Ball Dodge
Fast Fire
Ghost Mod
God Mode
hit Range
Wall Shoot
inf anchor
inf sp
Inf Walls BLOCKED
Instant Respawn
Reverse WallJump
Sentry delay
Sentry Range
SP Regen
Cam Hack
Air Walk
Anchor Delay
Anchor speed
Anchor Range
HP Wall
Wall Jump Height
Wall Jump Range
WallJump teleport
Conquest Hack (1/4)
Conquest Hack (2/4)
Conquest Hack (3/4)
Conquest Hack (4/4)
Damage x2
Damage x5
No lvl Channel
bind Range
Enemy hp recovery
Fast reload
inf anchor
Reverse WallJump
Speed Hack (W + W)
Speed Hack (walk)
Instant Touchdown BLOCKED
Sentry Range
Sentry delay
SP Regen
Fumbi Reset BLOCKED
Tutorial
Download S4 Address Searcher
Enter S4 Address Searcher folder S4League
open S4League
Wait until the login
Open the program as an administrator
Select S4 Address Searcher
Click on Search
Wait
Address found - will be saved in:
Code:
C:\address
-------------------------------
If at the end of the research appears error means that it has not been possible to find the address
S4 Address Generator
With this program, you will be able to generate some address you selected (I don't have put a lot of address because there is the address searcher).
Tutorial
Download S4 Address Searcher
Open the program as an administrator
Select S4 Address Searcher
Select the address to generate
Click on Generate
Address found - will be generated in:
Code:
C:\addressgenerator
10/47 sono falsi positivi
Use the address to create a Trainer (Example)
Here's an example of code to create the hack for the Dodge Speed:
Code:
#include <ButtonConstants.au3> #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #include <NomadMemory.au3> ;Creating form $Form1 = GUICreate("Esempio", 181, 80, 192, 124) $Checkbox1 = GUICtrlCreateCheckbox("Dodge Speed", 8, 16, 97, 17) $Button1 = GUICtrlCreateButton("Start", 8, 40, 163, 25) ;Finish form GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Button1 Start() EndSwitch WEnd Func Start(); Start GUISetState(@SW_HIDE); Hide the form ToolTip("Open S4League",0,0); Tooltip $WAIT = ProcessWait("S4Client.exe"); Wait S4Client.exe $PID = ProcessExists("S4Client.exe"); Find S4Client.exe Sleep(500); Sleep $OPEN = _MemoryOpen ($PID); Open memory If GUICtrlRead($Checkbox1) = 1 Then ; If the checkbox is checked ... _MemoryWrite(0x005D455A,$OPEN,"1166872682","long") ; Change value EndIf ; End check Exit EndFunc
------------
Credits
LykosNiko