Jump to content
memtndude

Cannot add mods to server, server goes down.

Recommended Posts

So I started a new server to play Liberation on with my friends (and whoever else wants to join). 

 

I have the game up and running fine. I rented a server from Host Havoc. After installing the CUP Mods and NoFatigue mods, the server will not come up and you cannot connect to it. 

 

@CUP_Weapons;@CUP_Units;@CUP_Vehicles;@NoFatigue

 

Was added to my command line, but as soon as I use the custom command line, it stops working. Any help? Their support has not been able to reply about this recent discovery. 

Share this post


Link to post
Share on other sites

Disable and delete @NoFatigue addon, most of noFatigue mods are broken and or badly scriptet !

Some of them do add infinite loops and this can result in heavy negative performance on server.

 

To disable fatigue and sway in your missions, unpack them and add follow code to the init.sqf:

//player stamina and sway disable script
player enableFatigue false;
player enableStamina false;
player forceWalk false;
player allowSprint true;

//Turn off stupid stamina
if (hasinterface) then {
	waitUntil {!isnull player};
	player enableStamina false;
	player addEventHandler ["Respawn", {player enableStamina false}];
};

//Turn off stupid forcewalk
if (hasinterface) then {
	waitUntil {!isnull player};
	player forceWalk false;
	player addEventHandler ["Respawn", {player forceWalk false}];
};

// Custom Weapon Sway & Recoil
player setCustomAimCoef 0;
player setUnitRecoilCoefficient 0.1;

player addEventHandler ["Respawn", {player setCustomAimCoef 0;}];
player addEventHandler ["Respawn", {player setUnitRecoilCoefficient 0.1}];

then repack missions.

Share this post


Link to post
Share on other sites

So I finally got the server back up. I had to restore all config files etc. to their original settings.

 

Then I changed the fatigue in the config file as you suggested. 

 

I added all of my mods back and the server refused to come up, and I'm not sure why.

 

I then only ran the command for the CUP mods and A3 and the server came up, but the signature is different than the current version so I think that's from the server company having an outdated version. 

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

×