So I have been unsuccessfully trying to find the results of an inlineroll. Here is what I have been trying but the numbers it is returning are the dice I am rolling not the results. on("chat:message", function(msg) { //log(msg); if (msg.type == 'general') { var inlineroll = null; try { inlineroll = msg.inlinerolls; } catch (e) { log(e); return; } //log(inlineroll); if(inlineroll) { for(var i = 0; i < inlineroll.length;i++) { if(inlineroll[i]) { var numbers = inlineroll[i].expression.match(/\d+/g); sendChat(msg.who, numbers.toString()); } } } } });