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:
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!
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!