04.06.2012, 14:28
Hello,
I wanna make a background for the players when they have to log in.
Only the bad news is that it only works when they entered the wrong password.
This picture is from when they just connect and didn't do anything yet
![](http://www.upload.ee/image/2400191/sa-mp-004.png)
This picture is from when they enter a bad password
![](http://www.upload.ee/image/2400192/sa-mp-005.png)
Pawno:
From first picture:
From second picture:
I wanna make a background for the players when they have to log in.
Only the bad news is that it only works when they entered the wrong password.
This picture is from when they just connect and didn't do anything yet
![](http://www.upload.ee/image/2400191/sa-mp-004.png)
This picture is from when they enter a bad password
![](http://www.upload.ee/image/2400192/sa-mp-005.png)
Pawno:
From first picture:
pawn Код:
SetPlayerCameraPos(playerid, 1421.2194, -1724.0134, 30.7422);
SetPlayerCameraLookAt(playerid, 1421.2194, -1724.0134, 30.7422);
new Sum;
Sum = 3-Player[playerid][LoginAttempts];
SendClientMessage(playerid, ADMINORANGE, "The password you have entered does not match your account. Please try again or use the forums.");
Player[playerid][LoginAttempts]++;
format(string, sizeof(string), "You have %d remaining login attempts, before you are auto-banned.", Sum);
SendClientMessage(playerid, WHITE, string);
ShowPlayerDialog(playerid, 3894, DIALOG_STYLE_PASSWORD, "Authentication", "Welcome to changeme\n\nYou have an account, please enter your password to authenticate.", "Login", "Help");
pawn Код:
SetPlayerCameraPos(playerid, 1421.2194, -1724.0134, 30.7422);
SetPlayerCameraLookAt(playerid, 1421.2194, -1724.0134, 30.7422);
ShowPlayerDialog(playerid, 3894, DIALOG_STYLE_PASSWORD, "Authentication", "Welcome to Changeme\n\nYou have an account, please enter your password to authenticate.", "Login", "Help");
format(string, sizeof(string), "Welcome to changeme, Current Version: %s", Version);
SendClientMessage(playerid, RED, string);
SendClientMessage(playerid, WHITE, "This name is registered. If you're the account owner, please login with your account credentials to proceed.");