Desire: I would like to be able to select a token and have a macro button that, when clicked, references a token's attributes [NumberAttacks] and [AttackMod], then rolls a d20 for the value of [NumberAttacks], adds [AttackMod] to the value each time, and prints out each value. Basically, I'd like something like this Python/Roll20 psudo-code below: x = @{selected|NumberAttacks} i = 1 while i <= x: /r 1d20 + @{selected|AttackMod} i += 1 Is there any way of doing something like that? I know enough Python and C++ to get myself in trouble, but I feel like I'm floundering in the dark when it comes to API and macros. Thanks in advance for any help you can give!