I'm setting up macros for a psionic character and I'm trying to figure out how I can go about writing the macros for power augments... the character has enough power points that she can augment all her powers all day long and never run out of power so I was going to just set up the macros to augment everything to their max potential but still allow the option of not augmenting a power... I thought about trying something like this: ?{Augment? (1=true)|1}*((floor((@{casterlevel}-7)/3)*3)+1) Since some powers when fully augmented have a total cost less than my manifester level+1 I want the macro to only use the correct point cost and no extra... the thought is that it would use the rounded result the division to multiply by the number divided by to get the total number of points spent in augmenting the power and then with some powers use that result in another multiplication or division to get the augmented bonus... will this actually work?