View Single Post
Nokowi
Junior Member
 
Join Date: Jan 2017
Posts: 16

Old May 1st, 2019, 05:33 PM
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.
Nokowi is offline   #1 Reply With Quote