I have a Racial Property that allows the user to start STR, AGI or VIG at d6. I bootstrapped an edge tot he racial attribute - because edges seem to be the place to manage the drop down pick (correct me if I'm barking up the wrong deciduform).
I am pretty sure I have the rest of the example taken care of using this example
I know this is appropriate for a skill adjust:
I know this is the script I want to use to adjust the starting attr:
#traitcreation[attrAgi] += 2
But I can't figure out how to plug in the selected attribute.
This is my latest try:
#traitcreation[usrChosen1.chosen] += 2
I am pretty sure I have the rest of the example taken care of using this example
To create a drop-down "pick list", let's say to apply a +1 roll bonus to one of three skills (the Scholar Edge is another example worth looking at):
Menu #1 Source: All Picks on Hero (this will make sure you don't get an error for trying to modify a skill that doesn't exist on the character)
Menu #1 Tag Expression: thingid.skBoating | thingid.skDriving | thingid.skPiloting
Eval Scripts: Pre-Traits/5000 - Before: Calc trtFinal
Code:
~apply the +1 modifier to selected skill
if (field[usrChosen1].ischosen <> 0) then
perform field[usrChosen1].chosen.field[trtRoll].modify[+,1,"Ordo Novus Templum"]
endif
-----
I know this is appropriate for a skill adjust:
perform field[usrChosen1].chosen.field[trtRoll].modify[+,1,"Ordo Novus Templum"]
I know this is the script I want to use to adjust the starting attr:
#traitcreation[attrAgi] += 2
But I can't figure out how to plug in the selected attribute.
This is my latest try:
#traitcreation[usrChosen1.chosen] += 2