[Cleanup] Cleanup #show currencies Command (#3693)

* [Cleanup] Cleanup #show currencies Command

# Notes
- Cleans up messages.
- Adds `AA Points` as a viewable currency.
- Adds an enum for `MoneyTypes` and `MoneySubtypes` so we're not using magic numbers for `GetMoney` anymore.
- Converts money amounts to `uint64`.

* Update currencies.cpp

* Update currencies.cpp
This commit is contained in:
Alex King
2023-11-18 19:05:04 -05:00
committed by GitHub
parent ded82ac6d6
commit 93f2bea96e
3 changed files with 59 additions and 41 deletions
+16
View File
@@ -1059,4 +1059,20 @@ enum SpellTimeRestrictions
Night
};
enum MoneyTypes
{
Copper,
Silver,
Gold,
Platinum
};
enum MoneySubtypes
{
Personal,
Bank,
Cursor,
SharedBank // Platinum Only
};
#endif /*COMMON_EQ_CONSTANTS_H*/