You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -36,7 +44,7 @@ class CombatRollCommand extends Command {
36
44
{
37
45
key: "formula",
38
46
type: "string",
39
-
prompt: `Enter a combat roll using the \`${combatNotation}\` notation.`,
47
+
prompt: `Enter a combat roll using the \`${combatNotation}\` notation.\nNote: \`{}\` indicate where a value should be entered, \`[]\` indicate an optional value. Do not include either \`{}\` or \`[]\` in your formula.\n`,
40
48
},
41
49
],
42
50
});
@@ -64,7 +72,18 @@ class CombatRollCommand extends Command {
@@ -36,7 +37,7 @@ class RollCommand extends Command {
36
37
newMessageEmbed({
37
38
...authorData,
38
39
title: "Results",
39
-
color: "#0099ff",
40
+
color: infoColor,
40
41
description: "_Good luck out there!_",
41
42
fields: [{name: "\u200B",value: output}],
42
43
timestamp: Date.now(),
@@ -47,7 +48,7 @@ class RollCommand extends Command {
47
48
newMessageEmbed({
48
49
...authorData,
49
50
title: "Error",
50
-
color: "#e6b032",
51
+
color: warningColor,
51
52
description: `Uh oh, there was a problem with your formula. Please use [standard dice notation](https://greenimp.github.io/rpg-dice-roller/guide/notation/) and try again!
@@ -26,7 +27,7 @@ class SkillRollCommand extends Command {
26
27
{
27
28
key: "formula",
28
29
type: "string",
29
-
prompt: `Enter a skill roll using the \`${skillNotation}\` notation.`,
30
+
prompt: `Enter a skill roll using the \`${skillNotation}\` notation.\nNote: \`{}\` indicate where a value should be entered, \`[]\` indicate an optional value. Do not include either \`{}\` or \`[]\` in your formula.\n`,
30
31
},
31
32
],
32
33
});
@@ -78,7 +79,7 @@ class SkillRollCommand extends Command {
78
79
content: newMessageEmbed({
79
80
...getAuthorData(this.client),
80
81
title: success ? "Success!" : "Failure!",
81
-
color: success ? "#33e83c" : "#eb4034",
82
+
color: success ? successColor : failureColor,
82
83
83
84
description: success
84
85
? "> Your efforts will help build a better tomorrow!"
@@ -158,7 +159,7 @@ class SkillRollCommand extends Command {
description: `The outside world can never hurt you! Uses the Vault-Tec recommended ${injuryNotation} notation.`,
30
+
clientPermissions: ["MANAGE_MESSAGES"],
31
+
args: [
32
+
{
33
+
key: "formula",
34
+
type: "string",
35
+
prompt: `Enter a enter hit location and optional type using the \`${injuryNotation}\` notation.\nNote: \`{}\` indicate where a value should be entered, \`[]\` indicate an optional value. Do not include either \`{}\` or \`[]\` in your formula.\n`,
0 commit comments