SetVehicleLicensePlate

From Onset Developer Wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
SetVehicleLicensePlate

Type: Function
Context: Server
Introduced: v1.0

Description

Sets the vehicle license plate text

Syntax

SetVehicleLicensePlate(vehicle, text)

Parameters

  • vehicle
    Vehicle identifier of vehicle which you wish to change license plate text
  • text
    New license plate text (up to 13 characters)

Return Value

  • This function has no return value

Example

function cmd_lp(player, ...)

	local message = table.concat({...}, " ") 

	if (#{...} == 0) then
		return AddPlayerChat(player, "Usage: /lp <new license plate text>")
	end

	local vehicle = GetPlayerVehicle(player)
	if (vehicle == 0) then
		return AddPlayerChat(player, '<span color="#ff0000ee">You must be in a vehicle!</>')
	end

	if (GetPlayerVehicleSeat(player) ~= 1) then
		return AddPlayerChat(player, "You must be the driver of the vehicle")
	end
	
	SetVehicleLicensePlate(vehicle, message)
end
AddCommand("lp", cmd_lp)

See also