Score not updating
#1

For some reason the score of a player is not updating in MySQL:
PHP код:
public OnPlayerDisconnect(playeridreason)
{
    new
        
query[128],
        
Float:pos[4],
        
name[24],
        
score;
    
GetPlayerPos(playeridpos[0], pos[1], pos[2]);
    
GetPlayerFacingAngle(playeridpos[3]);
    
GetPlayerName(playeridname24);
    
GetPlayerScore(playeridPlayer[playerid][Score]);
    
mysql_format(mysqlquerysizeof(query), "UPDATE `accounts` SET `Money` = %d, `PosX` = %f, `PosY` = %f, `PosZ` = %f, `PosA` = %f WHERE `ID` = %d",
    
GetPlayerMoney(playerid), pos[0], pos[1], pos[2], pos[3], Player[playerid][ID]);
    
mysql_format(mysqlquerysizeof query"UPDATE 'accounts' SET 'Score' = '%i' WHERE 'Name' = '%s'"scorename);
    
mysql_tquery(mysqlquery"""");
    return 
true;

Reply


Messages In This Thread
Score not updating - by Deroxi - 02.06.2016, 13:23
Re: Score not updating - by Dayrion - 02.06.2016, 16:22
Re: Score not updating - by Deroxi - 02.06.2016, 16:26
Re: Score not updating - by Dayrion - 02.06.2016, 16:37
Re: Score not updating - by Deroxi - 02.06.2016, 16:41
Re: Score not updating - by oMa37 - 02.06.2016, 16:43
Re: Score not updating - by Deroxi - 02.06.2016, 16:47
Re: Score not updating - by Dayrion - 02.06.2016, 16:49
Re: Score not updating - by oMa37 - 02.06.2016, 16:52
Re: Score not updating - by Deroxi - 02.06.2016, 18:16

Forum Jump:


Users browsing this thread: 1 Guest(s)