I happened to notice that the Multiattack feat pre-req script does not take into account a natural weapon with the helper tag "RaceHands". Here's my version of the pre-req script that does take this into account:
Code:
var total as number
var numattacks as number
var ishands as number
var numhands as number
numhands = herofield[tNumHands].value
foreach pick in hero where "component.BaseNatWep"
ishands = each.tagis[Helper.RaceHands]
if (ishands > 0) then
numattacks = numhands
else
numattacks = each.tagmax[Value.?]
numattacks = maximum(numattacks,1)
endif
total += numattacks
nexteach
if (total >= 3) then
@valid = 1
endif