aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/helpnode.cpp
diff options
context:
space:
mode:
authorRenaud G <renaud@rolisteam.org>2018-09-02 12:22:03 +0200
committerRenaud G <renaud@rolisteam.org>2018-09-02 12:22:19 +0200
commit49567f95bf6985707fcf8c2836c761ce39602636 (patch)
tree8c57132da55d15f14d7f604a61396d266afff00a /node/helpnode.cpp
parente5a37ca38ef7b28695313e4b59f62c03d4801f2d (diff)
downloadOneRoll-49567f95bf6985707fcf8c2836c761ce39602636.tar.gz
OneRoll-49567f95bf6985707fcf8c2836c761ce39602636.zip
Adding pow
Diffstat (limited to 'node/helpnode.cpp')
-rw-r--r--node/helpnode.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/node/helpnode.cpp b/node/helpnode.cpp
index 1cefea8..25efdcd 100644
--- a/node/helpnode.cpp
+++ b/node/helpnode.cpp
@@ -37,6 +37,14 @@ void HelpNode::run(ExecutionNode* previous)
"Example (with ! as prefix):\n"
"!2d6\n"
"!1d20\n"
+ "!6d10e10k3 (L5R)\n"
+ "\n"
+ "Full documentation at: %1").arg(m_path));
+ /*txtResult->setText(QObject::tr("Rolisteam Dice Parser:\n"
+ "\n"
+ "Example (with ! as prefix):\n"
+ "!2d6\n"
+ "!1d20\n"
"\n"
"Operator list:\n"
"\n"
@@ -81,7 +89,7 @@ void HelpNode::run(ExecutionNode* previous)
"1d6+6 => roll one 6-sided die and add 6 to its result\n"
"(2d4+2)d10 => roll two 4-sided dice, add 2 to the result[2;8] then roll from four to ten 10-sided dice\n"
"\n"
- "Full documentation at: %1").arg(m_path));
+ "Full documentation at: %1").arg(m_path));*/
m_result->setPrevious(nullptr);
}
else if(nullptr != previous)