Added printing money, will rename

This commit is contained in:
2025-07-19 03:10:27 +03:00
parent 1421d794a4
commit 1284fde1ee
4 changed files with 39 additions and 6 deletions

View File

@@ -1,3 +1,4 @@
#include "../token.h"
#define CURRENCY_NAME "Night Coin"
#define COMMAND_BALANCE_DESCRIPTION "See someone's balance of " CURRENCY_NAME
@@ -16,3 +17,11 @@
" " CURRENCY_NAME "(s)!"
#define COMMAND_PAY_SUCCESS(recipient, amount) \
"Successfully sent <@!" + recipient + "> " + amount + " " CURRENCY_NAME "(s)!"
#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 \
"Only <@!" + std::to_string(ADMIN_ID) + "> can print money!"
#define COMMAND_PRINT_SUCCESS(amount) \
"Successfully printed " + amount + " " CURRENCY_NAME "(s) to <@!" + \
std::to_string(ADMIN_ID) + "> !"