• 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

assigning a feat to a magic item

Kaleb

Well-known member
if I wanted to assign a feat to a magic Item would I do something like this

if (field[gIsEquip].value <> 0) then
perform hero.childfound [ioWATPursu].assign[fStepUp]
perform hero.childfound [ioWATPursu].assign[fFollStep]
perform hero.childfound [ioWATPursu].assign[fStepUpSt]

endif

I compiled this script and am getting illegal use of reserved word in line 3
 
Last edited:
Are you trying to give that feat to the person wearing the item? If so you need to bootstrap the feat with a condtion of fieldval:gIsEquip <> 0 at First: 500

Your error is because you are not actually assigning any tag (those are not proper tags) also there is a space between your childfound and [] so that could be causing an error.
 
Back
Top