11.06.2011, 19:22
hello !
i'm download mysql plugin,
I tried to build a Registration and Logging
Now that's the problem:
Even if the user exists, he shows him the dialogue of the registration
Here's the code:
What's the problem?
i'm download mysql plugin,
I tried to build a Registration and Logging
Now that's the problem:
Even if the user exists, he shows him the dialogue of the registration
Here's the code:
pawn Код:
public OnPlayerConnect(playerid)
{
format(String,256,"SELECT COUNT * FROM Users WHERE Nick='%s'",GetName(playerid));
new exists = mysql_query(String);
if(mysql_num_rows(exists) == 0)
{
format(String,256,"{ffffff}.Proffesional DeathMeath бшек дба мщшъ \n .айрк шщен мотшлъ, тм оръ мдшщн емдреъ одоег лод щйеъш дрк цшйк мдшщн \n.тм оръ мдшщн длрс аъ сйсоък:",GetName(playerid),GetHColor(c_yellow));
ShowPlayerDialog(playerid,RegDialog,DIALOG_STYLE_INPUT,"\t\t\t\t{ffffff}дшщод мщшъ",String,"дшщн","");
}
else
{
LoginsErrors[playerid] = 0;
format(String,256,"{ffffff}/Proffesional DeathMatch бшек дба мщшъ \n .щн дощъощ мк шщен, ард дъзбш мотшлъ ббчщд",GetName(playerid),GetHColor(c_yellow));
ShowPlayerDialog(playerid,LogDialog,DIALOG_STYLE_INPUT,"\t\t\t\t{ffffff}дъзбшеъ мщшъ",String,"дъзбш","");
}
return 1;
}