• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

Add Tag with Advance?

TCArknight

Well-known member
Is there way to use a advance to add a tag to an item selected by an advance?

For example, I have a Stunt in Fate Core which I want to select with an advance and add a "Tag.Custom" tag to after selection.

I'm thinking I could do an eval script on an Advance.Notation style of advance looking for a Stunt that matches what's in the notation field. However, I have no idea how to transition from the Advance to it's Domain or selection...

Suggestions?

Thanks!
Thomas
 
This is the code that applies the effects of the Advance.Increase tag on an advancement:

Code:
      if (origin.parent.tagis[Advance.Increase] > 0) then
        linkage[basis].field[trtBonus].value += 1

That's in the CanAdvance component in the advancement.core file, so you'd add another elseif to that script to apply the effects of your new tag.
 
Thanks Mathias. :)

Unfortunately, as this is for the FATE Core data, I don't have access to the advancement.core file. :( I can access the thing_advances entries so I'll try something on that, or maybe create a component around the canadvance one...

Any other thoughts?
TC
 
Last edited:
Back
Top