03.10.2015, 12:58
The error could be when she makes the query.
You do a query and calls the function with Tquery but never checked if the query return data.
Try.
You do a query and calls the function with Tquery but never checked if the query return data.
Try.
PHP код:
forward OnPlayerLogin(playerid);
public OnPlayerLogin(playerid)
{
if(cache_num_rows() != 0) // This will check if the query return data.
{
pInfo[playerid][pFpunish] = cache_get_field_content_int(0, "Fpunish");
}
return 1;
}