Kendall-DM
Spy
I have figured out how to get the enhancement bonus to speed working correctly. This is a workaround until LW gets a fix into place. It requires two different scripts. I've done it in 10 ft. increments, easy to modify.
Code:
<<Pre-Levels (Users) 5000>>
~ If we're not enabled, get out now
doneif (field[pIsOn].value = 0)
var enh as number
enh = 10 * field[pAdjust].value
#enhancementbonus[hero.child[Speed], enh]
hero.child[Speed].field[tSpeed].value += enh
Code:
<<Final Phase (Users) 10001>>
~ If we're not enabled, get out now
doneif (field[pIsOn].value = 0)
~ Fix our speed to the actual enhancement values (HL workaround).
hero.child[Speed].field[tSpeedMod].value -= hero.child[Speed].field[BonEnhance].value
Last edited: