Enforcer84
Well-known member
So I'm homebrewing a feat for races with Flight Speed that functions like Mobility.
Looking at the wiki increasing walking speed is:
hero.child[Speed].field[tSpeed].value += X
I see that xFly is a pick, not a field. I tried:
hero.child[Speed].pick[xFly].value += 10 Then
and hero.pick[xFly].value += 10
and both threw errors. I'm clearly looking at this the wrong way.
Aww man. Thoguht I found it...
hero.childfound[xFly].field[abValue].value += 10 doesnt' throw an error but doesn't change
success! The above worked, I had to mess with timing (Final Phase, Priority 10001)
Woohoo! Thanks for that Tabaxi, Fenris447!
Looking at the wiki increasing walking speed is:
hero.child[Speed].field[tSpeed].value += X
I see that xFly is a pick, not a field. I tried:
hero.child[Speed].pick[xFly].value += 10 Then
and hero.pick[xFly].value += 10
and both threw errors. I'm clearly looking at this the wrong way.
Aww man. Thoguht I found it...
hero.childfound[xFly].field[abValue].value += 10 doesnt' throw an error but doesn't change
success! The above worked, I had to mess with timing (Final Phase, Priority 10001)
Woohoo! Thanks for that Tabaxi, Fenris447!
Last edited: