SA-MP Forums Archive
[Pedido] comando de arma - 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: [Pedido] comando de arma (/showthread.php?tid=468991)



comando de arma - Blitz22 - 11.10.2013

Preciso de um comando que dar arma a todos os jogadores


Re: comando de arma - PT - 11.10.2013

pequeno exemplo

Zcmd

pawn Код:
CMD:dararmat(playerid)
{
    for(new i = 0; i < MAX_PLAYERS; ++i)
    {
        GivePlayerWeapon(i, 26, 64);
    }
    SendClientMessageToAll(-1, "recebeste uma arma!");
    return 1;
}
ycmd

pawn Код:
YCMD:dararmat(playerid, params[], help)
{
    #pragma unused params, help
    for(new i = 0; i < MAX_PLAYERS; ++i)
    {
        GivePlayerWeapon(i, 26, 64);
    }
    SendClientMessageToAll(-1, "recebeste uma arma!");
    return 1;
}
strcmp

pawn Код:
if(strcmp(cmdtext, "/dararmat", true) == 0)
{
    for(new i = 0; i < MAX_PLAYERS; ++i)
    {
        GivePlayerWeapon(i, 26, 64);
    }
    SendClientMessageToAll(-1, "recebeste uma arma!");
    return 1;
}
icmd

pawn Код:
public OnPlayerCommandText(playerid, commandid, params[])
{
    switch(commandid)
    {
        case iscmd("d,a,r,a,r,m,a,t"):
        {
            for(new i = 0; i < MAX_PLAYERS; ++i)
            {
                GivePlayerWeapon(i, 26, 64);
            }
            SendClientMessageToAll(-1, "recebeste uma arma!");
            return true;
        }
        default: return SendClientMessage(playerid, -1, "[Erro]: Comando desconhecido, desculpe.");
    }
    return false;
}



Re: comando de arma - Ley - 11.10.2013

PHP код:
CMD:armas(playerid)
{
    for(new 
iMAX_PLAYERSi++)
    {
        
GivePlayerWeapon(i30200);
        
GivePlayerWeapon(i26200);
        
GivePlayerWeapon(i28200);
        
GivePlayerWeapon(i24200);
    }
    return 
1;




Re: comando de arma - N3XTMapper - 11.10.2013

Eu uso isto :::
pawn Код:
if(strcmp(cmdtext, "/kitarmas", true) == 0)
{

        GivePlayerWeapon( 30, 999);
        GivePlayerWeapon( 24, 999);
        GivePlayerWeapon( 28, 999);
        GivePlayerWeapon( 26, 999);

  return 1;
}



Re: comando de arma - LucasF - 11.10.2013

EDIT: jб postaram tanto comando basta escolher 1.


AW: Re: comando de arma - Blitz22 - 11.10.2013

Quote:
Originally Posted by PT
Посмотреть сообщение
pequeno exemplo

Zcmd

pawn Код:
CMD:dararmat(playerid)
{
    for(new i = 0; i < MAX_PLAYERS; ++i)
    {
        GivePlayerWeapon(i, 26, 64);
    }
    SendClientMessageToAll(-1, "recebeste uma arma!");
    return 1;
}
ycmd

pawn Код:
YCMD:dararmat(playerid, params[], help)
{
    #pragma unused params, help
    for(new i = 0; i < MAX_PLAYERS; ++i)
    {
        GivePlayerWeapon(i, 26, 64);
    }
    SendClientMessageToAll(-1, "recebeste uma arma!");
    return 1;
}
strcmp

pawn Код:
if(strcmp(cmdtext, "/dararmat", true) == 0)
{
    for(new i = 0; i < MAX_PLAYERS; ++i)
    {
        GivePlayerWeapon(i, 26, 64);
    }
    SendClientMessageToAll(-1, "recebeste uma arma!");
    return 1;
}
icmd

pawn Код:
public OnPlayerCommandText(playerid, commandid, params[])
{
    switch(commandid)
    {
        case iscmd("d,a,r,a,r,m,a,t"):
        {
            for(new i = 0; i < MAX_PLAYERS; ++i)
            {
                GivePlayerWeapon(i, 26, 64);
            }
            SendClientMessageToAll(-1, "recebeste uma arma!");
            return true;
        }
        default: return SendClientMessage(playerid, -1, "[Erro]: Comando desconhecido, desculpe.");
    }
    return false;
}
a todos jogadores nгo quero so 1 jogador


AW: Re: comando de arma - Blitz22 - 11.10.2013

Quote:
Originally Posted by LucasF
Посмотреть сообщение
EDIT: jб postaram tanto comando basta escolher 1.
Quero comando de dar arma para TODOSSSS OS JODORES


Re: AW: Re: comando de arma - Ley - 11.10.2013

Quote:
Originally Posted by Blitz22
Посмотреть сообщение
Quero comando de dar arma para TODOSSSS OS JODORES
PHP код:
CMD:armas(playerid

    for(new 
iMAX_PLAYERSi++) 
    { 
        
GivePlayerWeapon(i30200); 
        
GivePlayerWeapon(i26200); 
        
GivePlayerWeapon(i28200); 
        
GivePlayerWeapon(i24200); 
    } 
    return 
1

PHP код:
for(new iMAX_PLAYERSi++) 
Ta cego mano? '-'


Re: AW: Re: comando de arma - PT - 11.10.2013

Quote:
Originally Posted by Blitz22
Посмотреть сообщение
Quero comando de dar arma para TODOSSSS OS JODORES
todos os cmds que te passei dao armas a TODOS OS JOGADORES!


AW: Re: AW: Re: comando de arma - Blitz22 - 11.10.2013

vlw cara