Difference between revisions of "User:Paxed/Template:dicemax"

From NetHackWiki
Jump to navigation Jump to search
m
m
Line 1: Line 1:
<onlyinclude><includeonly>{{#expr:{{#explode:{{{1}}}|d|0}}*{{#explode:{{{1|d1}}}|d|1}}}}</includeonly></onlyinclude>
+
<onlyinclude><includeonly>{{#if: {{#pos:{{{1}}}|d}} |{{#expr:{{#explode:{{{1}}}|d|0}}*{{#explode:{{{1}}}|d|1}}}} |{{{1}}} }}</includeonly></onlyinclude>
  
 
This template returns the maximum value a die roll in the standard [[d notation|d-notation]] can give. This cannot handle more than one d-notation, so no <tt>1d6+1d4</tt>.
 
This template returns the maximum value a die roll in the standard [[d notation|d-notation]] can give. This cannot handle more than one d-notation, so no <tt>1d6+1d4</tt>.

Revision as of 18:21, 4 March 2008


This template returns the maximum value a die roll in the standard d-notation can give. This cannot handle more than one d-notation, so no 1d6+1d4.

Usage: {{dicemax|AdB+C}}

Where:

  • A is the number of dice to be rolled.
  • B is the number of sides the dices have.
  • C is an optional modifier. Should be a simple integer, either plus or minus.

Output:

  • {{dicemax|4}} shows 4
  • {{dicemax|1d6}} shows 6
  • {{dicemax|2d10}} shows 20
  • {{dicemax|3d8}} shows 24
  • {{dicemax|1d8+5}} shows 13
  • {{dicemax|2d4-1}} shows 7