Hello folks. I want to made custom info. Like current score in server.
I have table row with id 24 (like example. every time then maps reload its create a new id)
My code looks like that:
PHP Code:
public UpdateGameLIVE(id)
{
new szQuery[3800];
formatex( szQuery, 3799, "UPDATE `matches` SET `left_score` = '%d', `right_score` = '%d' WHERE id = '%d';", scoreCTS, scoreTS, id);
SQL_ThreadQuery( g_hTuple, "QuerySetData", szQuery);
}
But its does not working. Sorry for bad english. Any help?