I'm trying to incorporate my critical tables into R20. The issue that I'm running into, though, is that it requires a nested set of macros which then calls a RT for the result. Example: The attack shows the hit location. If it's a critical, I run the Roll-Critical macro, which has a dropdown for the location. Depending on which one you choose, it calls the macro "roll-crit-[location]" (roll-crit-body, roll-crit-head, etc). These macros, in turn, have a dropdown asking if the area was armored (in my game you can piecemeal armor so some areas might have armor and others may not). If armored it calls the RT "crit-table-with-armor" and if no armor it calls "crit-table-no-armor". So I went through all my macros and replaced them with the special characters. Everything works until it's time to call the RT, in which case it returns a null value. When I run the macros individually everything is fine. So I'm assuming it has something to do with the RT call from within a nested macro. Macros (with special characters you can't see): Roll-Critical &{template:default}{{?{Hit location?| Body, #roll-crit-body | Arm, #roll-crit-arm | Leg, #roll-crit-leg | Hand, #roll-crit-hand | Foot, #roll-crit-foot | Head, #roll-crit-head } }} roll-crit-arm &{template:default}{{?{Is the foe wearing armor?| Yes,[[1t[crit-table-with-armor]]]|No,[[1t[crit-table-no-armor]]]} }}