Hello! Here is a really simple suggestion, that would greatly simplify writing macros and which must be pretty trivial to implement: a min and a max function. When you add the bonus given by two different buffs in a d20 system, you have to make sure that you take the *max* between the two and not the sum, if they are of the same type. Currently, I use (a+b+abs(a-b))/2 to compute max(a,b). That's long and unreadable. That would be great if I could just write max(a,b) and min(a,b) when I need to :-) Best!