Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<group
id="Start"
dynamic="yes">
<value id="Samurai"/>
</group>
Let's say your advantage cost is stored in the adCost field.
So, this should be close to what you want:
Code:if (hero.intersect[Start,Start] <> 0) then field[adCost].value -= 1 endif
Okay so I have added this code to the tag.1st file.In the tags.1st file, you can add this:
Code:<group id="Start" dynamic="yes"> <value id="Samurai"/> </group>
Now, the Start tag group contains all the schools you've defined, plus the Start.Samurai tag. All the schools that are Samurai schools give themselves this tag:
<tag group="Start" tag="Samurai"/>
as do all the weapons that all samurai-type schools give. The forward you've already set up will forward the school's own Start tag and Start.Samurai.
Okay so I have added the <identity group="Start"/> to the school so now I should make <tag group="Start" tag="scHida"/>
then I would make the intersect ref
if (hero.intersect[Start,Start] <> 0)then
perform assign[Helper.Start]
endif
But where do I place this script? I could not find a way on the wiki and I do not own the Pathfinder set so I can not look inside to find where it goes. I also looked in the D20 files but found nothing there that I could look at.
<value id="StartEquip" name="Gear starts out equipped"/> <!-- Identifies equipment that is equipped by default -->
I have this in my traits.str is this what you mean by advantage cost?
Can I then use tags to go on advantages that are cheaper for one Clan/family than others?
Okay so I have added this code to the tag.1st file.
I am not sure on some things about it I understand that the id="Start" ref back to the tag I added to my School but the value id="Samurai" I am not sure about, do I have to add a Samurai tag in with school then add that tag to each school that is a samurai? which would make sense b/c then I should add the tags courtier and shugenja as well.
OR did I miss the boat and is Samurai suppose to lead to a different referance?
By the way thank you for the help, sometimes I get so caught up in attempting to learn via these post that I forget to let you all know how much you have helped me w/ out all of you I would have given up a long time ago!
I now believe that I will have to tag all items from each school ect AKA the above item would be starting weapon for nearly every samurai class so a tag for each one needs to be added.
Okay so I found that in bootstrap.1st I can add items to the character
<!-- Add kimono pick -->
<bootstrap index="25" thing="eqKimono"/>
<!-- Add sandal pick -->
<bootstrap index="27" thing="eqSandals"/>
Which saves time