23.08.2015, 17:28
possible crash by size inexistent. (cache_get_field_content(0, "ID", PlayerInfo[playerid][ID], mysql, 10);) the argument it's optional and "ID" I think it would be an integer.
If not, check if there is no crash in the other, at the point of having a size more large which the size of the cell.
PHP код:
PlayerInfo[playerid][ID] = cache_get_field_int(0, "ID");
PHP код:
cache_get_field_int(row, const field_name[])
{
new
str[12]
;
cache_get_field_content(row, field_name, str, mysql);
return strval(str);
}