GetVehicleLicensePlate

From Onset Developer Wiki
Revision as of 15:10, 27 May 2021 by FlyingFork (talk | contribs) (→‎Example)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
GetVehicleLicensePlate

Type: Function
Context: Server & Client
Introduced: v1.0

Description

Gets the vehicle license plate text.

Syntax

GetVehicleLicensePlate(vehicle)

Parameters

  • vehicle
    The vehicle identifier.

Return Value

  • Returns the license plate text as a string.

Example

AddCommand("getlicenseplate", function(playerid)
    local vehicle = GetPlayerOccupiedVehicle(playerid)
    if vehicle == 0 then
        return AddPlayerChat(playerid, "You must be in a vehicle!")
    end

    local plate = GetVehicleLicensePlate(vehicle)
    return AddPlayerChat(playerid, "The license plate of this vehicle is: " .. plate)
end)

See also