<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.multitheftauto.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mattheus+Souza</id>
	<title>Multi Theft Auto: Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.multitheftauto.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mattheus+Souza"/>
	<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/wiki/Special:Contributions/Mattheus_Souza"/>
	<updated>2026-05-01T11:09:41Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.3</generator>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=SetVehiclePlateText&amp;diff=36000</id>
		<title>SetVehiclePlateText</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=SetVehiclePlateText&amp;diff=36000"/>
		<updated>2013-05-15T02:52:55Z</updated>

		<summary type="html">&lt;p&gt;Mattheus Souza: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Server client function}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
{{New feature/item|3.0140|1.3.3|5394|&lt;br /&gt;
This function can be used to change/set the numberplate text from a car.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
float setVehiclePlateText( element theVehicle, string numberplate )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Required Arguments===&lt;br /&gt;
*'''theVehicle:''' The [[vehicle]] whose numberplate you want to change.&lt;br /&gt;
*'''numberplate:''' A string that will go on the number plate of the car (max 8 characters).&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns ''true'' if the numberplate was changed successfully, or ''false'' if invalid arguments were passed&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
{{Requirements|1.3.3|1.3.3|}}&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function PlateText(thePlayer,commandName,text)&lt;br /&gt;
	local Vehicle = getPedOccupiedVehicle(thePlayer)&lt;br /&gt;
	if Vehicle then&lt;br /&gt;
		if text then&lt;br /&gt;
			setVehiclePlateText( Vehicle, text )&lt;br /&gt;
		else&lt;br /&gt;
			outputChatBox(&amp;quot;You must enter a message.&amp;quot;,thePlayer)&lt;br /&gt;
		end&lt;br /&gt;
	else&lt;br /&gt;
		outputChatBox(&amp;quot;You must be a Vehicle.&amp;quot;,thePlayer)&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
addCommandHandler(&amp;quot;setplate&amp;quot;,PlateText)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Vehicle_functions}}&lt;/div&gt;</summary>
		<author><name>Mattheus Souza</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=SetVehiclePlateText&amp;diff=35999</id>
		<title>SetVehiclePlateText</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=SetVehiclePlateText&amp;diff=35999"/>
		<updated>2013-05-15T02:52:36Z</updated>

		<summary type="html">&lt;p&gt;Mattheus Souza: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Server client function}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
{{New feature/item|3.0140|1.3.3|5394|&lt;br /&gt;
This function can be used to change/set the numberplate text from a car.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
float setVehiclePlateText( element theVehicle, string numberplate )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Required Arguments===&lt;br /&gt;
*'''theVehicle:''' The [[vehicle]] whose numberplate you want to change.&lt;br /&gt;
*'''numberplate:''' A string that will go on the number plate of the car (max 8 characters).&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns ''true'' if the numberplate was changed successfully, or ''false'' if invalid arguments were passed&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
{{Requirements|1.3.3|1.3.3|}}&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function PlateText(thePlayer,commandName,text)&lt;br /&gt;
	local Vehicle = getPedOccupiedVehicle(thePlayer)&lt;br /&gt;
	if Vehicle then&lt;br /&gt;
		if text then&lt;br /&gt;
			setVehiclePlateText( Vehicle, tostring(text) )&lt;br /&gt;
		else&lt;br /&gt;
			outputChatBox(&amp;quot;You must enter a message.&amp;quot;,thePlayer)&lt;br /&gt;
		end&lt;br /&gt;
	else&lt;br /&gt;
		outputChatBox(&amp;quot;You must be a Vehicle.&amp;quot;,thePlayer)&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
addCommandHandler(&amp;quot;setplate&amp;quot;,PlateText)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Vehicle_functions}}&lt;/div&gt;</summary>
		<author><name>Mattheus Souza</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=SetVehiclePlateText&amp;diff=35998</id>
		<title>SetVehiclePlateText</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=SetVehiclePlateText&amp;diff=35998"/>
		<updated>2013-05-15T02:48:13Z</updated>

		<summary type="html">&lt;p&gt;Mattheus Souza: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Server client function}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
{{New feature/item|3.0140|1.3.3|5394|&lt;br /&gt;
This function can be used to change/set the numberplate text from a car.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
float setVehiclePlateText( element theVehicle, string numberplate )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Required Arguments===&lt;br /&gt;
*'''theVehicle:''' The [[vehicle]] whose numberplate you want to change.&lt;br /&gt;
*'''numberplate:''' A string that will go on the number plate of the car (max 8 characters).&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns ''true'' if the numberplate was changed successfully, or ''false'' if invalid arguments were passed&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
{{Requirements|1.3.3|1.3.3|}}&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function PlateText(thePlayer,commandName,text)&lt;br /&gt;
	Vehicle = getPedOccupiedVehicle(thePlayer)&lt;br /&gt;
	if Vehicle then&lt;br /&gt;
		if text then&lt;br /&gt;
			setVehiclePlateText( Vehicle, tostring(text) )&lt;br /&gt;
		else&lt;br /&gt;
			outputChatBox(&amp;quot;You must enter a message.&amp;quot;,thePlayer)&lt;br /&gt;
		end&lt;br /&gt;
	else&lt;br /&gt;
		outputChatBox(&amp;quot;You must be a Vehicle.&amp;quot;,thePlayer)&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
addCommandHandler(&amp;quot;setplate&amp;quot;,PlateText)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Vehicle_functions}}&lt;/div&gt;</summary>
		<author><name>Mattheus Souza</name></author>
	</entry>
</feed>