How to put Limit in this?
#6

Quote:
Originally Posted by Harry_Sandhu
View Post
Its giving these 3 warnings.

Code:
F:\My Server\Server\gamemodes\IN-RP.pwn(388) : warning 213: tag mismatch
F:\My Server\Server\gamemodes\IN-RP.pwn(388) : warning 213: tag mismatch
F:\My Server\Server\gamemodes\IN-RP.pwn(388) : warning 205: redundant code: constant expression is zero
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


3 Warnings.
Sorry about that

pawn Code:
CMD:makeadmin(playerid, params[])
{
                                                  //24 is max player  name
    new playerid2,level,aName[24],pName2[24],string[128];
    if(level > 6 || level < 0) return SendClientMessage(playerid, ERROR,"Usage: /makeadmin [Playerid/PartOfName][Level(0-6)]");
if(PlayerInfo[playerid][pAdmin] < PlayerInfo[playerid][pAdmin]) return SendClientMessage(playerid, ERROR,"You cannot promote/demote a Higher rank admin than you.");
  if(level > 6 || level < 0) return SendClientMessage(playerid, COLOR_RED,"System: Valid Admin Levels: 0-6!");
    if(PlayerInfo[playerid][pAdmin] > 4 || IsPlayerAdmin(playerid)) {
        if(sscanf(params,"ud",playerid2,level)) return SendClientMessage(playerid, ERROR,"Usage: /makeadmin [Playerid/PartOfName][Level(0-6)]");
        if(!IsPlayerConnected(playerid2)) return SendClientMessage(playerid,ERROR,"Invalid Player.");

        GetPlayerName(playerid, aName,24);
        GetPlayerName(playerid2, pName2,24);

        format(string,sizeof(string), "Admin %s gave you Admin level %d",aName,level);
        SendClientMessage(playerid2, COLOR_YELLOW, string);

        format(string,sizeof(string), "You gave Admin level %d to %s",level,pName2);
        SendClientMessage(playerid, ADMIN, string);
       
        format(string, sizeof(string),"Admin %s gave admin level %d to %s",aName,level,pName2);
        SendAdminMessage(COLOR_RED, string);

        PlayerInfo[playerid2][pAdmin] = level;
        return 1;
    }
    SendClientMessage(playerid, ERROR, "You are not authorized to use that command.");
    return 1;
}
Reply


Messages In This Thread
How to put Limit in this? - by Harry_Sandhu - 31.07.2011, 04:28
Re: How to put Limit in this? - by Shockey HD - 31.07.2011, 04:30
Re: How to put Limit in this? - by Harry_Sandhu - 31.07.2011, 04:36
Re: How to put Limit in this? - by Shockey HD - 31.07.2011, 04:39
Re: How to put Limit in this? - by Harry_Sandhu - 31.07.2011, 04:41
Re: How to put Limit in this? - by Shockey HD - 31.07.2011, 04:43
Re: How to put Limit in this? - by Harry_Sandhu - 31.07.2011, 04:45
Re: How to put Limit in this? - by Shockey HD - 31.07.2011, 04:46
Re: How to put Limit in this? - by Harry_Sandhu - 31.07.2011, 04:47
Re: How to put Limit in this? - by Harry_Sandhu - 31.07.2011, 04:51
Re: How to put Limit in this? - by Shockey HD - 31.07.2011, 04:55
Re: How to put Limit in this? - by Harry_Sandhu - 31.07.2011, 05:02
Re: How to put Limit in this? - by Shockey HD - 31.07.2011, 05:06
Re: How to put Limit in this? - by Harry_Sandhu - 31.07.2011, 05:07
Re: How to put Limit in this? - by Shockey HD - 31.07.2011, 05:09
Re: How to put Limit in this? - by Harry_Sandhu - 31.07.2011, 05:09
Re: How to put Limit in this? - by Shockey HD - 31.07.2011, 05:15
Re: How to put Limit in this? - by Harry_Sandhu - 31.07.2011, 05:15
Re: How to put Limit in this? - by Shockey HD - 31.07.2011, 05:23
Re: How to put Limit in this? - by Harry_Sandhu - 31.07.2011, 07:32
Re: How to put Limit in this? - by Harry_Sandhu - 31.07.2011, 07:39
Re: How to put Limit in this? - by Nenad - 31.07.2011, 07:55
Re: How to put Limit in this? - by iggy1 - 31.07.2011, 08:04

Forum Jump:


Users browsing this thread: 4 Guest(s)