[Pedido] /su
#1

Tipo eu queria um /su ou /suspeito que fosse automatico exemplo:

O policial manda o cara parar o carro e ele nгo para ele da:

/su ID DOP

Ai em baixo vou por a lista de /su's

/su TH – Tentativa de homicнdio.
/su DOP – Desobediкncia a ordem policial.
/su ILR – Invasгo a local restrito
/su SEQUESTRO – Quando alguйm й sequestrado.
/su Roubo – Quando alguem estб assaltando.
/su Desacato – Quando alguem usa palavras ofensivas
/su Fuga – Quando o suspeito tenta fugir de alguma abordagem.
/su RP – Quando й dada voz de prisгo e o suspeito tenta fugir.
/su Suborno – Quando o indivнduo tenta pagar para nгo ser preso.
/su Drogas – Quando o suspeito porta drogas.
/su Materiais – Quando o suspeito porta materiais.
/su PIA – Quando o suspeito nгo tem licensa para portar armas.
Reply
#2

pawn Код:
if(strcmp(cmd, "/suspect", true) == 0 || strcmp(cmd, "/su", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            if(OnDuty[playerid] != 1  && PlayerInfo[playerid][pMembro] == 1)
            {
                SendClientMessage(playerid, COLOR_GREY, "   Vocк nгo bateu o Cartгo!");
                return 1;
            }
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "USE: (/su)spect [ id ] [Descriзгo do Crime]");
                return 1;
            }
            giveplayerid = ReturnUser(tmp);
            if (gTeam[playerid] == 2 || IsACop(playerid))
            {
                if(IsPlayerConnected(giveplayerid))
                {
                    if(giveplayerid != INVALID_PLAYER_ID)
                    {
                        if (gTeam[giveplayerid] != 2)
                        {
                            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: (/su)spect [ id ] [crime text]");
                                return 1;
                            }
                            if(giveplayerid == playerid) { SendClientMessage(playerid, COLOR_GREY, "Vocк nгo pode se dar su!"); return 1; }
                            if(strcmp(result,"DOP",true) == 0) { result = "Desobediкncia a ordem policial"; }
                            if(strcmp(result,"TH",true) == 0) { result = "Tentativa de homicнdio"; }
                            if(strcmp(result,"AP",true) == 0) { result = "Ajuste de pena"; }
                            if(strcmp(result,"CA",true) == 0) { result = "Contrabando de armas"; }
                            if(strcmp(result,"CD",true) == 0) { result = "Contrabando de drogas"; }
                            if(strcmp(result,"RV",true) == 0) { result = "Roubo de Veнculo"; }
                            if(strcmp(result,"RM",true) == 0) { result = "Rejeiзгo de multa"; }
                            if(strcmp(result,"RP",true) == 0) { result = "Resistencia a prisгo"; }
                            if(strcmp(result,"ILR",true) == 0) { result = "Invasгo a Local Restrito"; }
                            if(strcmp(result,"RMD",true) == 0) { result = "Rejeiзгo a Mostrar Documentos"; }
                            if(strcmp(result,"DA",true) == 0) { result = "Desacato б Autoridade"; }
                            if(strcmp(result,"PIA",true) == 0) { result = "Porte Ilegal de Armas"; }
                            if(strcmp(result,"CF",true) == 0) { result = "Cumplice de Fugas"; }
                            if(WantedPoints[giveplayerid] == 0) { WantedPoints[giveplayerid] = 3; }
                            else { WantedPoints[giveplayerid]+= 2; }
                            SetPlayerCriminal(giveplayerid,playerid, result);
                            return 1;
                        }
                        else
                        {
                            SendClientMessage(playerid, COLOR_GRAD2, "   Vocк nгo pode dar level de procurado a um policial !");
                        }
                    }
                }
                else
                {
                        format(string, sizeof(string), "   %d nгo estб conectado.", giveplayerid);
                        SendClientMessage(playerid, COLOR_GRAD1, string);
                        return 1;
                }
            }
            else
            {
                SendClientMessage(playerid, COLOR_GRAD2, "   Vocк nгo e PM/PC/B.O.P.E/Exercito/PF !");
            }
        }
        return 1;
 }
espero que agradeзa.
Reply
#3

Quote:
Originally Posted by Gabriel_Halls
Посмотреть сообщение
pawn Код:
if(strcmp(cmd, "/suspect", true) == 0 || strcmp(cmd, "/su", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            if(OnDuty[playerid] != 1  && PlayerInfo[playerid][pMembro] == 1)
            {
                SendClientMessage(playerid, COLOR_GREY, "   Vocк nгo bateu o Cartгo!");
                return 1;
            }
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "USE: (/su)spect [ id ] [Descriзгo do Crime]");
                return 1;
            }
            giveplayerid = ReturnUser(tmp);
            if (gTeam[playerid] == 2 || IsACop(playerid))
            {
                if(IsPlayerConnected(giveplayerid))
                {
                    if(giveplayerid != INVALID_PLAYER_ID)
                    {
                        if (gTeam[giveplayerid] != 2)
                        {
                            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: (/su)spect [ id ] [crime text]");
                                return 1;
                            }
                            if(giveplayerid == playerid) { SendClientMessage(playerid, COLOR_GREY, "Vocк nгo pode se dar su!"); return 1; }
                            if(strcmp(result,"DOP",true) == 0) { result = "Desobediкncia a ordem policial"; }
                            if(strcmp(result,"TH",true) == 0) { result = "Tentativa de homicнdio"; }
                            if(strcmp(result,"AP",true) == 0) { result = "Ajuste de pena"; }
                            if(strcmp(result,"CA",true) == 0) { result = "Contrabando de armas"; }
                            if(strcmp(result,"CD",true) == 0) { result = "Contrabando de drogas"; }
                            if(strcmp(result,"RV",true) == 0) { result = "Roubo de Veнculo"; }
                            if(strcmp(result,"RM",true) == 0) { result = "Rejeiзгo de multa"; }
                            if(strcmp(result,"RP",true) == 0) { result = "Resistencia a prisгo"; }
                            if(strcmp(result,"ILR",true) == 0) { result = "Invasгo a Local Restrito"; }
                            if(strcmp(result,"RMD",true) == 0) { result = "Rejeiзгo a Mostrar Documentos"; }
                            if(strcmp(result,"DA",true) == 0) { result = "Desacato б Autoridade"; }
                            if(strcmp(result,"PIA",true) == 0) { result = "Porte Ilegal de Armas"; }
                            if(strcmp(result,"CF",true) == 0) { result = "Cumplice de Fugas"; }
                            if(WantedPoints[giveplayerid] == 0) { WantedPoints[giveplayerid] = 3; }
                            else { WantedPoints[giveplayerid]+= 2; }
                            SetPlayerCriminal(giveplayerid,playerid, result);
                            return 1;
                        }
                        else
                        {
                            SendClientMessage(playerid, COLOR_GRAD2, "   Vocк nгo pode dar level de procurado a um policial !");
                        }
                    }
                }
                else
                {
                        format(string, sizeof(string), "   %d nгo estб conectado.", giveplayerid);
                        SendClientMessage(playerid, COLOR_GRAD1, string);
                        return 1;
                }
            }
            else
            {
                SendClientMessage(playerid, COLOR_GRAD2, "   Vocк nгo e PM/PC/B.O.P.E/Exercito/PF !");
            }
        }
        return 1;
 }
espero que agradeзa.



s2 Te amo, sу uma pergunta, usei search e nгo achei, procurei por /su, vc que fez esse code ou achou no search?


Brigadгo *----* s2
Reply
#4

Quote:
Originally Posted by Los
Посмотреть сообщение
s2 Te amo, sу uma pergunta, usei search e nгo achei, procurei por /su, vc que fez esse code ou achou no search?


Brigadгo *----* s2
nгo me lembro aonde eu vi tinha um exemplo olhei dps peguei e fis o meu =D.
Reply
#5

Parabens cara, vlws ae mano
te amo s2
Reply
#6

Quote:
Originally Posted by Los
Посмотреть сообщение
Parabens cara, vlws ae mano
te amo s2
eu vo definir isso nos comandos de admins tipo /kick Ex: /kick ID Motivo:1 = DM,no /banir tambйm, mas to meio sem tempo =D.
vlw ae!
Reply
#7

Vai ficar massa

@Edit

Vocк sabe aonde fica o comando /say no GM ? oO

Nгo acho nem fu...
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)