1) Try something like this:
TriggerRadius:
Covering your Res guy, and not much elseCondition: Resistance Present
Condition field: resistance countside thislist > 2
OnActivation field: [
resguy1,
resguy2 ] join (group ((thislist - [
resguy1,
resguy2 ]) select 0))
Now that OnAct line looks nasty, but what it does, is make your resistance guys (
resguy1 and
2) join the group of the first Resistance unit in the trigger. This bit here:
(group ((thislist - [
resguy1,
resguy2 ]) select 0))
means the group of the first unit of a list of all units in the trigger, minus your resistance guys.
Anyway, try that out and see if it works