• 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

Haste or Rapid Shot for Primary Weapon Only

Nokowi

Member
I couldn't find this on the forums, so I wanted to post a script for the extra attack with Rapid Shot or Haste that only applies to the primary weapon. These are coded as a condition so that I can quickly use or not use them.

~ Rapid Shot for Primary Weapon Only
~ If we're not enabled, get out now
if (field[pIsOn].value = 0) then
done
endif
foreach pick in hero where "Hero.MainHand & wCategory.Range?"
perform eachpick.assign[Helper.ExtraHigh]
nexteach


~ Haste for Primary Weapon Only
~ If we're not enabled, get out now
if (field[pIsOn].value = 0) then
done
endif
foreach pick in hero where "Hero.MainHand"
perform eachpick.assign[Helper.ExtraHigh]
nexteach


Sorry if these are repeats and my search-Fu failed.
 
Back
Top