diff options
| author | 2018-08-27 01:03:42 +0200 | |
|---|---|---|
| committer | 2018-08-27 01:03:42 +0200 | |
| commit | cdaac5c82433b97ae17d0576b185a7fd689c89a9 (patch) | |
| tree | 39f48a45f74a4142dcd2f9533842bf25b5faf2f6 /HelpMe.md | |
| parent | f238c80409b345482d4a292084b3813dcdbbb37f (diff) | |
| parent | 52343ff414f7b41e8f38e28bec3de39500b5fed2 (diff) | |
| download | OneRoll-cdaac5c82433b97ae17d0576b185a7fd689c89a9.tar.gz OneRoll-cdaac5c82433b97ae17d0576b185a7fd689c89a9.zip | |
Merge branch 'master' of github.com:Rolisteam/DiceParser
Diffstat (limited to 'HelpMe.md')
| -rw-r--r-- | HelpMe.md | 15 |
1 files changed, 13 insertions, 2 deletions
@@ -19,6 +19,7 @@ * [Merge](#merge) * [if](#if) * [Group](#group) + * [Unique](#Unique) * [Comment (\#)](#comment-) * [Arithmetic](#arithmetic) * [Arithmetic and Dice](#arithmetic-and-dice) @@ -75,7 +76,7 @@ Rolling 3 dice with 10 faces starting at 0. > 3d[-20--9] -Rolling 3 dice, values ars between -20 and -9. +Rolling 3 dice, values are between -20 and -9. ### Instruction: Roll two (or more) kinds of dice at once @@ -96,7 +97,7 @@ It is possible to merge every instruction inside a huge one. The operator merge is dedicated to that. It is useful when you need to manage all diceresult as the same result. -For example, if you need to keep the high dice between a d6 and d8. +For example, if you need to keep the higher dice between a d6 and d8. > d6;d8mk1 @@ -252,6 +253,16 @@ Merge operator is used for gathering several dice rolls from different die type This command merges together the result from the d6 and the d8. Then, it applied the k operator on both result to keep the best. Be careful, this operator merges the instruction list. Instruction reference (such as $1 etc..) won't work after merge operator. +### Unique + +It makes exploded dice as new dice. + +> 4d6e6u6k3 + +Result: 6 4 3 3 2 +Final result: 6+4+3 = 13 + + ### Bind Bind works exactly as merge but one thing. |