[Pedido] comando de arma
#1

Preciso de um comando que dar arma a todos os jogadores
Reply
#2

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;
}
Reply
#3

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

Reply
#4

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

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

  return 1;
}
Reply
#5

EDIT: jб postaram tanto comando basta escolher 1.
Reply
#6

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
Reply
#7

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

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? '-'
Reply
#9

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!
Reply
#10

vlw cara
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)