• 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

Change Shape FormLimit tag

frumple

Well-known member
I have a class feature that needs to bootstrap change shape, but limit its forms to two specific creatures. I bootstrap change shape with FormLimit.RACE1 and FormLimit.RACE2. However, I am getting dynamic tag errors or the list of selectable races in change shape is not being limited.

Ideas?
 
Using the polymorph effects I assume? If so, I was just doing this earlier. In the evaluation script that calls phase 3, just use

Code:
gizmo.child[PolymoHelp].field[foCandExpr].text = "HasType.tpAnimal & (Race.rmDiWolf | Race.rmWolf)"

or the like (I was making a ring that let you turn into a wolf or dire wolf, adjust according to what you need). I was running into issues with it when I had the ring bootstrap a separate ability for the polymorph effect though, and it wasn't filtering there. I had to put it on the ring itself instead of as a separate ability to get it to work, so it might be an issue with bootstrapping it? Not sure.
 
Back
Top