diff options
| author | 2018-09-02 12:22:03 +0200 | |
|---|---|---|
| committer | 2018-09-02 12:22:19 +0200 | |
| commit | 49567f95bf6985707fcf8c2836c761ce39602636 (patch) | |
| tree | 8c57132da55d15f14d7f604a61396d266afff00a /node/helpnode.cpp | |
| parent | e5a37ca38ef7b28695313e4b59f62c03d4801f2d (diff) | |
| download | OneRoll-49567f95bf6985707fcf8c2836c761ce39602636.tar.gz OneRoll-49567f95bf6985707fcf8c2836c761ce39602636.zip | |
Adding pow
Diffstat (limited to 'node/helpnode.cpp')
| -rw-r--r-- | node/helpnode.cpp | 10 |
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) |