GetVehicleVariant

From Multi Theft Auto: Wiki
Revision as of 06:44, 21 November 2011 by OpenIDUser32 (talk | contribs)
Jump to navigation Jump to search

Only available in MTA:SA v1.2 and onwards. This function gets the variant of a specified vehicle. In GTA SA some vehicles are different for example the labelling on trucks or the contents of a pick-up truck and the varying types of a motor bike. For the default GTA SA variant list see: Vehicle variants

Syntax

int, int getVehicleVariant ( vehicle theVehicle )

Required Arguments

  • theVehicle: A handle to the vehicle that you want to get the variant of.

Returns

On success:

On failure:

  • bool: False because the specified vehicle didn't exist

Example

Click to collapse [-]
Client

This example tells the person in the vehicle what their vehicle variants are using: getvehvar

function getMyVehiclesVariant()
    local myVeh = getPedOccupiedVehicle(localPlayer) -- Get the vehicle that they're in
    if (myVeh) then
        local var1, var2 = getVehicleVariant(myVeh) -- Get the info
        outputChatBox("This vehicles variants: "..tostring(var1).." "..tostring(var2)) -- Output the info
    end
end
addCommandHandler("getvehvar", getMyVehiclesVariant)

See Also