SA-MP Forums Archive
[LuxAdmin] Help Needed! - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: [LuxAdmin] Help Needed! (/showthread.php?tid=393804)



[LuxAdmin] Help Needed! - martin3644 - 19.11.2012

Hello!

I'm using LuxAdmin in my server and I have a question.

When user is registering then he can see what he types. Example: Password:: helloWorld
But I want it so "**********" but I have no idea how to script it.
Can enyone help me please?


Thank You!


AW: [LuxAdmin] Help Needed! - xerox8521 - 19.11.2012

https://sampwiki.blast.hk/wiki/ShowPlayerDialog


Re: [LuxAdmin] Help Needed! - martin3644 - 19.11.2012

I'm noob. This is no help. Sorry


AW: [LuxAdmin] Help Needed! - xerox8521 - 19.11.2012

search for onplayerconnect and replace DIALOG_STYLE_INPUT with DIALOG_STYLE_PASSWORD


Re: [LuxAdmin] Help Needed! - martin3644 - 19.11.2012

Nothing here. I'm using LuxAdmin. I was searching but nothing.

Код:
//==============================================================================
//-------------------------------------------------
// Player Connected
//-------------------------------------------------
//==============================================================================
public OnPlayerConnect(playerid)
{
    #if EnableCamHack == true
    KeyState[playerid] = 0;
    FollowOn[playerid] = 0;
    AccInfo[playerid][InCamMod] 	= 0;
    AccInfo[playerid][LockedCam] 	= 0;
    #endif
	AccInfo[playerid][Deaths] 		= 0;
	AccInfo[playerid][Kills] 		= 0;
	AccInfo[playerid][Jailed]		= 0;
	AccInfo[playerid][Frozen]		= 0;
	AccInfo[playerid][Level] 		= 0;
	AccInfo[playerid][pVip]         = 0;
	AccInfo[playerid][LoggedIn] 	= 0;
	AccInfo[playerid][Registered] 	= 0;
	AccInfo[playerid][God] 			= 0;
	AccInfo[playerid][GodCar]		= 0;
	AccInfo[playerid][TimesSpawned]	= 0;
	AccInfo[playerid][Muted] 		= 0;
	AccInfo[playerid][MuteWarnings]	= 0;
	AccInfo[playerid][Warnings] 	= 0;
	AccInfo[playerid][Caps]			= 0;
	AccInfo[playerid][DoorsLocked] 	= 0;
	AccInfo[playerid][pCar]			= -1;
	AccInfo[playerid][SpamCount] 	= 0;
	AccInfo[playerid][MaxAdv] 		= 0;
	AccInfo[playerid][SpamTime] 	= 0;
	AccInfo[playerid][PingCount] 	= 0;
	AccInfo[playerid][PingTime]		= 0;
	AccInfo[playerid][FailLogin] 	= 0;
	AccInfo[playerid][Hide] 		= 0;
	AccInfo[playerid][pInvis]   	= 0;
	AccInfo[playerid][OnDuty]   	= 0;
	AccInfo[playerid][pGps] 		= -1;
	
	#if EnableTwoRcon == true
	AccInfo[playerid][MaxRcon] = 0;
	#endif

	AccInfo[playerid][ConnectTime] = gettime();
    for(new i; i<PING_MAX_EXCEEDS; i++)
	AccInfo[playerid][pPing][i] = 0;
	//------------------------------------------------------
	new string[128];
    new str[128];
	new file[256];
	new PlayerName[MAX_PLAYER_NAME];
	GetPlayerName(playerid, PlayerName, MAX_PLAYER_NAME);
	new tmp3[50]; GetPlayerIp(playerid,tmp3,50);
	
	ResetForbiddenWeaponsForPlayer(playerid);
	TempBanCheck(playerid);
//==============================================================================
// Connect Messages
//==============================================================================
	if(ServerInfo[ConnectMessages] == 1)
	{
	    new pAKA[256];
		pAKA = dini_Get("LuxAdmin/Config/aka.txt",tmp3);
		if (strlen(pAKA) < 3)
		format(str,sizeof(str),"* Player %s (Id:%d) has joined the server", PlayerName,playerid);
		else if (!strcmp(pAKA,PlayerName,true))
		format(str,sizeof(str),"* Player %s (Id:%d) has joined the server", PlayerName,playerid);
		else format(str,sizeof(str),"Player %s (Id:%d) has joined the server (Aka: %s)",PlayerName,playerid,pAKA);

		for(new i = 0; i < MAX_PLAYERS; i++)
		if(IsPlayerConnected(i) && playerid != i)
		{
		if(AccInfo[i][Level] > 2)
		SendClientMessage(i,grey,str);
		else
		{
		format(string,sizeof(string),"* Player %s (Id:%d) has joined the server", PlayerName, playerid);
 	    SendClientMessage(i,grey,string);
		}
		}
	}



Re: [LuxAdmin] Help Needed! - martin3644 - 20.11.2012

OK, as I can see. NoOne can or want help me.


Thank You!


Re: [LuxAdmin] Help Needed! - martin3644 - 22.11.2012

HELP!!!!!!!??


Re: [LuxAdmin] Help Needed! - HyDrAtIc - 22.11.2012

Show your OnDialogResponse callback code please.


Re: [LuxAdmin] Help Needed! - martin3644 - 22.11.2012

Oh It is done. Thank You!