<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.rage.mp/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=M4xf0x</id>
	<title>RAGE Multiplayer Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.rage.mp/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=M4xf0x"/>
	<link rel="alternate" type="text/html" href="https://wiki.rage.mp/wiki/Special:Contributions/M4xf0x"/>
	<updated>2026-06-05T07:14:40Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.40.0</generator>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=Vehicle::pearlescentColor&amp;diff=18097</id>
		<title>Vehicle::pearlescentColor</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=Vehicle::pearlescentColor&amp;diff=18097"/>
		<updated>2019-10-24T15:33:21Z</updated>

		<summary type="html">&lt;p&gt;M4xf0x: Created page with &amp;quot;This function is used to set the pearlescent color of a vehicle. Using the Vehicle colors. == Syntax == &amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt; int vehicle.pear...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function is used to set the pearlescent color of a vehicle. Using the [[Vehicle_Colors|Vehicle colors]].&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br /&gt;
int vehicle.pearlescentColor&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
== Example ==&lt;br /&gt;
This example sets red pearlescent color for the vehicle, in which the player sits.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br /&gt;
mp.events.add(&#039;playerCommand&#039;, (player, cmd) =&amp;gt; {&lt;br /&gt;
    let arr = cmd.split(&#039; &#039;);&lt;br /&gt;
    if (arr[0] == &#039;pcolor&#039; &amp;amp;&amp;amp; player.vehicle) {&lt;br /&gt;
        player.vehicle.pearlescentColor = 45;&lt;br /&gt;
    }&lt;br /&gt;
});&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>M4xf0x</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=Vehicle::getNeonColor&amp;diff=18095</id>
		<title>Vehicle::getNeonColor</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=Vehicle::getNeonColor&amp;diff=18095"/>
		<updated>2019-10-20T20:05:17Z</updated>

		<summary type="html">&lt;p&gt;M4xf0x: Created page with &amp;quot;This function is used to get the current neon lights of a vehicle. == Syntax == &amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt; vehicle.getNeonColor() &amp;lt;/syntaxhighlight&amp;gt; == Return Values...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function is used to get the current neon lights of a vehicle.&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br /&gt;
vehicle.getNeonColor()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
== Return Values ==&lt;br /&gt;
*&#039;&#039;&#039;object&#039;&#039;&#039;&lt;br /&gt;
== Example ==&lt;br /&gt;
This example gets the neon lights from the vehicle, in which the player sits.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br /&gt;
mp.events.add(&#039;playerCommand&#039;, (player, cmd) =&amp;gt; {&lt;br /&gt;
    let arr = cmd.split(&#039; &#039;);&lt;br /&gt;
    if (arr[0] == &#039;getneon&#039; &amp;amp;&amp;amp; player.vehicle) {&lt;br /&gt;
        player.notify(player.vehicle.getNeonColor().toString());&lt;br /&gt;
    }&lt;br /&gt;
});&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>M4xf0x</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=Vehicle::setNeonColor&amp;diff=18094</id>
		<title>Vehicle::setNeonColor</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=Vehicle::setNeonColor&amp;diff=18094"/>
		<updated>2019-10-20T19:36:04Z</updated>

		<summary type="html">&lt;p&gt;M4xf0x: Created page with &amp;quot;This function is used to set the neon lights of a vehicle. == Syntax == &amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt; vehicle.setNeonColor(int r, int g, int b) &amp;lt;/syntaxhighlight&amp;gt; == Arg...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This function is used to set the neon lights of a vehicle.&lt;br /&gt;
== Syntax ==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br /&gt;
vehicle.setNeonColor(int r, int g, int b)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
== Arguments ==&lt;br /&gt;
*&#039;&#039;&#039;r:&#039;&#039;&#039; Red Value 0 - 255.&lt;br /&gt;
*&#039;&#039;&#039;g:&#039;&#039;&#039; Green Value 0 - 255.&lt;br /&gt;
*&#039;&#039;&#039;b:&#039;&#039;&#039; Blue Value 0 - 255.&lt;br /&gt;
== Example ==&lt;br /&gt;
This example sets yellow neon lights for the vehicle, in which the player sits.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br /&gt;
mp.events.add(&#039;playerCommand&#039;, (player, cmd) =&amp;gt; {&lt;br /&gt;
    let arr = cmd.split(&#039; &#039;);&lt;br /&gt;
    if (arr[0] == &#039;neon&#039; &amp;amp;&amp;amp; player.vehicle) {&lt;br /&gt;
        player.vehicle.setNeonColor(255, 255, 0);&lt;br /&gt;
    }&lt;br /&gt;
});&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>M4xf0x</name></author>
	</entry>
</feed>