• 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

Multiple choices.

Enforcer84

Well-known member
So...I'm looking to add (if I can) the Beast Conclave option to the standard ranger, it works pretty good save for the extra Hitdice which is based on Ranger level.

is it possible to to rewrite the following:

level = hero.tagcount[Classes.5CRgC]

to use an or? Can I do [Classes.5CRgC or cRanger]

I figure if worst came to worst I could duplicate the Conclave and just change that to cRanger.
 
Why can't you just duplicate that line?

Code:
level = hero.tagcount[Classes.5CRgC]
level += hero.tagcount[Classes.cRanger]
I assume you will not be taking both Ranger and this alternative ranger class at the same time.
 
Back
Top