SA-MP Forums Archive
Scores problem - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Scores problem (/showthread.php?tid=610287)



Scores problem - Spoff - 22.06.2016

Guys where is problem with scores ? http://pastebin.com/k4EPGL1d Scores not saved , everytime are 0 on tables


Re: Scores problem - DoggMann - 22.06.2016

Код:
UPDATE `tbl_users` SET `Level` = '%d', WHERE ID = %d", `Score` = '%d'
This is the sended query and there is a problem
Код:
UPDATE `tbl_users` SET `Level` = '%d', `Score` = '%d' WHERE ID = %d"
This is a correct query

You need to change this
Код:
    format(query, sizeof(query), " WHERE ID = %d", PlayerInfo[playerid][pID]);
    strcat(final,query);
    format(query, sizeof(query), "`Score` = '%d',",PlayerInfo[playerid][pScore] = GetPlayerScore(playerid));
    strcat(final,query);
To this
Код:
    format(query, sizeof(query), "`Score` = '%d',",PlayerInfo[playerid][pScore] = GetPlayerScore(playerid));
    strcat(final,query);
    format(query, sizeof(query), " WHERE ID = %d", PlayerInfo[playerid][pID]);
    strcat(final,query);



Re: Scores problem - Spoff - 23.06.2016

again same problem


Re: Scores problem - DoggMann - 23.06.2016

You have a mysql debug log?
Please post it