12.02.2012, 01:38
Hey, my question is VERY simple I think, Where Could I put
In my script? Where would be the best place to put it so cars have the engine off? I tryed under OnVehicleSpawn, OnVehicleStreamIn etc etc.. But whenever a vehicle spawns, the engines get set to 0, and whenver a vehicle streams in, it gets set to 0, So would OnGamemodeinit Be the best way? But after the cars spawn the engine starts normally,
pawn Код:
{
new engine, lights, alarm, doors, bonnet, boot, objective;
GetVehicleParamsEx(i, engine, lights, alarm, doors, bonnet, boot, objective);
SetVehicleParamsEx(i, 0, lights, false, doors, bonnet, boot, objective);
}