[HELP] fuel
#1

Hello I have a problem when I'm on my motocycle I add that fuel for that be 15.0 but it's 40 l if you know what I mean

it look like this code in ongamemodeinit:


pawn Код:
for(new o; o < MAX_VEHICLES; o++)
    {
        if(IsAPlane(GetVehicleModel(o)) || IsABoat(GetVehicleModel(o)) || IsABus(GetVehicleModel(o))) Gorivo[o] = 80.00;
        else if(IsAMotorVehicle(GetVehicleModel(o))) Gorivo[o] = 15.00;
        else if(IsATruk(GetVehicleModel(o))) Gorivo[o] = 100.00;
        else if(IsABycle(GetVehicleModel(o)) || GetVehicleModel(o) == 538) Gorivo[o] = 1000000.00;
        Gorivo[o] = 40.00;
        if(!IsABycle(GetVehicleModel(o)))
        {
            new engine, lights, alarm, doors, bonnet, boot, objective;
            GetVehicleParamsEx(o, engine, lights, alarm, doors, bonnet, boot, objective);
            SetVehicleParamsEx(o, 0, 0, alarm, doors, bonnet, boot, objective);
        }
    }
everything work expect IsAMotorVehicle so it should be 15.0 l but it is 40.0 l
Reply
#2

Here's your problem:
Gorivo[o] = 40.00;
Reply
#3

Wrong : Gorivo[o] = 40.00;
Right : else { Gorivo[o] = 40.00; }
Код:
for(new o; o < MAX_VEHICLES; o++)
    {
        if(IsAPlane(GetVehicleModel(o)) || IsABoat(GetVehicleModel(o)) || IsABus(GetVehicleModel(o))) Gorivo[o] = 80.00;
        else if(IsAMotorVehicle(GetVehicleModel(o))) Gorivo[o] = 15.00;
        else if(IsATruk(GetVehicleModel(o))) Gorivo[o] = 100.00;
        else if(IsABycle(GetVehicleModel(o)) || GetVehicleModel(o) == 538) Gorivo[o] = 1000000.00;
        else { Gorivo[o] = 40.00; }
        if(!IsABycle(GetVehicleModel(o)))
        {
            new engine, lights, alarm, doors, bonnet, boot, objective;
            GetVehicleParamsEx(o, engine, lights, alarm, doors, bonnet, boot, objective);
            SetVehicleParamsEx(o, 0, 0, alarm, doors, bonnet, boot, objective);
        }
    }
Reply
#4

it's the same when I sit on NRG-500 it's set fuel to the 40.0 l instead 15.0 l
Reply
#5

Show us your IsAMotorVehicle stock
Reply
#6

don't worry about that I yesterday put all motocycles id's in the stock so stock is good
Reply
#7

anyone?
Reply
#8

anyone
Reply
#9

Please anyone? Thanks
Reply
#10

Please guys anyone? ;(
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)