View Single Post
frumple
Senior Member
 
Join Date: Nov 2011
Location: South Riding, VA
Posts: 841

Old September 29th, 2016, 06:08 AM
I think I found a partial solution..

For class abilities I am doing the following:
Code:
foreach pick in hero from BaseClSpec where FILTER
        eachpick.field[xTotalLev].value += tier
        eachpick.field[xAllLev].value += tier
        eachpick.field[xMaxLev].value += tier
        eachpick.field[xWhen].value = maximum(1,eachpick.field[xWhen].value - tier)
        nexteach
where FILTER is my tag filter that specifies the specific class features I am looking for.

Looks like this makes class features available earlier based on my tier (the xWhen field) and adds my tier to the other fields so that internal scripts will calculate things correctly.

My question is this the correct way to go about this, or will it break something?
frumple is offline   #2 Reply With Quote