tinboye Posted March 24, 2017 Share Posted March 24, 2017 anyone have instructions on how i can allow my clients to run BEC along with their arma server Link to comment Share on other sites More sharing options...
slenky Posted March 24, 2017 Share Posted March 24, 2017 Rename your bec file to becSERVICEID.exe (ie bec651.exe) and try this script: if exist bec/Bec.exe goto start_bec exit :start_bec cd bec start /im Bec%ThisService_ServiceId%.exe -f Config.cfg >nul 2>nul && ( echo BEC is runned! ) || ( echo Error with BEC running *** Please Contact Support *** ) exit Link to comment Share on other sites More sharing options...
numpty Posted August 5, 2017 Share Posted August 5, 2017 I have bec auto run on server start band it restarts each server automatically Link to comment Share on other sites More sharing options...
Jus61 Posted December 24, 2018 Share Posted December 24, 2018 echo. echo Starting Bec timeout 10 :: start bec set becpath="%ThisService_RootDirectory%battleye\Bec" cd /d %becpath% start Bec.exe -f Config.cfg --dsc echo. echo Server Started 100% Link to comment Share on other sites More sharing options...
sparky81 Posted December 26, 2018 Share Posted December 26, 2018 first you need to rename BEC with after created... @echo off set BEC_LOCATION="%ThisService_WorkingDirectory%\BEC" cd "%BEC_LOCATION%" ren BEC.exe BEC_%ThisService_ServiceId%.exe then make a new script for after started with... @echo off set BEC_LOCATION="%ThisService_WorkingDirectory%\BEC" cd "%BEC_LOCATION%" start BEC_%ThisService_ServiceId%.exe -f config.cfg --dsc and for restart BEC have this... @echo off taskkill /F /IM BEC_%ThisService_ServiceId%.exe set BEC_LOCATION="%ThisService_WorkingDirectory%\BEC" cd "%BEC_LOCATION%" start BEC_%ThisService_ServiceId%.exe -f config.cfg --dsc Hope this helps guys its how i have it in my cfg's and they don't let me down. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now