Empty statement & Invalid expression.
#4

Quote:
Originally Posted by Cjgogo
Посмотреть сообщение
pawn Код:
new cmd[256], idx;
    cmd = strtok(cmdtext, idx);
    if(strcmp(cmdtext, "/makeadmin",true))
    {
       new string[128];
       new tmp[256];
       new player[MAX_PLAYER_NAME], giveplayer[MAX_PLAYER_NAME];
       new giveplayerid;
       if(PlayerInfo[playerid][pAdmin] == 6)
       {
               tmp = strtok(cmdtext, idx);
               if(!strlen(tmp))
               {
                       SendClientMessage(playerid, COLOR_GREY, "USAGE: /makeadmin [playerid] [level]");
                       SendClientMessage(playerid, COLOR_GREY, "FUNCTION: Player will be an admin.");
                       return 1;
               }
               tmp = strtok(cmdtext, idx);
               new level = strval(tmp);
               if(giveplayerid != INVALID_PLAYER_ID)
               {
                       GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
                       GetPlayerName(playerid, player, sizeof(player));
                       PlayerInfo[giveplayerid][pAdmin] = level;
                       printf("Admin %s made %s a level %d admin.", player, giveplayer, level);
                       format(string, sizeof(string), "You are now an administrator level %d.", level,  player);
                       SendClientMessage(giveplayerid, COLOR_GREY, string);
                       format(string, sizeof(string), "You have given %s level %d admin.",  giveplayer,PlayerInfo[giveplayerid][pAdmin]);
                       SendClientMessage(playerid, COLOR_GREY, string);
               }
               else if(giveplayerid == INVALID_PLAYER_ID)
               {
                       format(string, sizeof(string), "%i is not an active player.", giveplayerid);
                       SendClientMessage(playerid, COLOR_GREY, string);
               }
       }
       else
       {
           SendClientMessage(playerid, COLOR_GREY, "You are not authorized to use this command!");
       }
       return 1;
    }
Try replace the command with the code I gave you
Fixed, thank you very much, +REP.
Reply


Messages In This Thread
[SOLVED] - by Cxnnor - 26.07.2012, 12:58
Re: Empty statement & Invalid expression. - by Cjgogo - 26.07.2012, 13:04
Re: Empty statement & Invalid expression. - by Skaizo - 26.07.2012, 13:04
Re: Empty statement & Invalid expression. - by Cxnnor - 26.07.2012, 13:13

Forum Jump:


Users browsing this thread: 2 Guest(s)