getRolled: Difference between revisions
Jump to navigation
Jump to search
(Created page with "{{MacroFunction |name=getRolled |trusted=false |version=1.5.2 |description= Returns an array of all the raw, i.e. unmodified, dice rolls that have occurred within the current...") |
m (Text replacement - "<source" to "<syntaxhighlight") |
||
(5 intermediate revisions by 3 users not shown) | |||
Line 4: | Line 4: | ||
|version=1.5.2 | |version=1.5.2 | ||
|description= | |description= | ||
Returns | Returns a [[JSON Array]] of all the raw, i.e. unmodified, dice rolls that have occurred within the current macro context. | ||
|usage= | |usage= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
getRolled() | getRolled() | ||
</ | </syntaxhighlight> | ||
'''Parameters''' | '''Parameters''' | ||
{{param|none|Takes no parameters.}} | {{param|none|Takes no parameters.}} | ||
Line 16: | Line 16: | ||
Roll some dice and observe the unmodified rolls. | Roll some dice and observe the unmodified rolls. | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
Roll 1d10: [e: 1D10+2]<br> | Roll 1d10: [e: 1D10+2]<br> | ||
Get Rolled: [r: getRolled()]<br> | Get Rolled: [r: getRolled()]<br> | ||
Roll 3d6 minimum 2: [e: 3D6L2]<br> | Roll 3d6 minimum 2: [e: 3D6L2]<br> | ||
Get Rolled: [r: getRolled()] | Get Rolled: [r: getRolled()] | ||
</ | </syntaxhighlight> | ||
'''Output:''' | '''Output:''' | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
Roll 1d10: « 1D10+2 = 9 + 2 = 11 » | Roll 1d10: « 1D10+2 = 9 + 2 = 11 » | ||
Get Rolled: [9] | Get Rolled: [9] | ||
Roll 3d6 minimum 2: « 3D6L2 = 13 » | Roll 3d6 minimum 2: « 3D6L2 = 13 » | ||
Get Rolled: [9,6,5,1] | Get Rolled: [9,6,5,1] | ||
</ | </syntaxhighlight> | ||
|also= | |also= | ||
{{func|clearRolls}} {{func|getNewRolls}} | |||
}} | }} | ||
[[Category:Dice Function]] | [[Category:Dice Function]] |
Latest revision as of 20:37, 14 March 2023
getRolled() Function
• Introduced in version 1.5.2
Returns a JSON Array of all the raw, i.e. unmodified, dice rolls that have occurred within the current macro context.
Usage
getRolled()
Parameters
none
- Takes no parameters.
Example
Roll some dice and observe the unmodified rolls.
Roll 1d10: [e: 1D10+2]<br>
Get Rolled: [r: getRolled()]<br>
Roll 3d6 minimum 2: [e: 3D6L2]<br>
Get Rolled: [r: getRolled()]
Output:
Roll 1d10: « 1D10+2 = 9 + 2 = 11 »
Get Rolled: [9]
Roll 3d6 minimum 2: « 3D6L2 = 13 »
Get Rolled: [9,6,5,1]