[Ajuda] Comando
#1

Eae tipow assim o comando vender arma sгo 5 armas ae eu queria colokar em um so comando as 5 armas ex: /venderarma [id] [baseball,socoingles,bandeira,bateria] Ae ele digitava a arma que eu colokei no comando ta assim :

pawn Код:
if(strcmp(cmd, "/venderarma", true) == 0)
    {
    tmp = strtok(cmdtext, idx);
    tmp2 = strtok(cmdtext, idx);
    new pName[MAX_PLAYER_NAME], name[MAX_PLAYER_NAME], pID,baseball1;
    if(!strlen(tmp))
    {
        SendClientMessage(playerid, Sucesso, "[USO CORRETO] /setscore [id] [score]");
        return 1;
    }
        pID = strval(tmp);
        GetPlayerName(playerid, name, sizeof(name));
        baseball1 = strval(tmp2);
        GivePlayerWeapon(pID, 7, 50);
        SendClientMessage(pID, -1,"Voce ganhou um Taco de Baseball");
        SendClientMessage(playerid, -1,"Taco de Baseball enviado com sucesso Com Sucesso!");
        return 1;
    }
Ae eu queria adc mais arma quem poder me ajudar dou +rep vlw --'
Reply
#2

pawn Код:
if(strcmp(cmd, "/venderarma", true) == 0)
    {
        new tmp[256];

        new pName[MAX_PLAYER_NAME], name[MAX_PLAYER_NAME], pID, arma, mun, preco, nomea[50], str[128];

        tmp = strtok(cmdtext, idx);
        if(!strlen(tmp))
        {
            SendClientMessage(playerid, Sucesso, "[USO CORRETO] /venderarma [id] [arma id] [muniзгo] [preзo]");
            return 1;
        }
        pID = strval(tmp);
       
        GetPlayerName(playerid, name, sizeof(name));

        tmp = strtok(cmdtext, idx);
        if(!strlen(tmp))
        {
            SendClientMessage(playerid, Sucesso, "[USO CORRETO] /venderarma [id] [arma id] [muniзгo] [preзo]");
            return 1;
        }
        arma = strval(tmp);
       
        tmp = strtok(cmdtext, idx);
        if(!strlen(tmp))
        {
            SendClientMessage(playerid, Sucesso, "[USO CORRETO] /venderarma [id] [arma id] [muniзгo] [preзo]");
            return 1;
        }
        mun = strval(tmp);
       
        tmp = strtok(cmdtext, idx);
        if(!strlen(tmp))
        {
            SendClientMessage(playerid, Sucesso, "[USO CORRETO] /venderarma [id] [arma id] [muniзгo] [preзo]");
            return 1;
        }
        preco = strval(tmp);
       
        if(GetPlayerMoney(pID) < preco) return SendClientMessage(playerid, -1, "Jogador nao tem grana '--'");

        GivePlayerWeapon(pID, arma, mun);
        GivePlayerMoney(playerid, -preco);
        GetPlayerName(pID, pName, sizeof(pName));

        GetWeaponName(arma, nomea, sizeof(nomea));

        format(str, 128, "Vocк recebeu um(a) %s com %d balas por R$%d", nomea, mun, preco);
        SendClientMessage(pID, -1, str);
       
        format(str, 128, "Vocк deu um(a) %s com %d balas por R$%d para %s", nomea, mun, preco, pName);
        SendClientMessage(pID, -1, str);
        return 1;
    }
Isso й uma base.

Vocк pode usar em vez de ser o id da arma, ser o id do kit ou tambйm pode usar uma funзгo que retorna o id da arma pelo nome, dai em vez de usar " arma = strtok ", vocк usa " arma = strrest " e muda a variбvel " arma " para " arma[50]; " .
Reply
#3

Tipow vey eu queria fazer assim /venderarma [id] [baseball,golf...)


Eae alguem me ajuda pf eu queria dar continuidade no comando, so queria colocar outra arma :
pawn Код:
if(strcmp(cmd, "/venderarma", true) == 0)
    {
    tmp = strtok(cmdtext, idx);
    tmp2 = strtok(cmdtext, idx);
    new pName[MAX_PLAYER_NAME], name[MAX_PLAYER_NAME], pID,baseball1;
    if(!strlen(tmp))
    {
        SendClientMessage(playerid, Sucesso, "[USO CORRETO] /setscore [id] [score]");
        return 1;
    }
        pID = strval(tmp);
        GetPlayerName(playerid, name, sizeof(name));
        baseball1 = strval(tmp2);
        GivePlayerWeapon(pID, 7, 50);
        SendClientMessage(pID, -1,"Voce ganhou um Taco de Baseball");
        SendClientMessage(playerid, -1,"Taco de Baseball enviado com sucesso Com Sucesso!");
        return 1;
    }//Por favor alguem ajuda ae so continuidade
Reply
#4

AFF NGM VEY AFFS DESDE ONTEN ALGUEM AJUDA AE
Reply
#5

nao, vc tem que digitar o id da arma

olha nesse link pra ver os ids https://sampwiki.blast.hk/wiki/Weapons
Reply
#6

vey nao й isto eu sei o ids das arma tava querendo colokar mais armas tipow no cmd /venderarma [id] [baseball,golf ...]
Reply
#7

pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
    new cmd[256], idx; cmd = strtok(cmdtext,idx);
   
    if(strcmp(cmd, "/venderarma", true) == 0)
    {
        new tmp[256];

        new pName[MAX_PLAYER_NAME], name[MAX_PLAYER_NAME], pID, arma[50], mun, preco, nomea[50], str[128];

        tmp = strtok(cmdtext, idx);
        if(!strlen(tmp))
        {
            SendClientMessage(playerid, Sucesso, "[USO CORRETO] /venderarma [id] [arma] [muniзгo] [preзo]");
            return 1;
        }
        pID = strval(tmp);

        GetPlayerName(playerid, name, sizeof(name));

        tmp = strrest(cmdtext, idx);
        if(!strlen(tmp))
        {
            SendClientMessage(playerid, Sucesso, "[USO CORRETO] /venderarma [id] [arma] [muniзгo] [preзo]");
            return 1;
        }
        format(arma,sizeof(arma), "%s", tmp);

        tmp = strtok(cmdtext, idx);
        if(!strlen(tmp))
        {
            SendClientMessage(playerid, Sucesso, "[USO CORRETO] /venderarma [id] [arma] [muniзгo] [preзo]");
            return 1;
        }
        mun = strval(tmp);

        tmp = strtok(cmdtext, idx);
        if(!strlen(tmp))
        {
            SendClientMessage(playerid, Sucesso, "[USO CORRETO] /venderarma [id] [arma] [muniзгo] [preзo]");
            return 1;
        }
        preco = strval(tmp);

        if(GetPlayerMoney(pID) < preco) return SendClientMessage(playerid, -1, "Jogador nao tem grana '--'");

        if(GetWeapId(arma) == -255)return SendClientMessage(playerid, -1, "Arma invalida!");

        GivePlayerWeapon(pID, GetWeapId(arma), mun);
        GivePlayerMoney(playerid, -preco);
        GetPlayerName(pID, pName, sizeof(pName));

        GetWeaponName(GetWeapId(arma), nomea, sizeof(nomea));

        format(str, 128, "Vocк recebeu um(a) %s com %d balas por R$%d", nomea, mun, preco);
        SendClientMessage(pID, -1, str);

        format(str, 128, "Vocк deu um(a) %s com %d balas por R$%d para %s", nomea, mun, preco, pName);
        SendClientMessage(pID, -1, str);
        return 1;
    }
    return 0;
}

#define comparararma(%0) if(strcmp(narma,%0,true) == 0)

stock GetWeapId(narma[])
{
    comparararma("M4") return WEAPON_M4;
    comparararma("EAGLE") return 24;
    comparararma("MINIGUN") return WEAPON_MINIGUN;
    return -255;
}
Й sу vocк terminar a funзгo de pegar o id da arma pelo nome...
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)