[Ajuda] comando pra sub lider
#1

Eu fiz um comando aqui pra prefeito de server RPG, queria colocar pra vice-prefeito tambйm poder usar, mas to confuso em como fazer isso...

pawn Код:
if(strcmp(cmd, "/requisitarprisao", true) == 0 || strcmp(cmd, "/rprisao", true) == 0)
    {
        if(PlayerInfo[playerid][pLider] != 7)
        {
            SendClientMessage(playerid, COLOR_GREY, "   Vocк nгo й o prefeito!");
            return true;
        }
        if(giveplayerid != INVALID_PLAYER_ID)
        {
            GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
            GetPlayerName(playerid, sendername, sizeof(sendername));
            new length = strlen(cmdtext);
            while ((idx < length) && (cmdtext[idx] <= ' '))
            {
                idx++;
            }
            new offset = idx;
            new result[64];
            while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
            {
                result[idx - offset] = cmdtext[idx];
                idx++;
            }
            result[idx - offset] = EOS;
            if(!strlen(result))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "USE: /rprisao [ID][Motivo]");
                return true;
            }
            if(giveplayerid == playerid)
            {
                SendClientMessage(playerid, COLOR_GREY, "Vocк nгo pode mandar prender a si mesmo");
                return 1;
            }
            SetPlayerCriminal(giveplayerid,playerid, result);
            format(string, sizeof(string), "O Prefeito requisitou a prisгo imediata de %s. Orgs policiais entrarгo em aзгo...", giveplayerid);
            SendClientMessageToAll(COLOR_GRAD1, string);
            return true;
        }
        return true;
    }
Reply


Messages In This Thread
comando pra sub lider - by bombomloko - 02.11.2013, 03:26
Re: comando pra sub lider - by PT - 02.11.2013, 03:31
Re: comando pra sub lider - by bombomloko - 02.11.2013, 03:38
Re: comando pra sub lider - by PT - 02.11.2013, 04:05
Re: comando pra sub lider - by bombomloko - 02.11.2013, 04:14
Re: comando pra sub lider - by PT - 02.11.2013, 06:44
Re: comando pra sub lider - by bombomloko - 02.11.2013, 16:44
Re: comando pra sub lider - by Ever_SH - 02.11.2013, 17:09

Forum Jump:


Users browsing this thread: 2 Guest(s)