[Ajuda] Criar Carros para Vips "In-Game"
#1

Entгo pessoal, eu tenho esse comando para os VIPS, sу que eu gostaria de incrementar, como?
Para que somente o cara que CRIOU o veiculo possa ultilizar ele...Como poderia ser feito?
pawn Код:
if(strcmp(cmd,"/vv",true) ==0)
    {
        if(IsPlayerConnected(playerid))
        {
            if (PlayerInfo[playerid][pDonateRank] < 2)
            {
                SendClientMessage(playerid, COLOR_GRAD1, "   Vocк nгo tem permissгo para usar este comando! !");
                return 1;
            }
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "USO: /vv [carid] [color1] [color2]");
                return 1;
            }
            new car;
            car = strval(tmp);
            if(car < 400 || car > 611) { SendClientMessage(playerid, COLOR_GREY, "   Vehicle Number can't be below 400 ou above 611 !"); return 1; }
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "USO: /vv [carid] [color1] [color2]");
                return 1;
            }
            new color1;
            color1 = strval(tmp);
            if(color1 < 0 || color1 > 300) { SendClientMessage(playerid, COLOR_GREY, "   Color Number can't be below 0 ou above 300 !"); return 1; }
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "USO: /vv [carid] [color1] [color2]");
                return 1;
            }
            new color2;
            color2 = strval(tmp);
            if(color2 < 0 || color2 > 300) { SendClientMessage(playerid, COLOR_GREY, "   Color Number can't be below 0 ou above 300 !"); return 1; }
            new Float:X,Float:Y,Float:Z;
            GetPlayerPos(playerid, X,Y,Z);
            new carid = CreateVehicle(car, X,Y,Z, 0.0, color1, color2,60000);
            LinkVehicleToInterior(carid, GetPlayerInterior(playerid));
            CreatedCars[CreatedCar] = carid;
            CreatedCar ++;
            format(string, sizeof(string), "Veнculo %d, criado.", carid);
            SendClientMessage(playerid, COLOR_GREY, string);
        }
        return 1;
    }
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 2 Guest(s)