Hello,
long time no see. I quit the game a long time ago. But currently I was bored and because of this I started the computer and read some posts here.
People are saying that BattlEye is giving Global Bans for the one who uses the resourcecheck bypass.
Because of people are unsure whether the public resource check bypass contains a virus or not (or something that causes Globalban), I made a AutoIT script with explanation how to bypass the resource check.
It is useful for beginner who wants to start to learn AutoIT and for the people who do not trust anyone on epvp.
Maybe you could get a globalban. I didn't get a ban. Use at your own risk.
No, this doesn't mean that I will be active in S4League.
You can also download this in .au3 or .exe.
If you want to modify/run the script, you need to install AutoIT.
[Only registered and activated users can see links. Click Here To Register...]
Sincerely
long time no see. I quit the game a long time ago. But currently I was bored and because of this I started the computer and read some posts here.
People are saying that BattlEye is giving Global Bans for the one who uses the resourcecheck bypass.
Because of people are unsure whether the public resource check bypass contains a virus or not (or something that causes Globalban), I made a AutoIT script with explanation how to bypass the resource check.
It is useful for beginner who wants to start to learn AutoIT and for the people who do not trust anyone on epvp.
Maybe you could get a globalban. I didn't get a ban. Use at your own risk.
Code:
#EndRegion
#RequireAdmin
#include <FileConstants.au3>
#include <MsgBoxConstants.au3>
#include <WinAPIFiles.au3>
; Includes
; Script by xPlayDE (EPvP)
; If => Starts a if case
; EndIf => Ends the if case
If NOT FileExists( "clean_resource" ) AND NOT FileExists( "edited_resource" ) Then ; Check whether clean_resource and edited_resource exist in the current folder where this program is
DirCreate( "clean_resource" ) ; Create folder "clean_resource"
DirCreate( "edited_resource" ) ; Create folder "edited_resource"
MsgBox( 64, "Information", 'Folder "clean_resource" and "edited_resource" has been created. Start this tool again.' ) ; Info as Msgbox
Exit ; Exits the program
EndIf
If NOT FileExists( "S4Client.exe" ) Then ; Check whether the file "S4Client.exe" exist in the current folder where this program is
MsgBox( 0, "Error", "Put me in your S4League folder" ) ; Info as Msgbox
Exit
EndIf
if NOT FileExists( "clean_resource\resource.s4hd" ) OR NOT FileExists( "edited_resource\resource.s4hd" ) Then ; Check whether the created folder "clean_resource" and "edited_resource" include resource.s4hd
MsgBox( 0, "Error", 'Put your clean resource.s4hd in "clean_resource" folder and the edited resource.s4hd in "edited_resource" folder.' ) ; Info (MessageBox)
Exit
EndIf
$StartedState = 0
ToolTip( "Waiting for S4League..", 0, 0 ) ; Info
FileCopy( "edited_resource\resource.s4hd", "resource.s4hd", $FC_OVERWRITE ) ; Copies the edited resource.s4hd from "edited_resource" folder to S4League folder
While 1 ; Creating a loop
If ProcessExists( "S4Client.exe" ) AND $StartedState = 0 Then ; Checks whether process "S4Client.exe" exists and checks whether $StartedState is zero or not
$StartedState = 1 ; Set $StartedState to one. Made this because of this should be executed one time.
ToolTip( "S4Client.exe found - Bypassing resourcecheck by switching resource.s4hd..", 0, 0 )
Sleep( 8000 ) ; Program will sleep for 8 seconds
FileCopy( "clean_resource\resource.s4hd", "resource.s4hd", $FC_OVERWRITE ) ; Copies the clean (original) resource.s4hd to S4League folder. (Bypassing resource.s4hd)
Exit
EndIf
Sleep( 10 ) ; Good for CPU, recommended to use it
WEnd
You can also download this in .au3 or .exe.
If you want to modify/run the script, you need to install AutoIT.
[Only registered and activated users can see links. Click Here To Register...]
Sincerely