29.11.2012, 14:21
Quote:
Those are all supposed to be integers, you might be saving or loading them as strings.
|
Load :
pawn Код:
cache_get_field_content(0, "Vip", temp), PlayerData[playerid][pVip] = strval(temp);
cache_get_field_content(0, "TKicked", temp), PlayerData[playerid][pTKicked] = strval(temp);
cache_get_field_content(0, "TKickeda", temp), PlayerData[playerid][pTKickeda] = strval(temp);
Also the callback is called by this :
pawn Код:
format(query, sizeof(query), "SELECT * FROM `users` WHERE `id` = %d", PlayerData[playerid][pSQLid]);
mysql_function_query(g_Handle, query, true, "OnAccountLoad", "d", playerid);