aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/HelpMe.md
diff options
context:
space:
mode:
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.