I'm having troubles with my login dialog.
#4

Код:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
  if(dialogid == dialogregister)
  {
	  if(!response) return Kick(playerid);
	  if(response)
	  {
	 	ShowPlayerDialog(playerid, dialogregister, DIALOG_STYLE_INPUT, "Server", "Welcome to LSDB!\nThis account is NOT registered\nPlease insert your password below in order to create an account.", "Register", "Quit");
        return 1;
	  }
	  new hashpass[129];
	  WP_Hash(hashpass, sizeof(hashpass), inputtext);
	  new INI:file = INI_Open(Path(playerid));
	  INI_SetTag(file, "Player Information");
	  INI_WriteString(file, "Password", hashpass);
	  INI_WriteInt(file, "AdminLevel", 0);
	  INI_WriteInt(file, "Money", 100);
	  INI_WriteInt(file, "Score", 0);
	  INI_WriteInt(file, "Kills", 0);
	  INI_WriteInt(file, "Deaths", 0);
	  INI_Close(file);
	  SendClientMessage(playerid, -1, "{c3c3c3}(INFO) You have successfully registered an account!");
	  return 1;

  }
  if(dialogid == dialoglogin)
	  {
		 if(!response) return Kick(playerid);
		 if(response)
		 {
			 new hashpass[129];
			 WP_Hash(hashpass, sizeof(hashpass), inputtext);
			 if(strcmp(hashpass, pInfo[playerid][Pass], true))
			 {
				INI_ParseFile(Path(playerid),"loadaccount_%s",.bExtra = true, .extra = playerid);
				SetPlayerScore(playerid, pInfo[playerid][Score]);
				GivePlayerMoney(playerid, pInfo[playerid][Money]);
				SendClientMessage(playerid, -1, "{c3c3c3}(INFO) You have successfully logged in! You can start playing now.");
			 }
			 else
			 {
				ShowPlayerDialog(playerid, dialoglogin, DIALOG_STYLE_INPUT, "Server", "{FF0000}You have entered an invalid password!\nPlease retry again.","Login","Quit");
				return 1;
			 }
		 }
	}
  return 1;
}
Reply


Messages In This Thread
I'm having troubles with my login dialog. - by ivndosos - 22.01.2018, 04:33
Re: I'm having troubles with my login dialog. - by ivndosos - 22.01.2018, 14:20
Re: I'm having troubles with my login dialog. - by RowdyrideR - 22.01.2018, 14:50
Re: I'm having troubles with my login dialog. - by ivndosos - 22.01.2018, 15:23
Re: I'm having troubles with my login dialog. - by Rolux - 22.01.2018, 15:44
Re: I'm having troubles with my login dialog. - by ivndosos - 22.01.2018, 16:08
Re: I'm having troubles with my login dialog. - by Rolux - 22.01.2018, 16:30
Re: I'm having troubles with my login dialog. - by ivndosos - 22.01.2018, 16:41
Re: I'm having troubles with my login dialog. - by Rolux - 22.01.2018, 17:39
Re: I'm having troubles with my login dialog. - by ivndosos - 22.01.2018, 17:55

Forum Jump:


Users browsing this thread: 3 Guest(s)