Added payment and basic deduction and increase of cash

This commit is contained in:
2025-07-19 02:24:15 +03:00
parent 5b9cbd5b03
commit d2c215df36
4 changed files with 93 additions and 8 deletions

View File

@@ -1,4 +1,14 @@
#define CURRENCY_NAME "The Night Coin"
#define CURRENCY_NAME "the night coin"
#define COMMAND_BALANCE_DESCRIPTION "See your balance of " CURRENCY_NAME
#define COMMAND_BALANCE_RESPONSE(balance) \
"You currently have " + 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"
#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)!"