Jump to content
  • 0

MySql nu salveaza banii


andreistalker

Question

Am 2 probleme care nu stiu cum sa le rezolv

Problema intalnita (descriere): Am incercat sa fac cand te deconectezi de la server sa iti salveze bani, dar nu merge...
Ero(area / rile) / warning-(ul / urile): -
Liniile de cod / sursa / script-ul(obligatoriu): 

public OnPlayerDisconnect(playerid, reason)
{

    new query[126];
    mysql_format(handle, query, sizeof(query), "UPDATE `players` SET `Cash`='%s' WHERE `username`='%s'", GetPlayerMoney(playerid), GetPlayerName(playerid));// facem update-ul la baza de date
     mysql_query(handle, query);

    return 1;
}
Ati incercat sa rezolvati singur?: Da

Problema #2

Problema intalnita (descriere): Atunci cand te respawnezi iti ia 100$
Ati incercat sa rezolvati singur?: Da

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Incearca asa:

mysql_format(handle, query, sizeof(query), "UPDATE `players` SET `Cash`='%d' WHERE `username`='%s'", GetPlayerMoney(playerid), GetPlayerName(playerid));// facem update-ul la baza de date
     mysql_query(handle, query);

Banii sunt de tip numar adica %d tu aveai de tip nume %s .

Si corecteaza si numele.

Edited by Mister

 

    __  ____      __           
   /  |/  (_)____/ /____  _____
  / /|_/ / / ___/ __/ _ \/ ___/
 / /  / / (__  ) /_/  __/ /    
/_/  /_/_/____/\__/\___/_/     
SERVICII SCRIPTING DE CALITATE
Pagina     Scripting     pawn
Link to comment
Share on other sites

  • 0

Incearca asa:

new name[40];

GetPlayerName(playerid, name, sizeof(name));

mysql_format(handle, query, sizeof(query), "UPDATE `players` SET `Cash`='%d' WHERE `username`='%s'", GetPlayerMoney(playerid), name);// facem update-ul la baza de date
     mysql_query(handle, query);

Si daca tot nu merge 

Posteaza eroarea, si mysql_log

Edited by Mister

 

    __  ____      __           
   /  |/  (_)____/ /____  _____
  / /|_/ / / ___/ __/ _ \/ ___/
 / /  / / (__  ) /_/  __/ /    
/_/  /_/_/____/\__/\___/_/     
SERVICII SCRIPTING DE CALITATE
Pagina     Scripting     pawn
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.