03.12.2016, 19:56
Hello
i noticed the rows not created idk why :C
that why i don't get login dialog i think :C
Dialog code :
i noticed the rows not created idk why :C
that why i don't get login dialog i think :C
Dialog code :
PHP код:
switch( dialogid )
{
case DIALOG_REGISTER:
{
if (!response) return Kick(playerid);
if (!inputtext[0] || inputtext[0] == ' ') return ShowPlayerDialog( playerid, DIALOG_REGISTER, DIALOG_STYLE_PASSWORD, "Register {FF0000}Failed !", "You must type a password if you want to register!", "Register", "Quit" );
new string[150];
if(!(MIN_PASSWORD_LENGTH <= strlen(inputtext) <= MAX_PASSWORD_LENGTH)) return ShowPlayerDialog(playerid, DIALOG_REGISTER, DIALOG_STYLE_PASSWORD, "Register {FF0000}Failed !", ""WHITE"The password must be between 4 and 24 characters!", "Register", "Quit" );
new ip[18];
GetPlayerIp(playerid, ip, sizeof (ip));
new querylist[512];
format(querylist, sizeof(querylist), "INSERT INTO `accounts`(`name`, `ip`, `password`) VALUES('%s', '%f', '%s')", GetName(playerid), ip, inputtext);
mysql_query(MySQL, querylist);
format(string, sizeof (string), ""GREEN"Thank you %s! You have successfully registered this account. || Money: $%i || Skin: %i", GetName(playerid), PlayerInfo[playerid][pCash], PlayerInfo[playerid][pSkin]);
SendClientMessage(playerid, -1, string);
}