Crashdetect
#2

I had this too.. but didnt came with a solution
So instead of mysql_fetch_field_row() use mysql_fetch_row_format()

EDIT : An example of mysql_fetch_row_format()
pawn Код:
new s, query[100];
format(query, sizeof(query), "SELECT score, money FROM playerdata WHERE user = '%s' LIMIT 1", Player_Name);
mysql_query(query);
mysql_store_result();
if(mysql_fetch_row_format(query))
{  
sscanf(query, "p<|>ii",s,Money[playerid]);
SetPlayerScore(playerid, s);
}
Reply


Messages In This Thread
Crashdetect - by Snoopythekill - 11.12.2014, 14:05
Re: Crashdetect - by BroZeus - 11.12.2014, 14:20

Forum Jump:


Users browsing this thread: 1 Guest(s)