Lewati ke konten utama

GetVehicleParamsEx

Description

Gets a vehicle's parameters.

NameDescription
vehicleidThe ID of the vehicle to get the parameters from.
&bool:engineGet the engine status. If 1, the engine is running..
&bool:lightsGet the vehicle's lights' state. If 1 the lights are on.
&bool:alarmGet the vehicle's alarm state. If 1 the alarm is (or was) sounding.
&bool:doorsGet the lock status of the doors. If 1 the doors are locked.
&bool:bonnetGet the bonnet/hood status. If 1, it's open.
&bool:bootGet the boot/trunk status. 1 means it is open.
&bool:objectiveGet the objective status. 1 means the objective is on.

Returns

true - success

false - failure (invalid vehicle ID).

The vehicle's parameters are stored in the referenced variables, not in the return value.

Examples

new
bool:engine, bool:lights, bool:alarm, bool:doors, bool:bonnet, bool:boot, bool:objective;
GetVehicleParamsEx(vehicleid, engine, lights, alarm, doors, bonnet, boot, objective);
//This would cause all the variable above, to become the status of its subject.

Notes

tip

If a parameter is unset (SetVehicleParamsEx not used beforehand) the value will be -1 ('unset').