I need to know if I am on the right track here
I am coding a custom ability that causes 1 handed weapons in your offhand to be treated as light weapons
My logic looks like this
Final/1000
Am I even on the right track here?
I am coding a custom ability that causes 1 handed weapons in your offhand to be treated as light weapons
My logic looks like this
Final/1000
Code:
~ If we're disabled, do nothing
doneif (tagis[Helper.SpcDisable] <> 0)
~If there is nothing in the offhand, get out now
doneif (hero.tagis[Hero.EquipOff] <> 1)
foreach pick in hero from BaseWep where "wClass.OneHanded | Hero.EquipOff"
perform delete[wClass.OneHanded]
perform assign[wClass.Light]
nexteach
Am I even on the right track here?