82ndbravo1 0 Posted September 3, 2023 Ive had this problem that ive searched for and found few posts mentioning a fix but hasnt worked. My problem is Battleeye kicks for timing out if logged in as a admin. My config // NOTE: More parameters and details are available at http://community.bistudio.com/wiki/server.cfg // GENERAL SETTINGS hostname = "EPICDomination.Malden"; password = ""; passwordAdmin = ""; maxPlayers = "40"; persistent = 1; // VOICE CHAT disableVoN = 0; vonCodecQuality = 10; // VOTING voteMissionPlayers = 1; voteThreshold = 0.33; allowedVoteCmds[] = { {"admin", false, false}, {"kick", false, true, 0.51}, {"missions", false, false}, {"mission", false, false}, {"restart", false, false}, {"reassign", false, false} }; motd[] = { "Welcome to My Arma 3 Server", "Discord: discord.somewhere.com", "TeamSpeak: ts.somewhere.com", "Website: www.example.com" }; motdInterval = 5; // LOGGING timeStampFormat = "short"; logFile = "server.log"; // SECURITY BattlEye = 1; verifySignatures = 2; kickDuplicate = 1; allowedFilePatching = 1; // FILE EXTENSIONS allowedLoadFileExtensions[] = {"hpp","sqs","sqf","fsm","cpp","paa","txt","xml","inc","ext","sqm","ods","fxy","lip","csv","kb","bik","bikb","html","htm","biedi"}; allowedPreprocessFileExtensions[] = {"hpp","sqs","sqf","fsm","cpp","paa","txt","xml","inc","ext","sqm","ods","fxy","lip","csv","kb","bik","bikb","html","htm","biedi"}; allowedHTMLLoadExtensions[] = {"htm","html","php","xml","txt"}; // EVENT SCRIPTS - see http://community.bistudio.com/wiki/ArmA:_Server_Side_Scripting onUserConnected = ""; onUserDisconnected = ""; doubleIdDetected = ""; onUnsignedData = "kick (_this select 0)"; onHackedData = "kick (_this select 0)"; class Missions { class TestMission01 { template = EPICDomination.Malden; difficulty = "rookie"; class Params {}; }; }; Ive tried to add autoSelectMission = true; // should fix battleye kicks // MISSIONS CYCLE forcedDifficulty = "Veteran"; autoSelectMission = true; //<-- add here class Missions { class Mission1 { template="EPICDomination.Malden"; forcedDifficulty = "rookie"; }; Looking for a way to fix this or whats even causing it. Thanks for reading Share this post Link to post Share on other sites