aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/HelpMe.md
diff options
context:
space:
mode:
authorRenaud G <renaud@rolisteam.org>2017-10-26 13:23:11 +0200
committerGitHub <noreply@github.com>2017-10-26 13:23:11 +0200
commitbe75cdb7fdb3748def522ebd49ed8bb0363955cf (patch)
treeaac872fce2be9eece797b3aa897c442e4f409b9b /HelpMe.md
parent5a7d52ee7121be6e963b15e3d0c013805e1cb0a4 (diff)
downloadOneRoll-be75cdb7fdb3748def522ebd49ed8bb0363955cf.tar.gz
OneRoll-be75cdb7fdb3748def522ebd49ed8bb0363955cf.zip
Update HelpMe.md
Adding best practices chapter
Diffstat (limited to 'HelpMe.md')
-rw-r--r--HelpMe.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/HelpMe.md b/HelpMe.md
index 95a29f7..6b2dde0 100644
--- a/HelpMe.md
+++ b/HelpMe.md
@@ -411,5 +411,17 @@ Old World in darkness system.
Exalted 2nd edition system.
+# Best Practices
+As DiceParser provides more and more features, you may find several ways to do the same thing. We want here to explain the difference between those several approaches. Then you will be able to use the right one.
+
+## Roll several kind of dice and sum them
+
+```Bad```
+> 2d8;2d10m
+
+```Good```
+> 2d8+2d10
+
+The merge operator is useful when you want to use dice operator on all rolled dice.