Thanks for reply. Ok so i tried:
PHP Code:
formatex( szQuery, 999, "UPDATE `users` SET `MVP` = 'MVP + 1' WHERE steam_id = '%s';", MVPsteamid);
SQL_ThreadQuery( g_hTuple, "QuerySetData", szQuery);
formatex( szQuery, 999, "UPDATE `users` SET `MLP` = 'MLP + 1' WHERE steam_id = '%s';", MLPsteamid);
SQL_ThreadQuery( g_hTuple, "QuerySetData", szQuery);
formatex( szQuery, 999, "UPDATE `matches` SET `MVP_steamid` = '%s', `MLP_steamid` = '%s' WHERE match_id = '%s';", MVPsteamid, MLPsteamid, szLine);
SQL_ThreadQuery( g_hTuple, "QuerySetData", szQuery);
log_amx(szQuery)
Same thing...
LOG:
PHP Code:
UPDATE `matches` SET `MVP_steamid` = 'STEAM_0:0:107365441', `MLP_steamid` = 'STEAM_0:0:155654489' WHERE match_id = 'fG5A8F46EDJb4c5ec8271a71';
But nothing about `users` ... why?