Monday, June 2, 2025

FACEIT AC Launcher

- First install FACE IT AC on client in "super client" mode. 

- Make sure FACEIT AC doesn't run on startup by disabling FACEIT AC at startup tab in task manager.

- Make a batch file,rename it to "Faceit AC launcher.bat" then copy this script below into the file :

@echo off
setlocal

REM Check if "C:\Program Files\FACEIT AC1" exists
if exist "C:\Program Files\FACEIT AC1\" (
    REM If FACEIT AC1 exists, start faceitclient.exe
    start "" "C:\Program Files\FACEIT AC\faceitclient.exe"
) else (
    REM Rename "FACEIT AC" to "FACEIT AC1"
    ren "C:\Program Files\FACEIT AC" "FACEIT AC1"

    REM Copy contents from FACEIT AC to "C:\Program Files\FACEIT AC" folder
    xcopy /S /I "%~dp0" "C:\Program Files\FACEIT AC"

    REM Start faceitclient.exe
    start "" "C:\Program Files\FACEIT AC\faceitclient.exe"
)

endlocal

No comments:

Post a Comment