I am working on a roll template for my character sheet and I am having trouble finding out how to do a less-than-or-equal-to. The working code looks like this: {{#rollLess() Roll skill}} <tr><td colspan="2">Success!</td></tr> {{/rollLess() Roll skill}} ... which prints "Success" whenever Roll is less than skill. What I want is to print "Success" when Roll is less than or equal to skill. I have tried: {{#rollLess() Roll skill+1}} <tr><td colspan="2">Success!</td></tr> {{/rollLess() Roll skill+1}} Which does not work at all. Any ideas?