how to integrate 2 commands [REPS!]
#4

Quote:
Originally Posted by AhmedMohamed
Посмотреть сообщение
/admins command :
Код:
CMD:admins(playerid,params[])
{
    #pragma unused params
        new count = 0;
        new string[128];
        new ChangeColor;
  		SendClientMessage(playerid, green, " ");
        SendClientMessage(playerid, green, "___________ |- Online Admins -| ___________");
		SendClientMessage(playerid, green, " ");
		for(new i = 0; i < MAX_PLAYERS; i++)
		{
	 		if (IsPlayerConnected(i))
 			{
				if(AccInfo[i][Level] >= 1 && AccInfo[i][Hide] == 0) 
 				{
					if(AccInfo[i][Level] > 5)
					{
						AdmRank = "Professional Admin";
						ChangeColor = Color_Professional_Admin;
					}
 					if(IsPlayerAdmin(i))
				  	{
				  		AdmRank = "RCON Administrator";
				  		ChangeColor = Color_RCON_Administrator;
				  	}
				    else
				    {
				 		switch(AccInfo[i][Level])
						{
							case 1: {
							AdmRank = "Basic Moderator";
							ChangeColor = Color_Basic_Moderator;
							}
							case 2: {
							AdmRank = "Moderator";
							ChangeColor = Color_Moderator;
							}
							case 3: {
							AdmRank = "Master Moderator";
							ChangeColor = Color_Master_Moderator;
							}
							case 4: {
							AdmRank = "Administrator";
							ChangeColor = Color_Administrator;
							}
							case 5: {
							AdmRank = "Master Administrator";
							ChangeColor = Color_Master_Administrator;
							}
						}
					}
		 			switch(AccInfo[i][OnDuty])
					{
						case 0: AdmDuty = "Playing!";
						case 1: AdmDuty = "On Duty!";
					}
					format(string, 128, "Level: %d - %s (Id:%i) | %s | %s",AccInfo[i][Level], PlayerName2(i),i,AdmRank,AdmDuty);
					SendClientMessage(playerid, ChangeColor, string);
					count++;
				}
			}
		}
		if (count == 0)
		SendClientMessage(playerid,red,"No admin online in the list");
		SendClientMessage(playerid, green, " _______________________________________");
		return 1;
}
/vips command:
Код:
CMD:vip(playerid,params[])
{
	#pragma unused params
	if(AccInfo[playerid][LoggedIn] == 1)
	{
		if(AccInfo[playerid][Level] >= 1)
		{
	 		new bool:First2 = false;
	 		new Count, i;
		    new string[128];
			new adminname[MAX_PLAYER_NAME];
		    for(i = 0; i < MAX_PLAYERS; i++)
			if(IsPlayerConnected(i) && AccInfo[i][pVip] > 0)
			Count++;
			
			if(Count == 0)
			return SendClientMessage(playerid,red, "No players have VIP Account!");
			
		    for(i = 0; i < MAX_PLAYERS; i++)
			if(IsPlayerConnected(i) && AccInfo[i][pVip] > 0)
			{
				if(AccInfo[i][pVip] > 0)
				{
					switch(AccInfo[i][pVip])
    				{
					case 1: AccType = "Silver";
					case 2: AccType = "Gold";
					case 3: AccType = "Premium";
					}
				}
 				GetPlayerName(i, adminname, sizeof(adminname));
				if(!First2)
				{
					format(string, sizeof(string), "VIP Players: %d(%s)", i,AccType);
					First2 = true;
				}
   					else format(string,sizeof(string),"%s, %d(%s)",string,i,AccType);
	        }
		    return SendClientMessage(playerid,yellow,string);
		}
		else return SendClientMessage(playerid,red,"ERROR: You are not a high enough level to use this command");
	}
	else return SendClientMessage(playerid,red,"ERROR: You must be logged in to use this commands");
}
Huh? i want to make the commands admins show also the vips so when someone type /admins see the online vips also.
Reply


Messages In This Thread
how to integrate 2 commands [REPS!] - by Mahde - 04.02.2014, 15:59
Re: how to integrate 2 commands [REPS!] - by Mahde - 04.02.2014, 21:31
Re: how to integrate 2 commands [REPS!] - by AhmedMohamed - 05.02.2014, 01:37
Re: how to integrate 2 commands [REPS!] - by Mahde - 05.02.2014, 08:29

Forum Jump:


Users browsing this thread: 1 Guest(s)