Jump to content
Sign in to follow this  
muppet1856

A 3 Server throwing errors for missing addon content

Recommended Posts

I keep getting these two error messages when I start my dedicated server:

Warning Message: Addon 'A3_Structures_F_EPB_Items_Documents' requires addon 'A3_Structures_F_Items_Documents'

Warning Message: No entry 'config.bin/CfgVideoOptions/PPSSAOQuality/Disabled.textMethod'.

// These options are created by default
language="English";
adapter=-1;
3D_Performance=1.000000;
Resolution_W=800;
Resolution_H=600;
Resolution_Bpp=32;


// These options are important for performance tuning

MinBandwidth = 131072;       // Bandwidth the server is guaranteed to have (in bps). This value helps server to estimate bandwidth available. Increasing it to too optimistic values can increase lag and CPU load, as too many messages will be sent but discarded. Default: 131072
MaxBandwidth = 10000000000;     // Bandwidth the server is guaranteed to never have. This value helps the server to estimate bandwidth available.

MaxMsgSend = 128;       // Maximum number of messages that can be sent in one simulation cycle. Increasing this value can decrease lag on high upload bandwidth servers. Default: 128
MaxSizeGuaranteed = 512;     // Maximum size of guaranteed packet in bytes (without headers). Small messages are packed to larger frames. Guaranteed messages are used for non-repetitive events like shooting. Default: 512
MaxSizeNonguaranteed = 256;     // Maximum size of non-guaranteed packet in bytes (without headers). Non-guaranteed messages are used for repetitive updates like soldier or vehicle position. Increasing this value may improve bandwidth requirement, but it may increase lag. Default: 256

MinErrorToSend = 0.001;       // Minimal error to send updates across network. Using a smaller value can make units observed by binoculars or sniper rifle to move smoother. Default: 0.001
MinErrorToSendNear = 0.01;     // Minimal error to send updates across network for near units. Using larger value can reduce traffic sent for near units. Used to control client to server traffic as well. Default: 0.01

MaxCustomFileSize = 20000000;       // (bytes) Users with custom face or custom sound larger than this size are kicked when trying to connect.

//
// server.cfg
//
// comments are written with "//" in front of them.

// STEAM

steamport		=8766;
steamqueryport        	=27016;

// GLOBAL SETTINGS

hostname        	= "xxx";        // The name of the server that shall be displayed in the public server list
//password         	= "ServerAccessPassword";            		// Password for joining, eg connecting to the server
passwordAdmin         	= "xxx";                		// Password to become server admin. When you're in Arma MP and connected to the server, type '#login xyz'
reportingIP         	= "arma3pc.master.gamespy.com";            	// This is the default setting. Leave empty for private servers if you do not want your server listed publicly
logFile            	= "A3Master.log";
verifySignatures     	= 2;
requiredBuild = 114700;					// Require clients joining to have at least build 12345 of game, preventing obsolete clients to connect

// WELCOME MESSAGE ("message of the day")
// It can be several lines, separated by comma
// Empty messages "" will not be displayed at all but are only for increasing the interval

motd[]={
   "Welcome to the xxx",
   "IMPORTANT   Verify Signatures is enabled",
   "",
   "TS3 Server:     xxx",
   "Web:            xxx",
   "",
"No Racism - Period"
};
motdInterval 		= 5;            // Time interval (in seconds) between each message



// JOINING RULES
maxPlayers		= 40;		// Maximum amount of players. Civilians and watchers, beholder, bystanders and so on also count as player.
// VOTING
voteMissionPlayers	= 1;        	// Tells the server how many people must connect so that it displays the mission selection screen.
voteThreshold		= 0.33;     	// 33% or more players need to vote for something, for example an admin or a new map, to become effective
//voteMissionPlayers	= 0;

// INGAME SETTINGS
disableVoN		= 0;        	// If set to 1, Voice over Net will not be available
vonCodecQuality         = 8;        	// Quality from 1 to 10
persistent		= 1;        	// If 1, missions still run on even after the last player disconnected.

// MISSIONS CYCLE (see below)
//class Missions
//{
//          class Mission1
//         {
//              template="xxx";
//              difficulty="Veteran";
//          };
//};
kickDuplicate = 1;
equalModRequired = 0;
requiredSecureId = 2;
timeStampFormat = "short";

// SCRIPTING ISSUES
onUserConnected = "";           //
onUserDisconnected = "";         //
doubleIdDetected = "";           //

// SIGNATURE VERIFICATION
onUnsignedData = "kick (_this select 0)";     // unsigned data detected
onHackedData =    "kick (_this select 0)";   //"ban (_this select 0)";       // tampering of the signature detected
onDifferentData = "";

x:\Program files\Bohemia Interactive\ArmA 3\A3Master\arma3server.exe -ip=xxx.xxx.xxx.xxx -port=xx -profiles=PROFILE -config=PROFILE\CONFIG_xxx.cfg -cfg=PROFILE\Arma2_xxx.cfg -name=PROFILE -nopause

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×