From ddd091d5721ad44862bee83590cec1ca584beaf0 Mon Sep 17 00:00:00 2001 From: "Ean Milligan (Bastion)" Date: Tue, 17 May 2022 00:28:26 -0400 Subject: [PATCH] Improved rollhelp cmd --- src/constantCmds.ts | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/src/constantCmds.ts b/src/constantCmds.ts index b9c0f87..9271887 100644 --- a/src/constantCmds.ts +++ b/src/constantCmds.ts @@ -216,7 +216,9 @@ export const constantCmds = { name: "Details:", value: `You can chain as many of these options as you want, as long as the option does not disallow it. - This command also can fully solve math equations with parenthesis.` + This command also can fully solve math equations with parenthesis. + + The Artificer supports most of the [Roll20 formatting](https://artificer.eanm.dev/roll20). More details and examples can be found [here](https://artificer.eanm.dev/roll20).` }, { name: `\`${config.prefix}xdydzracsq!${config.postfix}\` ...`, value: `Rolls all configs requested, you may repeat the command multiple times in the same message (just ensure you close each roll with \`${config.postfix}\`)`, @@ -291,7 +293,7 @@ export const constantCmds = { title: "Roll Command Decorators:", fields: [ { - name: "Details", + name: "Details:", value: `This command also has some useful decorators that can used. These decorators simply need to be placed after all rolls in the message. Examples: \`${config.prefix}d20${config.postfix} -nd\`, \`${config.prefix}d20${config.postfix} -nd -s\`` @@ -325,6 +327,26 @@ export const constantCmds = { inline: true } ] + }, { + title: "Results Formatting:", + fields: [ + { + name: "Details:", + value: "The results have some formatting applied on them to provide details on what happened during this roll." + }, { + name: "Bold", + value: "Critical successes will be **bolded**.", + inline: true + }, { + name: "Underline", + value: "Critical fails will be __underlined__.", + inline: true + }, { + name: "Strikethrough", + value: "Rolls that were dropped or rerolled ~~crossed out~~.", + inline: true + } + ] } ] },