Help for the rcon
#5

Quote:
Originally Posted by Sew_Sumi
Посмотреть сообщение
The /makeadmin command.
Код:
if(strcmp(cmd, "/makeadmin", true) == 0)
	{
	    if(IsPlayerConnected(playerid))
	    {
			tmp = strtok(cmdtext, idx);
			if(!strlen(tmp))
			{
				SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /makeadmin [playerid/PartOfName] [Admin Rank]");
				SendClientMessage(playerid, COLOR_WHITE, "0] Remove Admin Status 1] Moderator 2] Operator 3] General Admin 4] Senior Admin");
				SendClientMessage(playerid, COLOR_WHITE, "1337] Lead Admin 1338] Head Admin 1339] Community Manager 99999] Executive Admin");
				return 1;
			}
			new para1;
			new level;
			para1 = ReturnUser(tmp);
			tmp = strtok(cmdtext, idx);
			level = strval(tmp);
			if(PlayerInfo[playerid][pAdmin] >= 99999)
			{
			    if(IsPlayerConnected(para1))
			    {
			        if(para1 != INVALID_PLAYER_ID)
			        {
						GetPlayerName(para1, giveplayer, sizeof(giveplayer));
						GetPlayerName(playerid, sendername, sizeof(sendername));
						PlayerInfo[para1][pAdmin] = level;
						printf("{AA3333}AdmCmd{FFFF00}: %s has promoted %s to a level %d admin.", sendername, giveplayer, level);
						format(string, sizeof(string), "WARNING :- You have been promoted to an adminstrator rank %d by the Executive adminstrator %s", level, sendername);
						SendClientMessage(para1, COLOR_LIGHTRED, string);
						format(string, sizeof(string), "WARNING :- You have promoted %s to an adminstrator rank %d", giveplayer,level);
						SendClientMessage(playerid, COLOR_LIGHTBLUE, string);
					}
				}
			}
			else
			{
			    SendClientMessage(playerid, COLOR_GRAD1, "   you are not authorized to use that command!");
			}
		}
		return 1;
This is my code.
Reply


Messages In This Thread
Help for the rcon - by VinHanako - 09.06.2016, 02:52
Re: Help for the rcon - by Stinged - 09.06.2016, 03:32
Re: Help for the rcon - by VinHanako - 09.06.2016, 03:35
Re: Help for the rcon - by Sew_Sumi - 09.06.2016, 03:52
Re: Help for the rcon - by VinHanako - 09.06.2016, 03:53
Re: Help for the rcon - by Stinged - 09.06.2016, 04:01
Re: Help for the rcon - by VinHanako - 09.06.2016, 04:02
Re: Help for the rcon - by VinHanako - 09.06.2016, 04:23
Re: Help for the rcon - by Stinged - 09.06.2016, 04:43
Re: Help for the rcon - by Sew_Sumi - 09.06.2016, 05:56

Forum Jump:


Users browsing this thread: 1 Guest(s)