Added leaderboard for money

This commit is contained in:
2025-07-19 04:13:58 +03:00
parent a73e25a8b0
commit 24c82ee668
4 changed files with 54 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
#define CURRENCY_NAME "Night Coin"
// 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"
@@ -8,6 +9,7 @@
#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"
@@ -17,6 +19,7 @@
#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) \
@@ -25,6 +28,7 @@
"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?"
@@ -35,3 +39,12 @@
#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"