SetVehiclePlateText: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Remove obsolete Requirements section)
 
(One intermediate revision by one other user not shown)
Line 2: Line 2:
{{Server client function}}
{{Server client function}}
This function can be used to set the numberplate text of a vehicle.
This function can be used to set the numberplate text of a vehicle.
All non ascii characters will be replaced by spaces.


==Syntax==
==Syntax==
Line 14: Line 15:
===Returns===
===Returns===
Returns ''true'' if the numberplate was changed successfully, or ''false'' if invalid arguments were passed
Returns ''true'' if the numberplate was changed successfully, or ''false'' if invalid arguments were passed
==Requirements==
{{Requirements|1.3.3|1.3.3|}}


==Example==
==Example==

Latest revision as of 17:11, 7 November 2024

This function can be used to set the numberplate text of a vehicle. All non ascii characters will be replaced by spaces.

Syntax

bool setVehiclePlateText( element theVehicle, string numberplate )

OOP Syntax Help! I don't understand this!

Method: vehicle:setPlateText(...)
Variable: .plateText
Counterpart: getVehiclePlateText


Required Arguments

  • theVehicle: the vehicle whose numberplate you want to change.
  • numberplate: a string that will go on the number plate of the vehicle (max 8 characters).

Returns

Returns true if the numberplate was changed successfully, or false if invalid arguments were passed

Example

function PlateText(thePlayer,commandName,text)
	local Vehicle = getPedOccupiedVehicle(thePlayer)
	if Vehicle then
		if text then
			setVehiclePlateText( Vehicle, text )
		else
			outputChatBox("You must enter a message or the plate is incorrect.",thePlayer)
		end
	else
		outputChatBox("You must be in a Vehicle.",thePlayer)
	end
end
addCommandHandler("setplate",PlateText)

See Also