- Logdateien zur Fehleranalyse
- Nein, ich habe keine Logdateien hochgeladen
A civilian player can see the location of the police. How can I disable this?
A civilian player can see the location of the police. How can I disable this?
Arma 3 Game Profile Options -> autoReport=0;
Arma 3 Game Profile Options -> autoReport=0;
I could not find such a file in my server files.
I could not find such a file in my server files.
Check your start Params and search for:
"-profiles=C:\server\arma3\MaltisLife\serverprofile" (example for mine)
Move to the destination folder and go into:
If you can't find the setting, just add it:
class DifficultyPresets
{
class CustomDifficulty
{
class Options
{
version=1;
blood=1;
singleVoice=0;
gamma=1;
brightness=1;
maxSamplesPlayed=96;
weaponCrosshair=0;
enemyTags=0; // USEFULL TO TAKE WITH, TOO
friendlyTags=0; // USEFULL TO TAKE WITH, TOO
groupIndicators=2;
volumeCD=5;
volumeFX=5;
volumeSpeech=5;
volumeVoN=10;
visionAid=0;
vonRecThreshold=0.029999999;
autoReport=0; // <------------------ HERE IS IT, WHERE DOESN'T MATTER!
mapContent=1;
thirdPersonView=1;
tacticalPing=0;
waypoints=2;
commands=2;
detectedMines=0;
reducedDamage=0;
deathMessages=1;
};
aiLevelPreset=3;
};
class CustomAILevel
{
skillAI=0.5;
precisionAI=0.1;
};
};
At the end you have to set your Profile (name) in the server.cfg under the mission Settings:
class Missions {
class ARMA3 {
template = Maltis_Life.Altis;
difficulty = "Custom";
};
};
Done