So I'm trying to build recursive tables to roll for random magic items and I'm not having much luck figuring out what I'm missing:     From a macro I'm trying to call a treasure table.  This part works:  !rt /w gm &{template:npcaction} {{rname= Treasure Hoard }} {{name= Challenge Rating: 11-16 }} {{description= [[4d6*1000]] GP [[5d6*100]] PP [[1t[Hoard-CR5-10]]] }}     Now, within the treasure hoard table, I'm trying to call the "art objects" table.  If I just make the die roll recursive, I get the die roll properly showing a return of <die roll> 250 GP art objects.     [[2d4]] 250-GP-Art-Objects     Trying to then get it to actually roll on the art table and return those results seems to break it though.  I'm sure it's just a syntax error but I can't seem to figure it out.  Any ideas what I'm doing wrong?   !rt [[ [[2d4]] t[250-GP-Art-Objects] ]]