• 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

Magus Question

Hey all, I am trying to make a feat that will add 2 arcane points to my Magus' arcane pool. As of now the feat works but, the extra 2 points are a tracked as a separate resource from the main arcane pool. Is there a way to fix this? Thanks :)
 
Never mind! I figured it out!For others to reference I just based it off the code of the extra ki pool feat. Now if I can just figure out how to get my extra Magus Arcana feat to work :) FYI This is for the Magus(Final) I replicated the extra rogue talent feat, but I cannot seem to find the Debug information for Magus Arcana as it is not listed as a class special, etc. and I do not know where to click to find the debug info for magus arcana
 
Last edited:
Hey Karl; I implemented the Arcanas in the Custom Ability tab. You can get the debug info by doing Develop -> Floating Info Windows -> Show Selection Fields and picking Magus (Final) (the first one, cHelpMaF, holds most of the class info you'd want to work with, rather than the others). As in Rogue Talents, you'd want to increment the cGiveSpec field up by 1 - just change the extra rogue talent feat eval script as such:
Code:
hero.childfound[cHelpMaF].field[cGiveSpec].value += 1
... and edit the feat's other fields (name, desc, etc) as necessary. Is that not working for ya?
 
Back
Top