03.07.2012, 14:46
Let me try something.
_____________________
EDIT:
This line gives me doubts:
I think its parameters are:
I mean, you're using it wrong.
Are you using BlueG's MySQL plugin?
Try with this:
_____________________
EDIT:
This line gives me doubts:
pawn Код:
mysql_fetch_field("password", pPassword[playerid])
pawn Код:
mysql_fetch_field(value, destination[]);
//---Example:
new save_here[40];
mysql_fetch_field(2, save_here);
Are you using BlueG's MySQL plugin?
Try with this:
pawn Код:
new query[128], data[256];
GetPlayerName(playerid, pPseudo[playerid], sizeof(pPseudo[]));
format(query,128, "SELECT * FROM members WHERE pseudo = '%s' LIMIT 1", pseudo[playerid]);
mysql_query(query), mysql_store_result();
if(mysql_num_rows())
{
new sConnexion[128];
format(sConnexion, sizeof(sConnexion), "{009FFB}Hello, {0032FB}%s !\n\n{009FFB}Please enter your password :", pPseudo[playerid]);
ShowPlayerDialog(playerid, 1, DIALOG_STYLE_PASSWORD, "Connexion", sConnexion, "Connexion", "Exit");
} else {
//Register dialog here.
}