I've been looking at how to handle either/or situations for a pre-requisite and it looks like the best way is with a script. One example I found was for a Blood and Guts edge that has a Message set to "Fighting d10, Shooting d10 or Throwing d10 required." and a Pre-req code of:
Now it seems to me that the"validif" statements would be all that's needed. Does anyone know what the if statement at the end is for?
Code:
validif (#traitfound[skFighting] >= 5)
validif (#traitfound[skShooting] >= 5)
validif (#traitfound[skThrowing] >= 5)
if (@ispick <> 0) then
altpick.linkvalid = 0
endif
Now it seems to me that the"validif" statements would be all that's needed. Does anyone know what the if statement at the end is for?