From e9c30f3586e84345f75c13a5ed52b331084c31e6 Mon Sep 17 00:00:00 2001 From: filipnyquist Date: Fri, 13 Jul 2018 11:41:24 +0200 Subject: [PATCH] Moved all the help to the same msg used throughout the whole tipbot, removes the needs of specialized helpmsgs. also adds the tipbot FAQ link. --- bot/modules/tipbot.js | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/bot/modules/tipbot.js b/bot/modules/tipbot.js index 65291d5..401449b 100644 --- a/bot/modules/tipbot.js +++ b/bot/modules/tipbot.js @@ -9,21 +9,21 @@ const lbry = new bitcoin.Client(lbrycrdConfig); const helpmsg = { embed: { description: - '__**TIPS**__\n\n' + - '**Balance**: `!tip balance`\n' + - '**Deposit Address**: `!tip deposit`\n' + - '**Withdraw**: `!tip withdraw
`\n' + - '**Private Tip**: `!privatetip `\n\n' + - '__**ROLE TIPS**__ Use this to tip everyone in a role.\n\n' + - '**Role Tip**: `!roletip `\n' + - '**Private Role Tip**: `!privatetip `\n\n' + - '__**MULTI TIPS**__ Use this to tip multiple people at once\n\n' + - '**Multi Tip**: `!multitip `\n' + - '**Private Multi Tip** `!multitip private `\n' + - '**Note**: Multi tips can contain any amount of users to tip.\n\n' + - '__**FURTHER INFORMATION**__\n\n' + - '**Help**: `!tip help` *Get this message.\n' + - 'Read our [Tipbot FAQ](https://lbry.io/faq/tipbot-discord) for a more details', + '__**TIPS**__\n\n' + + '**Balance**: `!tip balance`\n' + + '**Deposit Address**: `!tip deposit`\n' + + '**Withdraw**: `!tip withdraw
`\n' + + '**Private Tip**: `!privatetip `\n\n' + + '__**ROLE TIPS**__ Use this to tip everyone in a role.\n\n' + + '**Role Tip**: `!roletip `\n' + + '**Private Role Tip**: `!privatetip `\n\n' + + '__**MULTI TIPS**__ Use this to tip multiple people at once\n\n' + + '**Multi Tip**: `!multitip `\n' + + '**Private Multi Tip** `!multitip private `\n' + + '**Note**: Multi tips can contain any amount of users to tip.\n\n' + + '__**FURTHER INFORMATION**__\n\n' + + '**Help**: `!tip help` *Get this message.\n' + + 'Read our [Tipbot FAQ](https://lbry.io/faq/tipbot-discord) for a more details', color: 1109218, author: { name: '!tip' } }