<?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=StreetGT</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=StreetGT"/>
	<link rel="alternate" type="text/html" href="https://wiki.rage.mp/wiki/Special:Contributions/StreetGT"/>
	<updated>2026-07-19T00:38:52Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.40.0</generator>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=Getting_Started_with_Server&amp;diff=7701</id>
		<title>Getting Started with Server</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=Getting_Started_with_Server&amp;diff=7701"/>
		<updated>2017-11-12T23:00:11Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__TOC__&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
This brief tutorial will show you how to run your server on both Windows and Linux distributions.&lt;br /&gt;
&lt;br /&gt;
By default, the server makes use of port 22005 UDP for server access so make sure to have done the port forwarding on your router process and have also unblocked the port on your firewall before running the server.&lt;br /&gt;
&lt;br /&gt;
=Windows=&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
=Linux=&lt;br /&gt;
&lt;br /&gt;
==Installing GCC 6==&lt;br /&gt;
===Debian, Ubuntu, and derivatives===&lt;br /&gt;
&lt;br /&gt;
====Ubuntu 16.04.x and older====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
sudo add-apt-repository ppa:ubuntu-toolchain-r/test&lt;br /&gt;
sudo apt-get update&lt;br /&gt;
sudo apt-get install gcc-6 g++-6&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Installing the server==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
# Downloading server&lt;br /&gt;
cd /tmp&lt;br /&gt;
wget https://cdn.rage.mp/lin/server&lt;br /&gt;
mkdir ~/srv&lt;br /&gt;
mv server ~/srv&lt;br /&gt;
cd ~/srv &lt;br /&gt;
chmod +x server&lt;br /&gt;
./server&lt;br /&gt;
&lt;br /&gt;
# Firewall commands (iptables only) (dont forget to save the rule after adding it)&lt;br /&gt;
iptables -A INPUT -p udp --dport 22005 -j ACCEPT&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Setting up==&lt;br /&gt;
===Installing screen===&lt;br /&gt;
For running the server in background, we recommend using screen mainly for its ease of use&lt;br /&gt;
&lt;br /&gt;
====Debian based (Ubuntu &amp;amp; derivatives)====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
sudo apt-get install screen&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====CentOS 6.x/7.x====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
yum install screen&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Starting the server===&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
screen -dmS GTASERVER -L bash -c &#039;cd ~/srv &amp;amp;&amp;amp; ./server&#039; &amp;amp;&lt;br /&gt;
&lt;br /&gt;
# Parameter explanation&lt;br /&gt;
# screen -dmS = starts a separate shell without directly opening an interface towards it (detached mode). The S param defines a session name for the newly created session, so that it is easier to manage in the future.&lt;br /&gt;
# screen -L = basically logs whatever error that is shown by the server through the separate shell into a file for easier reference in the future.&lt;br /&gt;
# !IMPORTANT!&lt;br /&gt;
# Log output will be saved as screenlog._number_ in the server directory.&lt;br /&gt;
# &amp;amp;: IS IMPORTANT IF YOU WANT TO TERMINATE THE PROCESS GRACEFULLY&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Stopping the server===&lt;br /&gt;
To stop the server, there&#039;s usually two ways to do that, one that we call a &#039;&#039;&#039;graceful&#039;&#039;&#039; shutdown that sends the server a signal for termination and the other, well, a &#039;&#039;&#039;crash&#039;&#039;&#039; since it does not allow the code to run through the termination process correctly.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;RECOMMENDED:&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
kill $(ps h --ppid $(screen -ls | grep GTASERVER | cut -d. -f1) -o pid)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOT RECOMMENDED:&#039;&#039;&#039; It does not shut down the server gracefully&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
screen -S GTASERVER -X quit &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=Getting_Started_with_Server&amp;diff=7700</id>
		<title>Getting Started with Server</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=Getting_Started_with_Server&amp;diff=7700"/>
		<updated>2017-11-12T22:59:13Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__TOC__&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
This brief tutorial waill show you how to run your server on both Windows and Linux distributions.&lt;br /&gt;
&lt;br /&gt;
By default, the server makes use of port 22005 UDP for server access so make sure to have done the port forwarding on your router process and have also unblocked the port on your firewall before running the server.&lt;br /&gt;
&lt;br /&gt;
=Windows=&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
=Linux=&lt;br /&gt;
&lt;br /&gt;
==Installing GCC 6==&lt;br /&gt;
===Debian, Ubuntu, and derivatives===&lt;br /&gt;
&lt;br /&gt;
====Ubuntu 16.04.x and older====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
sudo add-apt-repository ppa:ubuntu-toolchain-r/test&lt;br /&gt;
sudo apt-get update&lt;br /&gt;
sudo apt-get install gcc-6 g++-6&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Installing the server==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
# Downloading server&lt;br /&gt;
cd /tmp&lt;br /&gt;
wget https://cdn.rage.mp/lin/server&lt;br /&gt;
mkdir ~/srv&lt;br /&gt;
mv server ~/srv&lt;br /&gt;
cd ~/srv &lt;br /&gt;
chmod +x server&lt;br /&gt;
./server&lt;br /&gt;
&lt;br /&gt;
# Firewall commands (iptables only) (dont forget to save the rule after adding it)&lt;br /&gt;
iptables -A INPUT -p udp --dport 22005 -j ACCEPT&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Setting up==&lt;br /&gt;
===Installing screen===&lt;br /&gt;
For running the server in background, we recommend using screen mainly for its ease of use&lt;br /&gt;
&lt;br /&gt;
====Debian based (Ubuntu &amp;amp; derivatives)====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
sudo apt-get install screen&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====CentOS 6.x/7.x====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
yum install screen&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Starting the server===&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
screen -dmS GTASERVER -L bash -c &#039;cd ~/srv &amp;amp;&amp;amp; ./server&#039; &amp;amp;&lt;br /&gt;
&lt;br /&gt;
# Parameter explanation&lt;br /&gt;
# screen -dmS = starts a separate shell without directly opening an interface towards it (detached mode). The S param defines a session name for the newly created session, so that it is easier to manage in the future.&lt;br /&gt;
# screen -L = basically logs whatever error that is shown by the server through the separate shell into a file for easier reference in the future.&lt;br /&gt;
# !IMPORTANT!&lt;br /&gt;
# Log output will be saved as screenlog._number_ in the server directory.&lt;br /&gt;
# &amp;amp;: IS IMPORTANT IF YOU WANT TO TERMINATE THE PROCESS GRACEFULLY&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Stopping the server===&lt;br /&gt;
To stop the server, there&#039;s usually two ways to do that, one that we call a &#039;&#039;&#039;graceful&#039;&#039;&#039; shutdown that sends the server a signal for termination and the other, well, a &#039;&#039;&#039;crash&#039;&#039;&#039; since it does not allow the code to run through the termination process correctly.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;RECOMMENDED:&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
kill $(ps h --ppid $(screen -ls | grep GTASERVER | cut -d. -f1) -o pid)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOT RECOMMENDED:&#039;&#039;&#039; It does not shut down the server gracefully&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
screen -S GTASERVER -X quit &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=Template:Blip_definition&amp;diff=7489</id>
		<title>Template:Blip definition</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=Template:Blip_definition&amp;diff=7489"/>
		<updated>2017-10-07T02:02:57Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*Functions&lt;br /&gt;
**[[Blip::Blip]]&lt;br /&gt;
**[[Blip::routeFor]]&lt;br /&gt;
**[[Blip::unrouteFor]]&lt;br /&gt;
**[[Entity::destroy]]&lt;br /&gt;
*Properties&lt;br /&gt;
**[[Blip::sprite]]&lt;br /&gt;
**[[Blip::colour]]&lt;br /&gt;
**[[Blip::name]]&lt;br /&gt;
**[[Blip::scale]]&lt;br /&gt;
**[[Blip::alpha]]&lt;br /&gt;
**[[Blip::drawRange]]&lt;br /&gt;
**[[Blip::rotation]]&lt;br /&gt;
**[[Entity::id]]&lt;br /&gt;
**[[Entity::dimension]]&lt;br /&gt;
**[[Entity::type]]&lt;br /&gt;
**[[Entity::position]]&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=Template:Marker_functions&amp;diff=7462</id>
		<title>Template:Marker functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=Template:Marker_functions&amp;diff=7462"/>
		<updated>2017-10-03T17:08:49Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*Functions&lt;br /&gt;
**[[Marker::Marker]]&lt;br /&gt;
**[[Marker::showFor]]&lt;br /&gt;
**[[Marker::hideFor]]&lt;br /&gt;
**[[Marker::getColour]]&lt;br /&gt;
**[[Marker::setColour]]&lt;br /&gt;
**[[Entity::destroy]]&lt;br /&gt;
*Properties&lt;br /&gt;
**[[Marker::scale]]&lt;br /&gt;
**[[Marker::colour]]&lt;br /&gt;
**[[Marker::direction]]&lt;br /&gt;
**[[Marker::visible]]&lt;br /&gt;
**[[Entity::id]]&lt;br /&gt;
**[[Entity::dimension]]&lt;br /&gt;
**[[Entity::type]]&lt;br /&gt;
**[[Entity::position]]&lt;br /&gt;
**[[Entity::model]]&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=Marker::Marker&amp;diff=7461</id>
		<title>Marker::Marker</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=Marker::Marker&amp;diff=7461"/>
		<updated>2017-10-03T16:56:42Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Creating new markers&lt;br /&gt;
==Parameters==&lt;br /&gt;
* &#039;&#039;&#039;type: &amp;lt;span style=&amp;quot;color:#008017&amp;gt;Number&amp;lt;/span&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
* &#039;&#039;&#039;position: &amp;lt;span style=&amp;quot;color:#008017&amp;gt;Vector3&amp;lt;/span&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
* &#039;&#039;&#039;rotation: &amp;lt;span style=&amp;quot;color:#008017&amp;gt;Vector3&amp;lt;/span&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
* &#039;&#039;&#039;direction: &amp;lt;span style=&amp;quot;color:#008017&amp;gt;Vector3&amp;lt;/span&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
* &#039;&#039;&#039;radius: &amp;lt;span style=&amp;quot;color:#008017&amp;gt;Number&amp;lt;/span&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
* &#039;&#039;&#039;red: &amp;lt;span style=&amp;quot;color:#008017&amp;gt;Number&amp;lt;/span&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
* &#039;&#039;&#039;blue: &amp;lt;span style=&amp;quot;color:#008017&amp;gt;Number&amp;lt;/span&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
* &#039;&#039;&#039;alpha: &amp;lt;span style=&amp;quot;color:#008017&amp;gt;Number&amp;lt;/span&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
* &#039;&#039;&#039;visible: &amp;lt;span style=&amp;quot;color:#008017&amp;gt;Boolean&amp;lt;/span&amp;gt;&#039;&#039;&#039; &lt;br /&gt;
* &#039;&#039;&#039;dimension: &amp;lt;span style=&amp;quot;color:#008017&amp;gt;Number&amp;lt;/span&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
&amp;lt;div class=&amp;quot;header&amp;quot; style=&amp;quot;background-color: #408DAE; color: #FFFFFF; border: 2px solid #408DAE;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin: 10px 10px 10px 10px;&amp;quot;&amp;gt;&amp;lt;b&amp;gt;Server-Side&amp;lt;/b&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br /&gt;
mp.markers.new(Number type, Vector3 position, Vector3 rotation, Vector3 direction, Number radius, Number red, Number green, Number blue, Number alpha[, Boolean visible, Number dimension])&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Markers type==&lt;br /&gt;
{{Markers_type}}&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Marker_function}}&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=Template:Blip_definition&amp;diff=7424</id>
		<title>Template:Blip definition</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=Template:Blip_definition&amp;diff=7424"/>
		<updated>2017-10-02T17:56:24Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*Functions&lt;br /&gt;
**[[Blip::Blip]]&lt;br /&gt;
**[[Blip::routeFor]]&lt;br /&gt;
**[[Blip::unrouteFor]]&lt;br /&gt;
**[[Entity::destroy]]&lt;br /&gt;
*Properties&lt;br /&gt;
**[[Blip::model]]&lt;br /&gt;
**[[Blip::radius]]&lt;br /&gt;
**[[Blip::colour]]&lt;br /&gt;
**[[Blip::name]]&lt;br /&gt;
**[[Blip::scale]]&lt;br /&gt;
**[[Blip::alpha]]&lt;br /&gt;
**[[Entity::id]]&lt;br /&gt;
**[[Entity::dimension]]&lt;br /&gt;
**[[Entity::type]]&lt;br /&gt;
**[[Entity::position]]&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=Template:Player_definition&amp;diff=7423</id>
		<title>Template:Player definition</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=Template:Player_definition&amp;diff=7423"/>
		<updated>2017-10-02T17:54:55Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*Functions&lt;br /&gt;
{{Player_functions}}&lt;br /&gt;
{{Entity_functions}}&lt;br /&gt;
*Properties&lt;br /&gt;
{{Player_properties}}&lt;br /&gt;
{{Entity_properties}}&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=Template:Object_functions&amp;diff=7422</id>
		<title>Template:Object functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=Template:Object_functions&amp;diff=7422"/>
		<updated>2017-10-02T17:53:59Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;**[[Object::Object]]&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=Template:Object_definition&amp;diff=7421</id>
		<title>Template:Object definition</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=Template:Object_definition&amp;diff=7421"/>
		<updated>2017-10-02T17:51:42Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*Functions&lt;br /&gt;
{{Object_functions}}&lt;br /&gt;
{{Entity_functions}}&lt;br /&gt;
*Properties&lt;br /&gt;
{{Object_properties}}&lt;br /&gt;
{{Entity_properties}}&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=Template:Object_functions&amp;diff=7420</id>
		<title>Template:Object functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=Template:Object_functions&amp;diff=7420"/>
		<updated>2017-10-02T17:51:12Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;**[[Objects::new]]&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=Template:Object_functions&amp;diff=7419</id>
		<title>Template:Object functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=Template:Object_functions&amp;diff=7419"/>
		<updated>2017-10-02T17:49:33Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: Blanked the page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=Template:Object_functions&amp;diff=7418</id>
		<title>Template:Object functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=Template:Object_functions&amp;diff=7418"/>
		<updated>2017-10-02T17:45:25Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Objects::new]]&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=Template:Object_functions&amp;diff=7417</id>
		<title>Template:Object functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=Template:Object_functions&amp;diff=7417"/>
		<updated>2017-10-02T17:45:17Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: Created page with &amp;quot;***Objects::new&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;***[[Objects::new]]&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=Template:Global_functions&amp;diff=7416</id>
		<title>Template:Global functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=Template:Global_functions&amp;diff=7416"/>
		<updated>2017-10-02T17:43:51Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*Functions&lt;br /&gt;
**[[Globals::joaat|mp.joaat]]&lt;br /&gt;
*Properties&lt;br /&gt;
**[[Server-side_functions#Player_pool_functions|mp.players]]&lt;br /&gt;
**[[Server-side_functions#Entity_pool_functions|mp.vehicles]]&lt;br /&gt;
**[[Globals::Objects|mp.objects]]&lt;br /&gt;
**[[Server-side_functions#Entity_pool_functions|mp.pickups]]&lt;br /&gt;
**[[Server-side_functions#Entity_pool_functions|mp.blips]]&lt;br /&gt;
**[[Server-side_functions#Entity_pool_functions|mp.markers]]&lt;br /&gt;
**[[Server-side_functions#Entity_pool_functions|mp.checkpoints]]&lt;br /&gt;
**[[Server-side_functions#Event_functions|mp.events]]&lt;br /&gt;
**[[mp.config]]&lt;br /&gt;
**[[Globals::environment|mp.environment]]&lt;br /&gt;
***[[Environment::setWeatherTransition]]&lt;br /&gt;
***[[Environment::weather]]&lt;br /&gt;
***[[Environment::time.hour]]&lt;br /&gt;
***[[Environment::time.minute]]&lt;br /&gt;
***[[Environment::time.second]]&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:Westy.png&amp;diff=7181</id>
		<title>File:Westy.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:Westy.png&amp;diff=7181"/>
		<updated>2017-09-24T16:49:27Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:TigerShark.png&amp;diff=7180</id>
		<title>File:TigerShark.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:TigerShark.png&amp;diff=7180"/>
		<updated>2017-09-24T16:49:27Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:Tennis01AFY.png&amp;diff=7179</id>
		<title>File:Tennis01AFY.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:Tennis01AFY.png&amp;diff=7179"/>
		<updated>2017-09-24T16:49:26Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:TaoChengCutscene.png&amp;diff=7178</id>
		<title>File:TaoChengCutscene.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:TaoChengCutscene.png&amp;diff=7178"/>
		<updated>2017-09-24T16:49:26Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:Stingray.png&amp;diff=7177</id>
		<title>File:Stingray.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:Stingray.png&amp;diff=7177"/>
		<updated>2017-09-24T16:49:26Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:Shepherd.png&amp;diff=7176</id>
		<title>File:Shepherd.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:Shepherd.png&amp;diff=7176"/>
		<updated>2017-09-24T16:49:25Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:Seagull.png&amp;diff=7175</id>
		<title>File:Seagull.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:Seagull.png&amp;diff=7175"/>
		<updated>2017-09-24T16:49:25Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:Rottweiler.png&amp;diff=7174</id>
		<title>File:Rottweiler.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:Rottweiler.png&amp;diff=7174"/>
		<updated>2017-09-24T16:49:22Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:Retriever.png&amp;diff=7173</id>
		<title>File:Retriever.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:Retriever.png&amp;diff=7173"/>
		<updated>2017-09-24T16:49:21Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:Rat.png&amp;diff=7172</id>
		<title>File:Rat.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:Rat.png&amp;diff=7172"/>
		<updated>2017-09-24T16:49:20Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:RashkovskyCutscene.png&amp;diff=7171</id>
		<title>File:RashkovskyCutscene.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:RashkovskyCutscene.png&amp;diff=7171"/>
		<updated>2017-09-24T16:49:20Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:Rabbit.png&amp;diff=7170</id>
		<title>File:Rabbit.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:Rabbit.png&amp;diff=7170"/>
		<updated>2017-09-24T16:49:20Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:Pug.png&amp;diff=7169</id>
		<title>File:Pug.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:Pug.png&amp;diff=7169"/>
		<updated>2017-09-24T16:49:20Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:Poodle.png&amp;diff=7168</id>
		<title>File:Poodle.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:Poodle.png&amp;diff=7168"/>
		<updated>2017-09-24T16:49:19Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:Pigeon.png&amp;diff=7167</id>
		<title>File:Pigeon.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:Pigeon.png&amp;diff=7167"/>
		<updated>2017-09-24T16:49:19Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:Pig.png&amp;diff=7166</id>
		<title>File:Pig.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:Pig.png&amp;diff=7166"/>
		<updated>2017-09-24T16:49:19Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:MountainLion.png&amp;diff=7165</id>
		<title>File:MountainLion.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:MountainLion.png&amp;diff=7165"/>
		<updated>2017-09-24T16:49:18Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:KillerWhale.png&amp;diff=7164</id>
		<title>File:KillerWhale.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:KillerWhale.png&amp;diff=7164"/>
		<updated>2017-09-24T16:49:15Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:Husky.png&amp;diff=7163</id>
		<title>File:Husky.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:Husky.png&amp;diff=7163"/>
		<updated>2017-09-24T16:49:15Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:Humpback.png&amp;diff=7162</id>
		<title>File:Humpback.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:Humpback.png&amp;diff=7162"/>
		<updated>2017-09-24T16:49:14Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:Dolphin.png&amp;diff=7161</id>
		<title>File:Dolphin.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:Dolphin.png&amp;diff=7161"/>
		<updated>2017-09-24T16:49:14Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:Fish.png&amp;diff=7160</id>
		<title>File:Fish.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:Fish.png&amp;diff=7160"/>
		<updated>2017-09-24T16:49:14Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:Hen.png&amp;diff=7159</id>
		<title>File:Hen.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:Hen.png&amp;diff=7159"/>
		<updated>2017-09-24T16:49:13Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:HammerShark.png&amp;diff=7158</id>
		<title>File:HammerShark.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:HammerShark.png&amp;diff=7158"/>
		<updated>2017-09-24T16:49:13Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:Eastsa01AMY.png&amp;diff=7157</id>
		<title>File:Eastsa01AMY.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:Eastsa01AMY.png&amp;diff=7157"/>
		<updated>2017-09-24T16:49:13Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:Deer.png&amp;diff=7156</id>
		<title>File:Deer.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:Deer.png&amp;diff=7156"/>
		<updated>2017-09-24T16:49:13Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:Crow.png&amp;diff=7155</id>
		<title>File:Crow.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:Crow.png&amp;diff=7155"/>
		<updated>2017-09-24T16:49:13Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:Cormorant.png&amp;diff=7154</id>
		<title>File:Cormorant.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:Cormorant.png&amp;diff=7154"/>
		<updated>2017-09-24T16:49:08Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:ChefCutscene.png&amp;diff=7153</id>
		<title>File:ChefCutscene.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:ChefCutscene.png&amp;diff=7153"/>
		<updated>2017-09-24T16:49:07Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:Chop.png&amp;diff=7152</id>
		<title>File:Chop.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:Chop.png&amp;diff=7152"/>
		<updated>2017-09-24T16:49:07Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:ChickenHawk.png&amp;diff=7151</id>
		<title>File:ChickenHawk.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:ChickenHawk.png&amp;diff=7151"/>
		<updated>2017-09-24T16:49:07Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:Cow.png&amp;diff=7150</id>
		<title>File:Cow.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:Cow.png&amp;diff=7150"/>
		<updated>2017-09-24T16:49:07Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:Coyote.png&amp;diff=7149</id>
		<title>File:Coyote.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:Coyote.png&amp;diff=7149"/>
		<updated>2017-09-24T16:49:07Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:Boar.png&amp;diff=7148</id>
		<title>File:Boar.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:Boar.png&amp;diff=7148"/>
		<updated>2017-09-24T16:49:06Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:Chimp.png&amp;diff=7147</id>
		<title>File:Chimp.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:Chimp.png&amp;diff=7147"/>
		<updated>2017-09-24T16:49:06Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
	<entry>
		<id>https://wiki.rage.mp/w/index.php?title=File:Cat.png&amp;diff=7146</id>
		<title>File:Cat.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.rage.mp/w/index.php?title=File:Cat.png&amp;diff=7146"/>
		<updated>2017-09-24T16:49:06Z</updated>

		<summary type="html">&lt;p&gt;StreetGT: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>StreetGT</name></author>
	</entry>
</feed>