66 lines
3.3 KiB
C++
66 lines
3.3 KiB
C++
// Bot info
|
|
#define BOT_NAME "The Bartender Bot"
|
|
#define BOT_VERSION "v0.2-1"
|
|
|
|
#define CURRENCY_NAME "Night Coin"
|
|
|
|
// Command ping
|
|
#define COMMAND_PING_DESCRIPTION "Ping-pong test"
|
|
|
|
// Command about
|
|
#define COMMAND_ABOUT_DESCRIPTION "Info about the bot"
|
|
#define COMMAND_ABOUT_RESPONSE \
|
|
"## " BOT_NAME " " BOT_VERSION \
|
|
"\n-> Written by <@!607952795794145281>.\n-> Source code " \
|
|
"https://git.thenight.club/cat/BartenderBot.\n-> Made with " \
|
|
"[D++](<https://dpp.dev/>) and tears."
|
|
|
|
// Command balance/bal
|
|
#define COMMAND_BALANCE_DESCRIPTION "See someone's balance of " CURRENCY_NAME
|
|
#define COMMAND_BALANCE_USER_DESCRIPTION \
|
|
"Leave this blank if you want to see your own balance"
|
|
#define COMMAND_BALANCE_SELF_RESPONSE(balance) \
|
|
"You currently have " + balance + " " CURRENCY_NAME "(s)"
|
|
#define COMMAND_BALANCE_SOMEONE_ELSE_RESPONSE(person, balance) \
|
|
"<@!" + person + "> currently has " + balance + " " CURRENCY_NAME "(s)"
|
|
|
|
// Command pay
|
|
#define COMMAND_PAY_DESCRIPTION "Send someone some amount of " CURRENCY_NAME "s"
|
|
#define COMMAND_PAY_ARGS_USER_DESCRIPTION "Who do you want to pay"
|
|
#define COMMAND_PAY_ARGS_AMOUNT_DESCRIPTION "How much do you want to pay"
|
|
#define COMMAND_PAY_FAIL_INSUFFICIENT_AMOUNT(recipient, amount) \
|
|
"You do not have the balance to send <@!" + recipient + "> " + amount + \
|
|
" " CURRENCY_NAME "(s)!"
|
|
#define COMMAND_PAY_SUCCESS(recipient, amount) \
|
|
"Successfully sent <@!" + recipient + "> " + amount + " " CURRENCY_NAME "(s)!"
|
|
|
|
// Command print_money
|
|
#define COMMAND_PRINT_DESCRIPTION "Allows the admin to print money on-demand"
|
|
#define COMMAND_PRINT_ARGS_AMOUNT_DESCRIPTION "How much are we printing boss?"
|
|
#define COMMAND_PRINT_FAIL_NO_PRIVILIEGE(recipient) \
|
|
"Only <@!" + recipient + "> can print money!"
|
|
#define COMMAND_PRINT_SUCCESS(recipient, amount) \
|
|
"Successfully printed " + amount + " " CURRENCY_NAME "(s) to <@!" + \
|
|
recipient + "> !"
|
|
|
|
// Command burn_money
|
|
#define COMMAND_BURN_DESCRIPTION \
|
|
"Allows the admin to burn money, burn baby burn!"
|
|
#define COMMAND_BURN_ARGS_AMOUNT_DESCRIPTION "How much are we burning?"
|
|
#define COMMAND_BURN_FAIL_NO_PRIVILIEGE(recipient) \
|
|
"Only <@!" + recipient + "> can burn money!"
|
|
#define COMMAND_BURN_FAIL_INSUFFICIENT_AMOUNT(amount) \
|
|
"You do not have" + amount + " " CURRENCY_NAME "(s) to burn!"
|
|
#define COMMAND_BURN_SUCCESS(recipient, amount) \
|
|
"Successfully burned " + amount + " " CURRENCY_NAME "(s) to <@!" + \
|
|
recipient + "> !"
|
|
|
|
// Command money_leaderboard
|
|
#define COMMAND_MONEY_LEADERBOARD_DESCRIPTION \
|
|
"See who are the wealthiest members of the server, and who are... less " \
|
|
"fortunate."
|
|
#define COMMAND_MONEY_LEADERBOARD_TEXT \
|
|
"## Here are the top 15 most wealthiest people in the server.\n-# Note: if " \
|
|
"you don't see yourself here it is either due to never interacting with " \
|
|
"the bot, or having too low of a balance.\n"
|