S4 League Hacking - Support

08/28/2015 22:09 golle12#1111
Wenn du bei ce unter "Edit -> Settings -> Debugger Options" bei "Debugger method" schaust nimm den "VEH Debugger" dann sollte der client beim attachen nicht crashen.
08/31/2015 21:20 bravemusashi#1112
Hello. im making my first trainer.
whats wrong with this code? its not working.
Code:
#RequireAdmin
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Version=Beta
#AutoIt3Wrapper_Compile_Both=y
#AutoIt3Wrapper_UseX64=y
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <NoMadMemory.au3>
#include <MsgBoxConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Beta Musashi's Trainer", 338, 100, 192, 124)
$Checkbox1 = GUICtrlCreateCheckbox("Inf Sp", 144, 40, 65, 17)
$Button1 = GUICtrlCreateButton("Exit", 136, 64, 75, 25)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

$Pid = ProcessExists("S4Client.exe")
 $OPEN = _MemoryOpen ($Pid)

$Infsp = _MemoryScan(_MemoryOpen(ProcessExists("S4Client.exe")),"2348303835")


Func _MemoryScan($ah_Handle, $pattern, $after = False, $iv_addrStart = 0x00000000, $iv_addrEnd = 0X0FFFFFFF, $step = 51200)
	If Not IsArray($ah_Handle) Then
		SetError(1)
		Return -1
	EndIf
	$pattern = StringRegExpReplace($pattern, "[^0123456789ABCDEFabcdef.]", "")
	If StringLen($pattern) = 0 Then
		SetError(2)
		Return -2
	EndIf
	For $addr = $iv_addrStart To $iv_addrEnd Step $step - (StringLen($pattern) / 2)
		StringRegExp(_MemoryRead($addr, $ah_Handle, "byte[" & $step & "]"), $pattern, 1, 2)
		If Not @error Then
			If $after Then
				Return StringFormat("0x%.8X", $addr + ((@extended - 2) / 2))
			Else
				Return StringFormat("0x%.8X", $addr + ((@extended - StringLen($pattern) - 2) / 2))
			EndIf
		EndIf
	Next
	Return -3
EndFunc   ;==>_MemoryScan

While 1
	$nMsg = GUIGetMsg()
	Switch $nMsg
		Case $GUI_EVENT_CLOSE
			Exit
		 Case $Button1
              Exit
            Case $Checkbox1
		If GUICtrlRead($Checkbox1) = 1 Then
     _memorywrite($InfSp,$open,"Hacked","Long")
Else
    _memorywrite($InfSp,$open,"Normal","Long")
EndIf
	EndSwitch
 WEnd
credits to @HaMaDa :)
09/01/2015 02:01 xKemya#1113
Quote:
Originally Posted by bravemusashi View Post
Hello. im making my first trainer.
whats wrong with this code? its not working.
Code:
#RequireAdmin
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Version=Beta
#AutoIt3Wrapper_Compile_Both=y
#AutoIt3Wrapper_UseX64=y
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <NoMadMemory.au3>
#include <MsgBoxConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Beta Musashi's Trainer", 338, 100, 192, 124)
$Checkbox1 = GUICtrlCreateCheckbox("Inf Sp", 144, 40, 65, 17)
$Button1 = GUICtrlCreateButton("Exit", 136, 64, 75, 25)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

$Pid = ProcessExists("S4Client.exe")
 $OPEN = _MemoryOpen ($Pid)

$Infsp = _MemoryScan(_MemoryOpen(ProcessExists("S4Client.exe")),"2348303835")


Func _MemoryScan($ah_Handle, $pattern, $after = False, $iv_addrStart = 0x00000000, $iv_addrEnd = 0X0FFFFFFF, $step = 51200)
	If Not IsArray($ah_Handle) Then
		SetError(1)
		Return -1
	EndIf
	$pattern = StringRegExpReplace($pattern, "[^0123456789ABCDEFabcdef.]", "")
	If StringLen($pattern) = 0 Then
		SetError(2)
		Return -2
	EndIf
	For $addr = $iv_addrStart To $iv_addrEnd Step $step - (StringLen($pattern) / 2)
		StringRegExp(_MemoryRead($addr, $ah_Handle, "byte[" & $step & "]"), $pattern, 1, 2)
		If Not @error Then
			If $after Then
				Return StringFormat("0x%.8X", $addr + ((@extended - 2) / 2))
			Else
				Return StringFormat("0x%.8X", $addr + ((@extended - StringLen($pattern) - 2) / 2))
			EndIf
		EndIf
	Next
	Return -3
EndFunc   ;==>_MemoryScan

While 1
	$nMsg = GUIGetMsg()
	Switch $nMsg
		Case $GUI_EVENT_CLOSE
			Exit
		 Case $Button1
              Exit
            Case $Checkbox1
		If GUICtrlRead($Checkbox1) = 1 Then
     _memorywrite($InfSp,$open,"Hacked","Long")
Else
    _memorywrite($InfSp,$open,"Normal","Long")
EndIf
	EndSwitch
 WEnd
credits to @HaMaDa :)
add my skype siktor199
09/01/2015 02:12 HaMaDa..#1114
Quote:
Originally Posted by Karim- View Post
add my skype siktor199
Already helped him.

09/05/2015 00:25 ZjadlbymBuraka#1115
How to extract files from s5 league? ResourceTool is not working
09/06/2015 18:46 golle12#1116
Quote:
Originally Posted by ZjadlbymBuraka View Post
How to extract files from s5 league? ResourceTool is not working
they changed the encrypt/decrypt key from the client so you need to write an own resource tool with the decrypt key in this s5 client.
09/07/2015 11:02 ZjadlbymBuraka#1117
I am able to replace all sets by one file called Item.x7

Is there any way to replace all weapons by one x7 file?

Do Alice Fumbi .scn file are ingame resources still?

Textures of Alice Fumbi are still in resources files
09/08/2015 12:31 huguli99#1118
Kann man auch skills mit x7 verändern? Wenn ja welche Datei, schon alles Rum versucht
09/08/2015 12:36 cVibexShop#1119
Quote:
Originally Posted by huguli99 View Post
Kann man auch skills mit x7 verändern? Wenn ja welche Datei, schon alles Rum versucht
Nein kann man nicht
09/08/2015 13:13 Euzinho457#1120
Can someone help me doing a traner?? Ill give credits to the person who helps me. Thx for the attention ^^
09/09/2015 10:56 huguli99#1121
Hallo ich habe gestern mein eigenen Trainer mit visual studio erstellt und habe alles genau richtig gemacht jedoch geht ingame nichts. Habe inf sp und godmode gemacht. Kann es sein das diese Methode schon outdated ist?
09/09/2015 12:02 Shinzuya#1122
Quote:
Originally Posted by huguli99 View Post
Hallo ich habe gestern mein eigenen Trainer mit visual studio erstellt und habe alles genau richtig gemacht jedoch geht ingame nichts. Habe inf sp und godmode gemacht. Kann es sein das diese Methode schon outdated ist?
Guck mal bitte in deinen Thread. :)
09/16/2015 02:46 yaser111#1123
hi support in the current summer event iv try'ed to use other stuff with huge amount ( like wep part 1 ) as coin, didnt know how at first then i kinda found a way i changed the icon of WP1 and its ID now its look like a coin ( even the event coin counting count my WP1 as Coins ) but its still not working its see's it as coins and when i try to spend them (after the window msg comfirmtion ) it says u need more ik that is what im missing is how to change the effect of WP1 to make it have coin effect but i didnt know how, i try'ed to contact (-Zonda (hellfire-2) the code founder but i cant find him on skype soo pls help and i give credits to who help me ty :)
09/19/2015 00:21 RazexSkillz#1124
Gibt es eine Instant Mission x7 datei die noch funktioniert?
Is there an Instant Mission x7 file that works?
09/19/2015 00:40 ilove20#1125
Message Hider: S4Client.exe+BF6EF

Well, this maybe useless and i don't care i just felt like releasing it, besides it maybe

useful when used with afk bots i mean you won't need a mouse clicker or whatever.

PS: basically this function is used for the most messages in the game so you can fish messages with it too.