Register for your free account! | Forgot your password?

You last visited: Today at 21:47

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

Advertisement



S4Remnants Stun Tool

Discussion on S4Remnants Stun Tool within the S4 League Hacks, Bots, Cheats & Exploits forum part of the S4 League category.

Reply
 
Old   #1
 
crocodile13337's Avatar
 
elite*gold: 0
Join Date: Nov 2019
Posts: 59
Received Thanks: 58
S4Remnants Stun Tool

[B][CENTER]
Unzip both files in the same folder
Always start the tool when S4Client is already running
Adjust or remove the stun time of both weapons
The GUI is really easy to use, just read the settings


Screenshot of the tool:




Video on S4Remnants:



Patch Notes
Version 1.0 on 22/03/2020
x

_____________________________________________





File size increased to prevent reverse engineering
crocodile13337 is offline  
Thanks
2 Users
Old 03/22/2020, 08:35   #2
 
elite*gold: 0
Join Date: Mar 2017
Posts: 13
Received Thanks: 2
Works Win7 x64.
questionn52 is offline  
Old 03/22/2020, 12:42   #3
 
0N1K4G3's Avatar
 
elite*gold: 50
Join Date: Jan 2017
Posts: 703
Received Thanks: 592
Leak. This is mine.
Also video is mine too.
Do you think you're good at reverse engineering lmao. Another alexmen10 fk off
Wanna see a proof? xD
Code:
Const $processName = "S4Client.exe"
Const $CGameManager = 0x17293C0
Const $IsInRoom = 0x17295D8

$PROCESS = _MemoryOpen(ProcessExists("S4Client.exe"))
$Client = _MemoryModuleGetBaseAddress(ProcessExists("S4Client.exe"),"S4Client.exe")

#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Stun Remover v1", 290, 186, -1, -1)
$Group1 = GUICtrlCreateGroup("PS Stun Remover", 8, 8, 273, 81)
$Label1 = GUICtrlCreateLabel("Remove stun after", 24, 32, 91, 17)
$Input1 = GUICtrlCreateInput("1000", 120, 29, 65, 21)
$Label2 = GUICtrlCreateLabel("milliseconds", 192, 32, 60, 17)
$Checkbox1 = GUICtrlCreateCheckbox("Enable", 24, 56, 57, 17)
GUICtrlCreateGroup("", -99, -99, 1, 1)
$Group2 = GUICtrlCreateGroup("CS Stun Remover", 8, 96, 273, 81)
$Label3 = GUICtrlCreateLabel("Remove stun after", 24, 120, 91, 17)
$Input2 = GUICtrlCreateInput("1000", 120, 117, 65, 21)
$Label4 = GUICtrlCreateLabel("milliseconds", 192, 120, 60, 17)
$Checkbox2 = GUICtrlCreateCheckbox("Enable", 24, 144, 57, 17)
GUICtrlCreateGroup("", -99, -99, 1, 1)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
	$nMsg = GUIGetMsg()
	Switch $nMsg
		Case $GUI_EVENT_CLOSE
			Exit
		Case $Checkbox1
			If GUICtrlRead($Checkbox1) = 1 Then
				AdlibRegister("IsPSStunned",1)
			Else
				AdlibUnRegister("IsPSStunned")
			EndIf
		Case $Checkbox2
			If GUICtrlRead($Checkbox2) = 1 Then
				AdlibRegister("IsCSStunned",1)
			Else
				AdlibUnRegister("IsCSStunned")
			EndIf
	EndSwitch
WEnd

Func IsPSStunned()
If IsInRoom() > 0 Then
$PS0 = _MemoryRead($Client + $CGameManager, $PROCESS, "dword")
$PS1 = _MemoryRead($PS0 + 0x124,$PROCESS,"dword")
$PS2 = _MemoryRead($PS1 + 0x8,$PROCESS,"dword")
$PS3 = _MemoryRead($PS2 + 0x34,$PROCESS,"dword")
$PS4 = _MemoryRead($PS3 + 0x64,$PROCESS,"dword")
If $PS4 > GuiCtrlRead($Input1) Then
_MemoryWrite($PS3 + 0x64,$PROCESS,5000,"dword")
EndIf
EndIf
EndFunc

Func IsCSStunned()
If IsInRoom() > 0 Then
$CS0 = _MemoryRead($Client + $CGameManager, $PROCESS, "dword")
$CS1 = _MemoryRead($CS0 + 0x124,$PROCESS,"dword")
$CS2 = _MemoryRead($CS1 + 0x8,$PROCESS,"dword")
$CS3 = _MemoryRead($CS2 + 0x4C,$PROCESS,"dword")
$CS4 = _MemoryRead($CS3 + 0x64,$PROCESS,"dword")
If $CS4 > GuiCtrlRead($Input2) Then
_MemoryWrite($CS3 + 0x64,$PROCESS,5000,"dword")
EndIf
EndIf
EndFunc

Func IsInRoom()
$Status = _MemoryRead($Client + $IsInRoom, $PROCESS, "dword")
Return $Status
EndFunc
0N1K4G3 is offline  
Thanks
8 Users
Old 03/24/2020, 22:39   #4
 
elite*gold: 0
Join Date: Mar 2018
Posts: 28
Received Thanks: 0
Quote:
Originally Posted by 0N1K4G3 View Post
Leak. This is mine.
Also video is mine too.
Do you think you're good at reverse engineering lmao. Another alexmen10 fk off
Wanna see a proof? xD

Code:
Const $processName = "S4Client.exe"
Const $CGameManager = 0x17293C0
Const $IsInRoom = 0x17295D8

$PROCESS = _MemoryOpen(ProcessExists("S4Client.exe"))
$Client = _MemoryModuleGetBaseAddress(ProcessExists("S4Client.exe"),"S4Client.exe")

#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Stun Remover v1", 290, 186, -1, -1)
$Group1 = GUICtrlCreateGroup("PS Stun Remover", 8, 8, 273, 81)
$Label1 = GUICtrlCreateLabel("Remove stun after", 24, 32, 91, 17)
$Input1 = GUICtrlCreateInput("1000", 120, 29, 65, 21)
$Label2 = GUICtrlCreateLabel("milliseconds", 192, 32, 60, 17)
$Checkbox1 = GUICtrlCreateCheckbox("Enable", 24, 56, 57, 17)
GUICtrlCreateGroup("", -99, -99, 1, 1)
$Group2 = GUICtrlCreateGroup("CS Stun Remover", 8, 96, 273, 81)
$Label3 = GUICtrlCreateLabel("Remove stun after", 24, 120, 91, 17)
$Input2 = GUICtrlCreateInput("1000", 120, 117, 65, 21)
$Label4 = GUICtrlCreateLabel("milliseconds", 192, 120, 60, 17)
$Checkbox2 = GUICtrlCreateCheckbox("Enable", 24, 144, 57, 17)
GUICtrlCreateGroup("", -99, -99, 1, 1)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
	$nMsg = GUIGetMsg()
	Switch $nMsg
		Case $GUI_EVENT_CLOSE
			Exit
		Case $Checkbox1
			If GUICtrlRead($Checkbox1) = 1 Then
				AdlibRegister("IsPSStunned",1)
			Else
				AdlibUnRegister("IsPSStunned")
			EndIf
		Case $Checkbox2
			If GUICtrlRead($Checkbox2) = 1 Then
				AdlibRegister("IsCSStunned",1)
			Else
				AdlibUnRegister("IsCSStunned")
			EndIf
	EndSwitch
WEnd

Func IsPSStunned()
If IsInRoom() > 0 Then
$PS0 = _MemoryRead($Client + $CGameManager, $PROCESS, "dword")
$PS1 = _MemoryRead($PS0 + 0x124,$PROCESS,"dword")
$PS2 = _MemoryRead($PS1 + 0x8,$PROCESS,"dword")
$PS3 = _MemoryRead($PS2 + 0x34,$PROCESS,"dword")
$PS4 = _MemoryRead($PS3 + 0x64,$PROCESS,"dword")
If $PS4 > GuiCtrlRead($Input1) Then
_MemoryWrite($PS3 + 0x64,$PROCESS,5000,"dword")
EndIf
EndIf
EndFunc

Func IsCSStunned()
If IsInRoom() > 0 Then
$CS0 = _MemoryRead($Client + $CGameManager, $PROCESS, "dword")
$CS1 = _MemoryRead($CS0 + 0x124,$PROCESS,"dword")
$CS2 = _MemoryRead($CS1 + 0x8,$PROCESS,"dword")
$CS3 = _MemoryRead($CS2 + 0x4C,$PROCESS,"dword")
$CS4 = _MemoryRead($CS3 + 0x64,$PROCESS,"dword")
If $CS4 > GuiCtrlRead($Input2) Then
_MemoryWrite($CS3 + 0x64,$PROCESS,5000,"dword")
EndIf
EndIf
EndFunc

Func IsInRoom()
$Status = _MemoryRead($Client + $IsInRoom, $PROCESS, "dword")
Return $Status
EndFunc
works or not say us please.
G0DYAT0 is offline  
Old 03/24/2020, 23:00   #5
 
crocodile13337's Avatar
 
elite*gold: 0
Join Date: Nov 2019
Posts: 59
Received Thanks: 58
Quote:
Originally Posted by G0DYAT0 View Post
works or not say us please.
Yes.
crocodile13337 is offline  
Old 03/25/2020, 00:04   #6
 
elite*gold: 0
Join Date: Mar 2018
Posts: 28
Received Thanks: 0
Quote:
Originally Posted by crocodile13337 View Post
Yes.
true, thank you, also sp/hp, thanks for your work, idc leak or not, ty for share
G0DYAT0 is offline  
Old 03/25/2020, 00:33   #7
 
crocodile13337's Avatar
 
elite*gold: 0
Join Date: Nov 2019
Posts: 59
Received Thanks: 58
Quote:
Originally Posted by G0DYAT0 View Post
true, thank you, also sp/hp, thanks for your work, idc leak or not, ty for share
Other people tried to make money with it, so I just uploaded it for everyone.
crocodile13337 is offline  
Thanks
1 User
Old 03/25/2020, 09:38   #8
 
elite*gold: 0
Join Date: Mar 2018
Posts: 28
Received Thanks: 0
Talking

Quote:
Originally Posted by crocodile13337 View Post
Other people tried to make money with it, so I just uploaded it for everyone.
yes, you are nice, i knew it <3
G0DYAT0 is offline  
Old 03/25/2020, 13:09   #9
 
0N1K4G3's Avatar
 
elite*gold: 50
Join Date: Jan 2017
Posts: 703
Received Thanks: 592
Quote:
Originally Posted by crocodile13337 View Post
Other people tried to make money with it, so I just uploaded it for everyone.
Yeah it was me, because i created it for myself. When u share it i gave source. Maybe some braincancers will understand that you are a leecher.

Quote:
Originally Posted by G0DYAT0 View Post
true, thank you, also sp/hp, thanks for your work, idc leak or not, ty for share
You're welcome
0N1K4G3 is offline  
Thanks
3 Users
Old 03/26/2020, 04:08   #10
 
crocodile13337's Avatar
 
elite*gold: 0
Join Date: Nov 2019
Posts: 59
Received Thanks: 58
Added a new and better video.
crocodile13337 is offline  
Old 03/26/2020, 11:35   #11
 
elite*gold: 0
Join Date: Nov 2012
Posts: 1
Received Thanks: 0
Why i get Virus Info Trojan:Win32/Occamy.C o.O
NaturKlinge23 is offline  
Old 04/11/2020, 00:55   #12
 
elite*gold: 0
Join Date: Dec 2019
Posts: 3
Received Thanks: 0
hp/sp tool dont works for me
Pay2Pal is offline  
Reply


Similar Threads Similar Threads
S4Remnants HP/SP Tool
04/02/2022 - S4 League Hacks, Bots, Cheats & Exploits - 70 Replies
Version 1.2 updated on 26/03/2020 Download the update! The commands are explained in the console Always start the console when S4Client is already running The HP and SP should always be changed when you are already inside the room Refill your HP and SP completely with + and -
S4Remnants [ENG S4L PServer | Custom Items | Season 9 | BALANCED | Daily Events]
01/13/2020 - S4 League - 43 Replies
Server was stolen. Sorry if you had terrible experience at S4R with these lags and rude people.
133 Beschwöer auf Eternia Mit Top Equip B6 Eva Cast stun stun Speed 133+15....etc
10/13/2010 - Last Chaos Trading - 22 Replies
Hey ich verkaufe einen Beschi auf eternia der ist : -133 Beschwi -Meteo auf lvl 3 -Alle anderen ab 102 -Fullskilled Equip : Schmuck 3x93



All times are GMT +2. The time now is 21:47.


Powered by vBulletin®
Copyright ©2000 - 2024, 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 ©2024 elitepvpers All Rights Reserved.