SA-MP Forums Archive
[Ajuda][Pedido] - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda][Pedido] (/showthread.php?tid=300322)



[Ajuda][Pedido] - Laercio - 29.11.2011

Queria um comando tipo

/dararmaall [ID DA ARMA] [MUNIЗГO]


Seria possivel executar isso e quando digita-se o comando esperava 3 Segundos e Depois Passava Tal Arma em 5 Segundos dai espera 5 seconds e dava a aarma mas a muniзгo para todos os players '-'



Re: [Ajuda][Pedido] - Hardware - 29.11.2011

Dei uma adaptada em um comando que jб havia feito:

pawn Код:
if(strcmp(cmd, "/armaall", true) == 0)
        {
            if(IsPlayerAdmin(playerid)) return SendClientMessage(playerid, COR, "Vocк nгo й administrador!");
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp)) return SendClientMessage(playerid, COR, "Uso: /dararma [arma] [muniзгo]");
            new arma = strval(tmp);
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp)) return SendClientMessage(playerid, COR, "Uso: /dararma [id / nome] [arma] [muniзгo]");
            new municao = strval(tmp);
            new gunname[128],string[128],sendername[24];
            GetWeaponName(arma, gunname, sizeof(gunname));
            GetPlayerName(playerid, sendername,sizeof sendername);
            format(string, sizeof(string), "[BCS | Admin] O administrador %s deu a arma %s para todos!", sendername, gunname);
            SendClientMessageToAll(COR, string);
            format(string, sizeof(string), "[BCS | Admin] Vocк deu a arma %s para todos os jogadores.", gunname);
            SendClientMessage(playerid, COR, string);
            for(new i=0; i < MAX_PLAYERS; i++)
                GivePlayerWeapon(i, arma, municao);
        }