/veh Bug LARP
#1

Hey All! when i put a vehicle with command /veh, appear to buy the car, how to fix?
Reply
#2

Give us your /veh command.
Reply
#3

pawn Код:
if(strcmp(cmd, "/veh", true) == 0)
    {
        /*if(AdminDuty[playerid] == 0)
        {
            SendClientMessage(playerid, COLOR_LIGHTBLUE, "Vocк sу pode usar esse comando quando estar em serviзo");
            SendClientMessage(playerid, COLOR_LIGHTBLUE, "Fique em Modo de Trabalho digitando o Comando /adminduty");
            if(PlayerInfo[playerid][pAdmin] > 0)
            {
            ShowPlayerDialog(playerid, 34, DIALOG_STYLE_MSGBOX, "Modo de Serviзo", "Deseja ficar em Serviзo", "Sim", "Nгo");
            }
            return 1;
        }*/

        if(IsPlayerConnected(playerid))
        {
            if (PlayerInfo[playerid][pAdmin] < 1338)
            {
                SendClientMessage(playerid, COLOR_GRAD1, "   Vocк nгo tem Permissгo de Usar esse Comando!");
                return 1;
            }
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /veh [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 acima de 611 !"); return 1; }
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /veh [carid] [color1] [color2]");
                return 1;
            }
            new color1;
            color1 = strval(tmp);
            if(color1 < 0 || color1 > 126) { SendClientMessage(playerid, COLOR_GREY, "   Color Number can't be below 0 ou acima de 126 !"); return 1; }
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /veh [carid] [color1] [color2]");
                return 1;
            }
            new color2;
            color2 = strval(tmp);
            if(color2 < 0 || color2 > 126) { SendClientMessage(playerid, COLOR_GREY, "   Color Number can't be below 0 ou acima de 126 !"); 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);
            CreatedCars[CreatedCar] = carid;
            CreatedCar ++;
            format(string, sizeof(string), "   Vehicle %d spawned.", carid);
            SendClientMessage(playerid, COLOR_GREY, string);
        }
        return 1;
    }
Reply
#4

You brasilian? I am Portuguese and i know what happen... The two one... Or you have add more cars to the GM with Addstaticvehicle or some other way or just /restartcars

If you add vehicled to GM without config it to something all car system will bug...

P.S: Do /veh 560 3 3 (for example) 3 times and i think the 3є will be a normal state car!
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)