Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - tommofork

#1
I don't know if there's a way to do it in game, but you can use an XML editor on your save to remove squads.  A good editor is Notepad++.  Open up your save, search for "battlestations" without the quotes, you'll see,

<li Class="battlestations.newSelectorThing">
<Squads>
<keys>
<li>M</li>
<li>K</li>
</keys>
<values>
<li Class="battlestations.Squad">
<SquadName>Mike</SquadName>
<PawnsInSquad>
<li>Human22</li>
</PawnsInSquad>
<Battlestations>
<keys />
<values />
</Battlestations>
<KeyBind>M</KeyBind>
</li>
<li Class="battlestations.Squad">
<SquadName>Kappa</SquadName>
<PawnsInSquad>
<li>Human22</li>
</PawnsInSquad>
<Battlestations>
<keys />
<values />
</Battlestations>
<KeyBind>K</KeyBind>
</li>
</values>
</Squads>
</li>


That shows two squads, squad Mike and Kappa, which share the same single squadmember and they've been assigned the M and K keys respectively.

To remove the squad and keybind, under <Keys> delete whichever you don't want, including the tags.  If I wanted to remove squad Mike and the M key, I'd delete <li>M</li>.

Then, I'd look at squad name tags, find <SquadName>Mike</SquadName>, and then starting from the <li Class="battlestations.Squad">  above the squad name, select and delete everything between <li Class="battlestations.Squad"> and the end of the </li> tag below the <KeyBind>M</KeyBind> line.  It should look like this now,

<li Class="battlestations.newSelectorThing">
<Squads>
<keys>
<li>K</li>
</keys>
<values>
<li Class="battlestations.Squad">
<SquadName>Kappa</SquadName>
<PawnsInSquad>
<li>Human22</li>
</PawnsInSquad>
<Battlestations>
<keys />
<values />
</Battlestations>
<KeyBind>K</KeyBind>
</li>
</values>
</Squads>
</li>


If I wanted to remove all squads, I'd do the same for all of them and end up with,
<li Class="battlestations.newSelectorThing">
<Squads>
<keys>
</keys>
<values>
</values>
</Squads>
</li>