• 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

Polymorph effect that allows every EX ability

Redcap's Corner

Well-known member
Is it possible to set the polymorph gizmo up to allow every Extraordinary ability a creature possesses? I've gotten as far as:

Code:
foreach pick in gizmo where "HasAbility.?"
  if (eachpick.tagis[AbilType.Extra] <> 0] then

But then I can't think of a way to convert the HasAbility tag to the corresponding PolyAllow tag for assignment to the adjustment.
 
try something like this
perform assignstr["PolyAllow." & eachpick.idstring]

where you are assigning the PolyAllow to whatever has the polymorph gizmo on it.

You can also simplify your loop by the following:

foreach pick in gizmo where "AbilType.Extra & HasAbility.?"


However, I am not sure if "foreach pick" or "foreach thing" would be the way to go here. Try both and see if either works.
 
Last edited:
Back
Top