Bug pra colocar cmd
#1

Assim todas as vezes que eu vo colocar um cmd novo por exemplo um /checararmas

pawn Код:
if(strcmp(cmd, "/checararmas", true) == 0)
        {
            if(PlayerInfo[playerid][pAdmin] >= 2)
            {
                tmp = strtok(cmdtext,idx);
                if (!strlen(tmp))
                {
                    SendClientMessage(playerid, COLOR_GREY, "Use: /checararmas [playerid]");
                    return 1;
                }
                giveplayerid = ReturnUser(tmp);
                if (giveplayerid == INVALID_PLAYER_ID)
                {
                    SendClientMessage(playerid, COLOR_GREY, "Jogador estб offline!");
                    return 1;
                }
                new sweapon, sammo;
                GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
                format(string, sizeof(string), "%s possui as seguintes armas:", giveplayer);
                SendClientMessage(playerid, COLOR_GRAD1, string);
                for (new i=0; i<9; i++)
                {
                    GetPlayerWeaponData(giveplayerid, i, sweapon, sammo);
                    if(sweapon != 0)
                    {
                        format(string, sizeof(string), "%d: %d (%d)", i, sweapon, sammo);
                        SendClientMessage(playerid, COLOR_GRAD1, string);
                    }
                }
                return 1;
            }
        }
o cmd ali ta certinho e talz ai quando eu vo colocar no meu GM ele fica todo errado assim por exemplo
pawn Код:
if(strcmp(cmd, "/rg", true) == 0)
        {
            if(PlayerInfo[playerid][pAdmin] >= 2)
            {
                tmp = strtok(cmdtext,idx);
                if (!strlen(tmp))
                {

                }
                giveplayerid = ReturnUser(tmp);
            if (!strlen(tmp))   if (giveplayerid == INVALID_PLAYER_ID)
                {
                    SendClientMessage(playerid, COLOR_GREY, "Jogador estб offline!");
                    return 1;
                }
                new sweapon, sammo;
                GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
                format(string, sizeof(string), "%s possui as seguintes armas:", giveplayer);
                SendClientMessage(playerid, COLOR_GRAD1, string);
                for (new i=0; i<9; i++)
                {
                    GetPlayerWeaponData(giveplayerid, i, sweapon, sammo);
                    if(sweapon != 0)
                    {
                        format(string, sizeof(string), "%d: %d (%d)", i, sweapon, sammo);
                        SendClientMessage(playerid, COLOR_GRAD1, string);
                    }
                }
                return 1;
            }
        }

ta assim pq eu coloquei ele hein cima do cmd /rg ai o nome fica diferente fica uma letra hein cima da outra e talz pq isso acontece? .-. quando nao й isso o cmd fica de cabeзa pra baixoo e os caramba!
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)