User Story
As a server hosting company, I want an easier method to setup custom launch parameters so that I can rely on the original LGSM files without having to make manual changes to support easy launch param overrides.
Further Information
In most cases people host a couple servers and it all works fine. But when using automated systems to generate the config.json file to override the _default.json settings you can not override the launch parameters without hacking into files.
Current situation:
fn_parms(){
parms="\"${defaultmap}?AltSaveDirectoryName=${defaultmap}?listen?MultiHome=${ip}?MaxPlayers=${maxplayers}?QueryPort=${queryport}?RCONPort=${rconport}?Port=${port}\""
}
Suggested outcome:
launchparameters="\"${defaultmap}?AltSaveDirectoryName=${defaultmap}?listen?MultiHome=${ip}?MaxPlayers=${maxplayers}?QueryPort=${queryport}?RCONPort=${rconport}?Port=${port}\""
fn_parms(){
parms="${launchparameters}"
}
User Story
As a server hosting company, I want an easier method to setup custom launch parameters so that I can rely on the original LGSM files without having to make manual changes to support easy launch param overrides.
Further Information
In most cases people host a couple servers and it all works fine. But when using automated systems to generate the
config.jsonfile to override the_default.jsonsettings you can not override the launch parameters without hacking into files.Current situation:
Suggested outcome: