Added ability to see others balance

This commit is contained in:
2025-07-19 02:53:54 +03:00
parent ec75cd32be
commit 1421d794a4
3 changed files with 34 additions and 6 deletions

View File

@@ -1,8 +1,12 @@
#define CURRENCY_NAME "Night Coin"
#define COMMAND_BALANCE_DESCRIPTION "See your balance of " CURRENCY_NAME
#define COMMAND_BALANCE_RESPONSE(balance) \
#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)"
#define COMMAND_PAY_DESCRIPTION "Send someone some amount of " CURRENCY_NAME "s"
#define COMMAND_PAY_ARGS_USER_DESCRIPTION "Who do you want to pay"