Preskoči na vsebino

GetVehicleModelInfo

Description

Retrieve information about a specific vehicle model such as the size or position of seats

NameDescription
vehiclemodelThe vehicle model to get info of.
VEHICLE_MODEL_INFO:infotypeThe type of information to retrieve.
&Float:xA float to store the X value.
&Float:yA float to store the Y value.
&Float:zA float to store the Z value.

Returns

The vehicle info is stored in the specified variables.

Examples

new
Float: x, Float: y, Float: z;
//Get the size of vehicle model 411 (Infernus)
GetVehicleModelInfo(411, VEHICLE_MODEL_INFO_SIZE, x, y, z);
//Prints "The infernus is 2.3m wide, 5.7m long and 1.3m high" into the console
printf("The infernus is %.1fm wide, %.1fm long and %.1fm high", X, Y, Z);