
Hey, I have a (possibly) strange request and am using something that can probably be written WAY WAY WAY better So, before the code, some context. My system uses a number of wound/healing dice, designated when an attack is made/received etc. For the roll template I want to display each dice roll separately, this is quite annoying to write in (maybe I am doing it wrong) on ( 'clicked:mitigationroll' , ( info ) => { let endroll = "&{template:blank} {{name=@{character_name}'s Mitigation Roll}} {{number=[[?{number of Wound Dice|0}]]}}" + "{{roll=[[?{number of Wound Dice|0}d10]]}} {{result=[[0]]}}" + "{{target=[[?{Target Value?|0}]]}} {{bonus=[[?{Bonus|0} [Bonus] + @{passive_mitigation} [Mitigation Bonus] ]]}} {{penalty=[[?{penalty|0} [penalty]}}" ; let result = []; startRoll ( endroll , ( results ) => { let number = results . results . number . result ; for ( let i = 0 ; i < number ; i ++) { console . log ( results . results . roll . dice [ i ]); }; finishRoll ( results . rollId , { }); }); }); so the issue I have is that with the above I can get and separate any number of d10s that I need (in the console), but how can I send these individual numbers to my roll template? (I do not need to send them as any specific value types, so if the roll was a 1d10=1 then sending it as a simple roll value of 1 would be fine, I have disabled the tooltips, so players do not need to see anything specific) I get the feeling that what I am trying to do is either impossible, or extremely simple (which I am really good at looking past) so thank you to anyone that can lend me a hand