ChangeName Of player
#1

Hello,

im using luxadmin, I noticed that Too many people got kicked cuz of Wrong Passwords, so i want to make in the dialog
"Login","Change Name" , so player can change his name how to make that ?
Register and login Dialogs
Код:
	if(ServerInfo[MustLogin] == 1 && AccInfo[playerid][Registered] == 1 && AccInfo[playerid][LoggedIn] == 0)
	{
		#if USE_DIALOGS == true
		new lstring[400];
		format(lstring,400,"{FFFFFF}Welcome back to {6EF83C}xXx Stunt Paradise Awesome™, {FFFFFF}This Account {FF0000}' %s ' {FFFFFF}is Already Registered! login to access your account:",pName(playerid));
		ShowPlayerDialog(playerid,DIALOGID+67,DIALOG_STYLE_PASSWORD,"Login Account",lstring,"Login","Quit");
		#endif
		return 1;
	}
	if(AccInfo[playerid][Registered] == 0 && ServerInfo[MustRegister] == 1)
	{
		#if USE_DIALOGS == true
		new rstring[380];
		format(rstring,380,"Welcome '%s',You'r Account is not registred!\n Why Do i have to register??:-\n{6EF83C}- To Save Your Stats in server Like money and score!\n - To be sure that no one will use your account!\n{00FFFF}Enter the password to Register your Account, Don't type you'r name as password!:",pName(playerid));
		ShowPlayerDialog(playerid,DIALOGID+66,DIALOG_STYLE_PASSWORD,"Register Account",rstring,"Register","Guest");
		#endif
		return 1;
	}
 	return 1;
}
Dialogid
Код:
	if (dialogid == DIALOGID+68)
	{
 		if(response == 0)
		{
			Kick(playerid); must be changed
		}
 		if(response)
	    {
			if (strlen(inputtext) < 4 || strlen(inputtext) > 20)
			{
				new rstring[256];
				format(rstring,256,"Sorry %s\n\nThe length of your password should contain more \nthan 3 characters and less than 20 characters! \n\n Please, re-enter the Password:",pName(playerid));
				return ShowPlayerDialog(playerid,DIALOGID+68,DIALOG_STYLE_INPUT,"Register Error!",rstring,"Register","Quit");
			}
.
.
.
.
Reply


Messages In This Thread
ChangeName Of player - by MahdiGames - 25.12.2013, 08:11
Re: ChangeName Of player - by SilentSoul - 25.12.2013, 08:19
Re: ChangeName Of player - by MahdiGames - 25.12.2013, 08:59
Re: ChangeName Of player - by SilentSoul - 25.12.2013, 09:01
Re: ChangeName Of player - by MahdiGames - 25.12.2013, 09:11
Re: ChangeName Of player - by SilentSoul - 25.12.2013, 09:15

Forum Jump:


Users browsing this thread: 2 Guest(s)