bike system.
#3

What you are doing is try and destroy the vehicle model, you need the vehicle's ID.

put this before CreateVehicle
new vehID = CreateVehicle(...);

Also with GetVehicleParamsEx, instead of 510, use vehID.
Then when you set the timer, you will want to use SetTimerEx, most likely, since you're trying to pass on a player id.

So instead of SetTimer("DestroyBikes", 60000, false); .. wait, you want to destroy all bikes? That would require looping through all vehicles, checking for their model and then destroying.

So don't change your timer but change your forward and public to

Код:
forward DestroyBikes();

public DestroyBikes()
{
    for(new i = 0; i < MAX_VEHICLES; i++)
    {
        if(GetVehicleModel(i) == 510)
            DestroyVehicle(i);
    }

    return 1;
}
I believe MAX_VEHICLES is defined by default like MAX_PLAYERS, but if you get an error, just define it yourself using

#define MAX_VEHICLES [num]
Reply


Messages In This Thread
bike system. - by Karolukas123 - 18.08.2015, 06:12
Re: bike system. - by Dairyll - 18.08.2015, 06:18
Re: bike system. - by Denying - 18.08.2015, 06:22
Re: bike system. - by Karolukas123 - 18.08.2015, 06:23
Re: bike system. - by SickAttack - 18.08.2015, 06:25
Re: bike system. - by Denying - 18.08.2015, 06:25

Forum Jump:


Users browsing this thread: 1 Guest(s)