New players are admins?
#7

Quote:
Originally Posted by arathin
Посмотреть сообщение
Alright another question as my brain will not work today.. where should i put the resets?

Код:
public OnPlayerConnect(playerid)
{
    if(fexist(UserPath(playerid)))
    {
        INI_ParseFile(UserPath(playerid), "LoadUser_%s", .bExtra = true, .extra = playerid);
        ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_PASSWORD,""COL_WHITE"Login",""COL_WHITE"Type your password below to login.","Login","Quit");
    }
    else
    {
		
        ShowPlayerDialog(playerid, DIALOG_REGISTER, DIALOG_STYLE_PASSWORD,""COL_WHITE"Registering...",""COL_WHITE"Type your password below to register a new account.","Register","Quit");
    }
	if(PlayerInfo[playerid][pVip] >=1 )
	{
		SendClientMessage(playerid, COLOR_VIOLET, "Welcome back to Urban Gang-Wars, VIP. Make sure to use /vhelp for your special commands.");
	}
	return 1;
}
Код:
public OnPlayerConnect(playerid)
{
    if(fexist(UserPath(playerid)))
    {
        INI_ParseFile(UserPath(playerid), "LoadUser_%s", .bExtra = true, .extra = playerid);
        ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_PASSWORD,""COL_WHITE"Login",""COL_WHITE"Type your password below to login.","Login","Quit");
    }
    else
    {
		
        ShowPlayerDialog(playerid, DIALOG_REGISTER, DIALOG_STYLE_PASSWORD,""COL_WHITE"Registering...",""COL_WHITE"Type your password below to register a new account.","Register","Quit");
    }
	if(PlayerInfo[playerid][pVip] >=1 )
	{
		SendClientMessage(playerid, COLOR_VIOLET, "Welcome back to Urban Gang-Wars, VIP. Make sure to use /vhelp for your special commands.");
	}

	PlayerInfo[playerid][pAdmin] = 0; // Reset the rest of them here as well.
	return 1;
}
Reply


Messages In This Thread
New players are admins? - by arathin - 12.03.2013, 20:20
Re: New players are admins? - by IstuntmanI - 12.03.2013, 20:26
Re: New players are admins? - by Rock - 12.03.2013, 20:27
Re: New players are admins? - by Private200 - 12.03.2013, 20:34
Re: New players are admins? - by arathin - 12.03.2013, 20:38
Re: New players are admins? - by arathin - 12.03.2013, 20:43
Re: New players are admins? - by 2KY - 12.03.2013, 20:48

Forum Jump:


Users browsing this thread: 1 Guest(s)