• 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

Help with coding an Item power

ErinRigh

Well-known member
I am trying to figure out code to create an Item power that allows an additional attack with the full attack option, like speed, but only applies when the weapon is wielded in two hands

Any help would be appreciated!
 
Most of this is pretty easy except you are a Pick inside a Gizmo so you have to do a little extra testing:

Code:
~ If not equipped in both hands get out now!
doneif (container.parent.field[gIsEquip].value + container.parent.field[wIs2nd].value <> 2)

~ Give another full BAB attack
perform container.parent.assign[Helper.ExtraHigh]

For timing I would look at the Speed item power and see when its running.....
 
Back
Top