Here is what I am trying, but it is not working. Normally I'd fiddle around with the phase, but that is not an option with Pre-requisites, so it must be some error in my code.
~ Loop through all weapons with weapon focus
var result as number
foreach pick in hero where "Broadcast.WepFocus"
~ If one has slashing, add one.
if (each.tagis[wType.S] <> 0) then
result += 1
endif
nexteach
if (result >= 1) then
@valid = 1
endif
~ Loop through all weapons with weapon focus
var result as number
foreach pick in hero where "Broadcast.WepFocus"
~ If one has slashing, add one.
if (each.tagis[wType.S] <> 0) then
result += 1
endif
nexteach
if (result >= 1) then
@valid = 1
endif