• 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

Adjust Mythic Power via new Path Ability

Moara

Member
Howdy all!

My GM is allowing us to choose, as a mythic path ability, the option to gestalt with another class. However, if we choose this option, he wants to reduce the number of Mythic Points we get from 3 + (Mythic Tier x 2) to 3 + Mythic Tier.

I've built a custom Path Ability to reflect that we choose this option (the actual gestalting is being done via the handy Gestalt community addon), and I know that I can adjust the Mythic Points through Shadow's Adjustments option, but I think it'd be cool to add it to the path ability itself - one less thing to track!

I've tried looking at both the Adjustments addon (where I stole the format below) and at other mythic abilities, but I can't figure this out. Here's what I got so far, and I'm putting this in the Eval Scripts:

Code:
      ~ If we're not enabled, get out now
      doneif (tagis[Helper.SpcDisable] <> 0)

      ~ Decrease mythic point total to 3 + Teir
      hero.childfound[trkMythic].field[trkMax].value = 3 + field[xTotalLev].value

The concept I'm going for is to replace the trkMythic.field[trkMax].value with the results of 3 + Total Mythic Tier, but I'm having a hard time finding where the mythic tier is stored. And, since I'm here, is this even the right place to put it?

Any help would be great! Thank you all!
 
The mythic tier can be most easily accessed through using the #tiereffect[] macro, which counts a number of tags on the hero.
 
I am SO SORRY it took me so long to get back with you. Fun and crazy adventures had by all! XD

But this works perfectly for me! I ended up losing the initial version of this, so I used a new base of the 'Extra Mythic Power' feat instead of finagling with the 'Adjust Mythic Power' feat, and ended up with the below Eval Script:

Code:
doneif (tagis[Helper.SpcDisable] <> 0)

hero.childfound[trkMythic].field[trkMax].value = 3 + #tiereffect[]

Thank you again!
 
Back
Top