SetVehiclePlateText: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Added note about ascii characters)
 
(13 intermediate revisions by 9 users not shown)
Line 1: Line 1:
__NOTOC__
{{Server client function}}
{{Server client function}}
__NOTOC__
This function can be used to set the numberplate text of a vehicle.
{{New feature/item|3.0140|1.3.3|5394|
All non ascii characters will be replaced by spaces.
This function can be used to change/set the numberplate text from a car.
}}


==Syntax==
==Syntax==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
float setVehiclePlateText( element theVehicle, string numberplate )
bool setVehiclePlateText( element theVehicle, string numberplate )
</syntaxhighlight>
</syntaxhighlight>
 
{{OOP||[[vehicle]]:setPlateText|plateText|getVehiclePlateText}}
===Required Arguments===
===Required Arguments===
*'''theVehicle:''' The [[vehicle]] whose numberplate you want to change.
*'''theVehicle:''' the [[vehicle]] whose numberplate you want to change.
*'''numberplate:''' A string that will go on the number plate of the car (max 8 characters).
*'''numberplate:''' a string that will go on the number plate of the vehicle (max 8 characters).


===Returns===
===Returns===
Line 26: Line 25:
if Vehicle then
if Vehicle then
if text then
if text then
setVehiclePlateText( Vehicle, tostring(text) )
setVehiclePlateText( Vehicle, text )
else
else
outputChatBox("You must enter a message.",thePlayer)
outputChatBox("You must enter a message or the plate is incorrect.",thePlayer)
end
end
else
else
outputChatBox("You must be a Vehicle.",thePlayer)
outputChatBox("You must be in a Vehicle.",thePlayer)
end
end
end
end

Latest revision as of 14:05, 29 July 2023

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

Requirements

Minimum server version 1.3.3
Minimum client version 1.3.3

Note: Using this feature requires the resource to have the above minimum version declared in the meta.xml <min_mta_version> section. e.g. <min_mta_version server="1.3.3" client="1.3.3" />

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