2023-11-16, 03:42 PM
Create an integer column named 'money' in the 'accounts' table and store the player's money on disconnect.
query:
And load it when the player is logged into the account:
query:
PHP Code:
UPDATE `accounts` SET `money` = %d WHERE `id` = ?
And load it when the player is logged into the account:
PHP Code:
new money;
cache_get_value_int(0, "money", money);
GivePlayerMoney(playerid, money);