Hello! I'm having a bit of an issue with the macros I'm trying to build. I'm trying to roll a 1d100, compare it against a value (let's say 50), and every ten points below it would be a degree of success. My current macro is below. /r (?{Final check value}-d100)/10 The issue is that 2.9 degrees of success is still only 2 degrees. -2.9 is also two degrees of failure. Using the floor function gives me a -3 in the -2.9 case, which is incorrect. Is there any workaround to this, beyond using API?