Already fixed the issue thanks for the quick reply tough.
I have only 1 more issue and thats that I can not use third person (here's my server.cfg)
// JOINING RULES
maxPlayers = 64;
kickDuplicate = 1;
verifySignatures = 0;
allowedFilePatching = 0;
//requiredBuild = 12345;
loopback = 0;
upnp = 0;
// Whitelists
admins[] = { };
headlessClients[] = { };
localClient[] = { };
// VOTING
voteMissionPlayers = 2000;
voteThreshold = 1;
// INGAME SETTINGS
forceRotorLibSimulation = 0;
disableVoN = 0;
vonCodec = 0;
vonCodecQuality = 0;
persistent = 1;
timeStampFormat = "none";
BattlEye = 1;
drawingInMap = 1;
allowedLoadFileExtensions[] = {"hpp","sqs","sqf","fsm","cpp","paa","txt","xml","inc","ext","sqm","ods","fxy","lip","csv","kb","bik","bikb","html","htm","biedi"}; //only allow files with those extensions to be loaded via loadFile command (since Arma 3 build 1.19.124216)
allowedPreprocessFileExtensions[] = {"hpp","sqs","sqf","fsm","cpp","paa","txt","xml","inc","ext","sqm","ods","fxy","lip","csv","kb","bik","bikb","html","htm","biedi"}; //only allow files with those extensions to be loaded via preprocessFile/preprocessFileLineNumber commands (since Arma 3 build 1.19.124323)
allowedHTMLLoadExtensions[] = {"htm","html","xml","txt"};
//allowedHTMLLoadURIs = {};
disconnectTimeout = 90;
maxdesync = 150;
maxping = 200;
maxpacketloss = 50;
// SCRIPTING ISSUES
onUserConnected = "";
onUserDisconnected = "";
doubleIdDetected = "";
// SIGNATURE VERIFICATION
onUnsignedData = "kick (_this select 0)";
onHackedData = "kick (_this select 0)";
onDifferentData = "";
// MISSIONS CYCLE
class Missions {
class MissionRotation1 {
template = Altis_Life.Altis;
difficulty = "Custom";
class Params{};
};
};
// DIFICULTY
class DifficultyPresets
{
class CustomDifficulty //"class Custom" as it is in the wiki documentation does not work but "class CustomDifficulty" does (and behaves as "class Custom" should)
{
class Options
{
groupIndicators = 0;
friendlyTags = 0;
enemyTags = 0;
detectedMines = 0;
commands = 0;
waypoints = 2;
weaponInfo = 1;
stanceIndicator = 1;
reducedDamage = 0;
staminaBar = 0;
weaponCrosshair = 0;
visionAid = 0;
thirdPersonView = 1;
cameraShake = 1;
scoreTable = 1;
deathMessages = 1;
vonID = 1;
mapContent = 0;
autoReport = 0;
multipleSaves = 0;
};
aiLevelPreset = 3;
};
class CustomAILevel
{
skillAI = 0.60000002;
precisionAI = 0.30000001;
};
};?