• 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

Class Special Ability Help

furby076

Well-known member
I need help to get this to work. The ability shows up within the "in play" section. That works fine. When I check the box, i am looking to get the * (asteriks) to show by the skill to show it has advantage.

Anyone know what's missing?

~if we're curently focusing, forward a tag to the hero.
~note the timing is just before First/500, which is when the containerreqs on the focus powers will look for this tag
if (field[abilActive].value <> 0) then
perform hero.childfound[skIntim].assign[Helper.Advantage]
endif
 
I would recommend adding debug logic to see why the script is not working:

Code:
debug "IN"
if (field[abilActive].value <> 0) then
debug "active"
  perform hero.childfound[skIntim].assign[Helper.Advantage]
debug "tag found " & hero.childfound[skIntim].tagis[Helper.Advantage]
endif

Then go to "Develop->Floating Info Windows->Show Debug Output". Then you can see the output of the "debug" info in the window.
 
FIgured it out!!!! Thank you supreme sneak! Just will remove the language but w/e
if (field[abilActive].value <> 0) then

#situational[hero.child[skInsight], "Advantage on Insight", field[thingname].text]

endif
 
Back
Top