I'm preparing a campaign using an RPG system, that isn't officially supported by roll20. "The dark Eye" is the most popular RPG system in germany. Now i need some help developing a roll command. Within this system i need a roll command, that rolls one d20 and in case of a 1 or 20 it should mark the roll as success or fail (using green or red highlight) and rerolls it once as a controll roll. These are the rules in detail: If an attack roll is 1, its critical, but only if a reroll is below or qual your charakters attack skill. If yor attack roll is 20 you'll hurt yourself, but only if a reroll is above your atack skill. If you roll a number below or equal to your atack skill, and the roll is not 1, than its not critical and you've done a normal hit. No reroll is needed. If you roll a number above your atack skill, and the roll is not 20, you missed, but no reroll is needed. If you only unse "reroll" and not "reroll-once" it is absolutely no problem to have serval reroll conditions. I tryed [[d20cs1cf20r1r20]] which does a pretty well job with rerolling, but it does not stop rolling after the second reroll in the rare case you roll 1-1, 1-20, 20,1 or 20,20. The "roll-once" condition does not seem to work if its contained two times in one command. [[d20cs1cf20ro1ro20]] would do exactly what i need, in theory. But it throws the error message " SyntaxError: Expected "!!", "!", "cf", "cs", "d", "k", "r", "ro", "s", [0-9] or [>|<|=] but "o" found. " [[d20cs1cf20ro1r20]] won't do the job, since it will keep rerolling in case of a 20. [[d20cs1cf20ro1,20]] doesn't work either. In the case of the roll 1-2 it should have shown a green highlghted 2 (green from the first roll, and 2 from the second roll. But there was no highlighting. So can anybody tell me the correct syntax to define two reroll-once conditions within one command? For test purposes i replaced all 20 with 3 in the formulas above, to give a higher chance of rerolls...