30.07.2018, 13:42
So, i'm using mysql for my saving system. I save the register date of the player without problems.
I have problems showing it in /stats.
I get: "Register Date: " only.
Code from /stats:
This it how i save it (without problems, correct register date shows in mysql table):
Whats wrong?
I have problems showing it in /stats.
I get: "Register Date: " only.
Code from /stats:
pawn Код:
format(temp, sizeof(temp), ""WHITE"Register Date: "GREEN"%s\n\n",Player[playerid][RegisterDate]);
strcat(info, temp);
pawn Код:
new query[128];
format(query, sizeof(query), "UPDATE `playertable` SET `RegisterDate` = '%s' WHERE `username` = '%s'", ReturnDate(), Player[playerid][Name]);
mysql_tquery(g_SQL, query);