Jump to content

[REZOLVAT] MySQL problema update


Yeed
 Share

Recommended Posts

Username: Yeed
Problema întălnită: Nu se updateaza gender-ul in baza de date
Detalii despre problemă: Pai, am inceput sa fac un sistem de register/login pe MySQL R39-6, dar am intampinat o problema, nu mi se updateaza in baza de date gender-ul si nici skin-ul cand apas pe 'Masculin' sau 'Feminin'. A si btw, am facut o functie atunci cand jucatorul sa se autentifice sa imi apara on consola, gen User: ... s-a autentificat, dar inloc de nume imi apar gen, inceputul numelui, dupa un pic din parola si dupa email..   
Ce ai încercat să faci înainte să postezi?: Am incercat de toate
Cod sursă (recomandat pastebin.com) : https://pastebin.com/8F1aRkaz , image.png.e16636c615fd80512dd169c373cf47ae.pnghttps://pastebin.com/U8u8z2Yq
Alte detalii: Please help me :))) ca nu stiu ce sa-i mai fac

image.png

Link to comment
Share on other sites

Acum 2 ore, GabiVlgS a spus:

Incearca asa, spune-mi daca iti da o eroare, sau daca iti merge, daca nu, da-mi add pe GabiVlg#7760, si vorbim acolo

Bine, mersi. Incerc cand am ceva timp liber

 

Link to comment
Share on other sites

 

Dialog:DIALOG_GENDER(playerid, response)
{
    new query[128];
    if(response)
    {
        mysql_format(SQL, query, sizeof query, "UPDATE `users` SET `gender` = '0', `model`= '26' WHERE `name` = '%s'", GetName(playerid));
        mysql_pquery(SQL, query, "", "");
	    format(string, sizeof(string), ""#COL_SERVER">> "#COL_WHITE"Sex setat: Masculin");
        SCM(playerid, -1, string);
	    Dialog_Show(playerid, DIALOG_EMAIL, DIALOG_STYLE_INPUT, ">> Seteaza un E-mail", "Pentru a fi la curent cu tot ce se intampla cu acest server, te rugam sa introduci un e-mail", "Set", "Inchide");
    }
    else
    {
        mysql_format(SQL, query, sizeof query, "UPDATE `users` SET `gender` = '1', `model`= '90' WHERE `name` = '%s'", GetName(playerid));
        mysql_pquery(SQL, query, "", "");
	    format(string, sizeof(string), ""#COL_SERVER">> "#COL_WHITE"Sex setat: Feminin");
        SCM(playerid, -1, string);
	    Dialog_Show(playerid, DIALOG_EMAIL, DIALOG_STYLE_INPUT, ">> Seteaza un E-mail", "Pentru a fi la curent cu tot ce se intampla cu acest server, te rugam sa introduci un e-mail", "Set", "Inchide");
    }
    return 1;
}
Edited by MiritaXD
Link to comment
Share on other sites

  • 2 weeks later...
  • 577777 locked this topic
Guest
This topic is now closed to further replies.
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...