Hi!
I'm trying to incorporate some of my house rules into a user data file. I watched the GenCon 2014 videos and had a look at the manual in the program itself.
I'm currently trying to output a warning when a user goes above 17 with a starting attribute (including racials). For this to work I need two things: a loop over all attributes:
But I can't find the correct component name for <Attributes>.
And to check the value I thought I could use the "aUser" field, but all fields ("aUser", "aFinalVal", "aNormal") contain the same, final, calculated value. And the "Racial" field is 0, even though the stat has a racial modifier.
I'm a bit puzzled now...
I'm trying to incorporate some of my house rules into a user data file. I watched the GenCon 2014 videos and had a look at the manual in the program itself.
I'm currently trying to output a warning when a user goes above 17 with a starting attribute (including racials). For this to work I need two things: a loop over all attributes:
Code:
foreach pick in hero from <Attributes>
do stuff
nexteach
And to check the value I thought I could use the "aUser" field, but all fields ("aUser", "aFinalVal", "aNormal") contain the same, final, calculated value. And the "Racial" field is 0, even though the stat has a racial modifier.
I'm a bit puzzled now...