Hi all,
I'm running a casual server and several requests have come in for me to lower the number of screamers/scouts. I believe the number of screamers is controlled in gamestages.xml.
Any ideas how num and maxAlive work? I'm guessing if I lower those numbers, less screamers will spawn perhaps?
What XML XPath code would I be writing to change all of the lines at once? Like if I wanted to set num and maxAlive to 50 across the board?
I'm running a casual server and several requests have come in for me to lower the number of screamers/scouts. I believe the number of screamers is controlled in gamestages.xml.
Code:
<spawner name="ScoutGSList">
<gamestage stage="1"><spawn group="scoutHordeStageGS1" num="1" maxAlive="2" duration="1"/></gamestage>
<gamestage stage="2"><spawn group="scoutHordeStageGS2" num="1" maxAlive="3" duration="1"/></gamestage>
<gamestage stage="5"><spawn group="scoutHordeStageGS5" num="3" maxAlive="6" duration="1"/></gamestage>
<gamestage stage="8"><spawn group="scoutHordeStageGS8" num="4" maxAlive="9" duration="1"/></gamestage>
...
<gamestage stage="1397"><spawn group="scoutHordeStageGS1397" num="295" maxAlive="256" duration="1"/></gamestage>
<gamestage stage="1414"><spawn group="scoutHordeStageGS1414" num="298" maxAlive="256" duration="1"/></gamestage>
<gamestage stage="1431"><spawn group="scoutHordeStageGS1431" num="300" maxAlive="256" duration="1"/></gamestage>
<gamestage stage="1448"><spawn group="scoutHordeStageGS1448" num="300" maxAlive="256" duration="1"/></gamestage>
<gamestage stage="1465"><spawn group="scoutHordeStageGS1465" num="300" maxAlive="256" duration="1"/></gamestage>
What XML XPath code would I be writing to change all of the lines at once? Like if I wanted to set num and maxAlive to 50 across the board?