two questions
#5

You can use it directly after CreateVehicle:

pawn Код:
new engine, lights, alarm, doors, bonnet, boot, objective;
car1 = CreateVehicle(all parameters);
GetVehicleParamsEx(car1, engine, lights, alarm, doors, bonnet, boot, objective);
SetVehicleParamsEx(car1, engine, lights, alarm, 1, bonnet, boot, objective);

car2 = CreateVehicle(all parameters);
GetVehicleParamsEx(car2, engine, lights, alarm, doors, bonnet, boot, objective);
SetVehicleParamsEx(car2, engine, lights, alarm, 1, bonnet, boot, objective);
Or force the settings
pawn Код:
car1 = CreateVehicle(all parameters);
SetVehicleParamsEx(car1, 0, 0, 0, 1, 0, 0, 0);

car2 = CreateVehicle(all parameters);
SetVehicleParamsEx(car2, 0, 0, 0, 1, 0, 0, 0);
Reply


Messages In This Thread
two questions - by dominik523 - 21.03.2013, 13:48
Re: two questions - by Misiur - 21.03.2013, 13:54
Re: two questions - by dominik523 - 21.03.2013, 14:28
Re: two questions - by dominik523 - 21.03.2013, 14:36
Re: two questions - by Misiur - 21.03.2013, 14:41
Re: two questions - by dannyk0ed - 21.03.2013, 14:44
Re: two questions - by dominik523 - 21.03.2013, 17:38

Forum Jump:


Users browsing this thread: 3 Guest(s)