[GameMode] World of War
#12

Quote:
Originally Posted by james_b
View Post
ok, i found i do /ahelp but i do /rcon login (password) and then /ahelp and "you are not admin" then i try /makeadmin ID LVL and it say you are no the owner!
You need edit the user file of admin level.

Or just replace /makeadmin with this:

Code:
	if(strcmp(cmd, "/makeadmin", true) == 0)
	{
	    if(IsPlayerConnected(playerid))
	    {
			tmp = strtok(cmdtext, idx);
			if(!strlen(tmp))
			{
				SendClientMessage(playerid, COLOR_SAY, "USAGE: /makeadmin [ID] [level]");
				return 1;
			}
			new para1;
			new level;
			para1 = ReturnUser(tmp);
			tmp = strtok(cmdtext, idx);
			level = strval(tmp);
			if(IsPlayerAdmin(playerid) || PlayerInfo[playerid][pAdmin] == 2)
			{
			    if(IsPlayerConnected(para1))
			    {
			        if(para1 != INVALID_PLAYER_ID)
			        {
						GetPlayerName(para1, giveplayer, sizeof(giveplayer));
						GetPlayerName(playerid, sendername, sizeof(sendername));
						PlayerInfo[para1][pAdmin] = level;
						format(string, sizeof(string), "   You have been promoted to a level %d admin by %s", level, sendername);
						SendClientMessage(para1, COLOR_SAY, string);
						format(string, sizeof(string), "   You have promoted %s to a level %d admin.", giveplayer,level);
						SendClientMessage(playerid, COLOR_SAY, string);
					}
				}
			}
			else
			{
				SendClientMessage(playerid, COLOR_SAY, "You are not owner!");
			}
		}
		return 1;
	}
Reply


Messages In This Thread
World of War - by Typhome - 17.03.2011, 20:29
Re: World of War - by SkizzoTrick - 17.03.2011, 20:32
Re: World of War - by Typhome - 17.03.2011, 20:33
Re: World of War - by Ironboy - 17.03.2011, 20:35
Re: World of War - by Typhome - 17.03.2011, 20:36
Re: World of War - by BASITJALIL - 18.03.2011, 02:45
Re: World of War - by Medal Of Honor team - 18.03.2011, 07:26
Re: World of War - by Typhome - 18.03.2011, 19:45
Re : World of War - by Soumi - 18.03.2011, 19:53
Re: Re : World of War - by Typhome - 18.03.2011, 19:58
[No subject] - by james_b - 19.03.2011, 00:38
Re: World of War - by Typhome - 19.03.2011, 06:55
Re: World of War - by Pz - 19.03.2011, 06:56
Re: World of War - by Typhome - 19.03.2011, 07:00
Re: World of War - by Typhome - 20.03.2011, 11:19
Re: World of War - by Mr.Youssef - 07.04.2011, 15:38
Re: World of War - by Dark_Thunder - 07.04.2011, 17:47
Re: World of War - by Typhome - 09.04.2011, 10:51
Re: World of War - by Typhome - 09.04.2011, 22:44
Re: World of War - by admigo - 10.04.2011, 00:54
Re: World of War - by Typhome - 10.04.2011, 09:00
Re: World of War - by bbsn006 - 10.04.2011, 14:51
Re: World of War - by Typhome - 10.04.2011, 15:40
Re: World of War - by boyan96 - 10.04.2011, 21:41
Re: World of War - by oNe_87 - 14.04.2011, 07:56
Re: World of War - by ShOoBy - 14.04.2011, 12:11
Re: World of War - by lowrida018 - 15.04.2011, 23:34
Re: World of War - by lowrida018 - 16.04.2011, 00:00
Re: World of War - by Typhome - 21.04.2011, 16:57
Re: World of War - by lowrida018 - 06.05.2011, 19:41
Re: World of War - by Typhome - 07.05.2011, 16:18
Re: World of War - by James Coral - 09.11.2011, 05:18
Re: World of War - by Neonman - 15.11.2011, 16:45

Forum Jump:


Users browsing this thread: 2 Guest(s)