How do I get the PADL Phone or Windchime counters in ASH?

dunsel8

New member
I'm familiar with the handy get_counters function but it explicitly ignores the counters I'm looking for. How do I get the war item counters?




string get_counters(string label, int minTurns, int maxTurns)

label: counter to test for. An empty string will match any counter that takes an action. In other words, "" will match everything except for communications Windchimes, PADL Phone or a user created non-action counter.
 
Thanks, that does it. get_counters will do it but you can't use the "" matching.

get_counters("PADL Phone",0,11) for example.
 
Back
Top