Re: Cloudhost SPADS confs
Posted: 07 Feb 2019, 07:37
That's kind of you - I've moved this into the SPADS subforum.
Open Source Realtime Strategy Game Engine
https://springrts.com/phpbb/
Thanks !
Here are some questions/remarks to help you fix them:
It seems you tightened the output flood protection. Did you do that because your autohost got kicked due to flooding ? This shouldn't happen with default values, except if you don't have bot flag. Or maybe the thresholds have been modified at uberserver side and then I would need to change the defaults...PROAngel wrote: ↑06 Feb 2019, 17:54Code: Select all
# Output flood protections sendRecordPeriod:10 maxBytesSent:10000 maxLowPrioBytesSent:8000
In your example it's not really useful to allow at the same time multiple values for "preset" and multiple values for "hostingPreset/battlePreset". In a way, hosting presets and battle presets are both already included in global presets.PROAngel wrote: ↑06 Feb 2019, 17:54Code: Select all
# Presets preset:default|ffa|teams hostingPreset:default|ffa|teams battlePreset:default|ffa|teams
Code: Select all
preset:default|ffa|teams
hostingPreset:default
battlePreset:default
Code: Select all
[ffa]
preset:ffa|default|teams
hostingPreset:ffa
battlePreset:ffa
The value "16" is allowed twice here, once explicitly with the value "16", and another time through the range "2-16". You can simplify that:
Code: Select all
nbTeams:2|2-16
This prevents non-privileged players from joining a game in progress as spectator, is this what you intended ?
The "battlePreset" setting is defined twice in your presets, only the first declaration is taken in to account for each preset, SPADS should give you a warning about that when you launch it.PROAngel wrote: ↑06 Feb 2019, 17:54Code: Select all
[ffa] description:Free for all map:Dworld Acidic battlePreset:ffa nbTeams:16 battlePreset:default|teams [teams] description:Teams map:DeltaSiegeDry battlePreset:ffa nbTeams:2|2-16 battlePreset:default|ffa
There are two main problems here:PROAngel wrote: ↑06 Feb 2019, 17:54 BattlePresets.confCode: Select all
[default] description:Default battle settings resetoptions:1 disabledunits:-* startpostype:2|0|1 maxunits: 5000 autoLock: off disabledunits:corbuzz;armvulc;armlun;corsok [ffa] description:FFA settings resetoptions:1 disabledunits:-* startpostype:1 teamSize:1 nbTeams:16 nbPlayerById:1 mo_preventcombomb: 1 mo_ffa: 1 maxunits: 5000 autoBalance: on autoLock: off disabledunits:corbuzz;armvulc;armlun;corsok [teams] description:Team game settings resetoptions:1 disabledunits:-* startpostype:2|0|1 maxunits: 5000 autoBalance: on autoLock: off nbTeams:2 disabledunits:corbuzz;armvulc;armlun;corsok