Accessing Troop Marches
Retrieve the marches available inside a running instance.
'Get the first instance with the specified name
Dim info = Proxy.Instances.GetInstanceInfos(InstanceName).FirstOrDefault()
' Get the march list
Dim Marches = info.GetMarches
' Iterate the march list, output the current status and turn them off
For Each m In Marches
Dim x = If (m.Enabled, "", $" {HtmlConstants.ColorRed}NOT{HtmlConstants.ColorEnd}")
Output($"March: {HtmlConstants.ColorBlue}{m.Name}{HtmlConstants.ColorEnd} is {x} Enabled")
m.Enabled = False
Next
Note that you can change simple properties of the march. The changes will be saves when the instance itself saves. Usually at the end of the routine.