Arma 3
Ultimate Warfare Rubber Edition
To anyone stuggling with server.cfg parameters
In your "@Ultimate Warfare Rubber Edition\addons" folder, open warfare_missions.pbo in an editor (I use VS Code) and Ctrl + F search for "//Parameters". You should see something along the lines of:



@Ultimate Warfare Rubber Edition\addons
class townsAmount {
title = "$STR_WF_PARAMETER_TownsAmountTitle";
values[] = {4};
texts[] = {"Full (19)"};
default = 4;
};


The class names, i.e. townsAmount, are the parameter names to set in your server.cfg. I'm just posting this because I had a hard time finding out how to set them and this might make someones life easier. Here is an example of what I have set:


class Missions
{
class Mission01
{
template = "ultimate_warfare_rubber_edition_malden.malden";
difficulty = "veteran";
class Params
{
//RHS Preset
aiGroupSizeAI = 10;
aiGroupSizePlayer = 10;
aiTeams = 1;
artilleryComputer = 1;
baseAICommander = 1;
baseAllies = 2;
baseAreaLimit = 3;
baseBuildingsLimit = 5;
basePatrols = 1;
baseStartingLocations = 0;
gameplayAlice = 1;
gameplayFastTravel = 1;
gameplaySpecialization = 1;
moduleAI = 2;
townsStrikerMax = 15;
townCivilians = 2;
townOccupDifficulty = 1;
townMaxPatrol = 4;
townsOccupationFactionEast = 6;
townsOccupationFactionWest = 7;
townsResistanceFaction = 2;
};
};
};


GOOD LUCK