New Features & Improvements
- Database column changed from
INT to
BIGINT UNSIGNED
Supports much larger coin values without errors and fixes
Data truncation exceptions when adding large amounts of coins.
-
Config key renamed
From
Messages.Deutsch to
Messages.German
You can change it manually or simply delete the config.
-
API fully integrated and properly exposed
Other plugins can now reliably use the CoinsAPI for player coin management.
-
Code refactoring and improvements
- Added detailed formatting for coin display (millions and billions) for a cleaner in-game presentation.
Important Notes
If you are updating from a previous version, please update your database column accordingly:
Code (SQL):
ALTER
TABLE
<TABLE_NAME
>
MODIFY
<COLUMN_NAME
>
BIGINT
UNSIGNED
NOT
NULL
DEFAULT
0;