<?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=Tn6eL+Gamer</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=Tn6eL+Gamer"/>
	<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/wiki/Special:Contributions/Tn6eL_Gamer"/>
	<updated>2026-05-15T09:43:38Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.3</generator>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Talk:Useful_Functions&amp;diff=44244</id>
		<title>Talk:Useful Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Talk:Useful_Functions&amp;diff=44244"/>
		<updated>2015-02-05T10:26:26Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: /* Code */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;there i wrote isElementInPhotograph()&lt;br /&gt;
enjoy&lt;br /&gt;
[[User:Drline|Drline]] 04:44, 30 October 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
== countPlayersInWater ==&lt;br /&gt;
&lt;br /&gt;
This function is for returning the number of players in the water.&lt;br /&gt;
==Syntax==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;int countPlayersInWater( )&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns an integer containing the number of players in the water.&lt;br /&gt;
&lt;br /&gt;
==Code==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function countPlayersInWater( )&lt;br /&gt;
    local count = 0&lt;br /&gt;
	for i,player in ipairs(getElementsByType(&amp;quot;player&amp;quot;)) do&lt;br /&gt;
		if isElementInWater(player) then&lt;br /&gt;
			count = count + 1&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
    return count&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;section name=&amp;quot;Example&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt; &lt;br /&gt;
This example adds a command in the console to find out how many players are on your team, clientside&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
outputChatBox(&amp;quot;Number of Players in Water : &amp;quot;.. countPlayersInWater( ))&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Useful_Functions}}&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Talk:Useful_Functions&amp;diff=44243</id>
		<title>Talk:Useful Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Talk:Useful_Functions&amp;diff=44243"/>
		<updated>2015-02-05T10:26:19Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: /* Syntax */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;there i wrote isElementInPhotograph()&lt;br /&gt;
enjoy&lt;br /&gt;
[[User:Drline|Drline]] 04:44, 30 October 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Code==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function countPlayersInWater( )&lt;br /&gt;
    local count = 0&lt;br /&gt;
	for i,player in ipairs(getElementsByType(&amp;quot;player&amp;quot;)) do&lt;br /&gt;
		if isElementInWater(player) then&lt;br /&gt;
			count = count + 1&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
    return count&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== countPlayersInWater ==&lt;br /&gt;
&lt;br /&gt;
This function is for returning the number of players in the water.&lt;br /&gt;
==Syntax==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;int countPlayersInWater( )&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns an integer containing the number of players in the water.&lt;br /&gt;
&lt;br /&gt;
==Code==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function countPlayersInWater( )&lt;br /&gt;
    local count = 0&lt;br /&gt;
	for i,player in ipairs(getElementsByType(&amp;quot;player&amp;quot;)) do&lt;br /&gt;
		if isElementInWater(player) then&lt;br /&gt;
			count = count + 1&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
    return count&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;section name=&amp;quot;Example&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt; &lt;br /&gt;
This example adds a command in the console to find out how many players are on your team, clientside&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
outputChatBox(&amp;quot;Number of Players in Water : &amp;quot;.. countPlayersInWater( ))&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Useful_Functions}}&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Talk:Useful_Functions&amp;diff=44242</id>
		<title>Talk:Useful Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Talk:Useful_Functions&amp;diff=44242"/>
		<updated>2015-02-05T10:26:07Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: /* countPlayersInWater */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;there i wrote isElementInPhotograph()&lt;br /&gt;
enjoy&lt;br /&gt;
[[User:Drline|Drline]] 04:44, 30 October 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;int countPlayersInWater( )&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns an integer containing the number of players in the water.&lt;br /&gt;
&lt;br /&gt;
==Code==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function countPlayersInWater( )&lt;br /&gt;
    local count = 0&lt;br /&gt;
	for i,player in ipairs(getElementsByType(&amp;quot;player&amp;quot;)) do&lt;br /&gt;
		if isElementInWater(player) then&lt;br /&gt;
			count = count + 1&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
    return count&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== countPlayersInWater ==&lt;br /&gt;
&lt;br /&gt;
This function is for returning the number of players in the water.&lt;br /&gt;
==Syntax==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;int countPlayersInWater( )&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns an integer containing the number of players in the water.&lt;br /&gt;
&lt;br /&gt;
==Code==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function countPlayersInWater( )&lt;br /&gt;
    local count = 0&lt;br /&gt;
	for i,player in ipairs(getElementsByType(&amp;quot;player&amp;quot;)) do&lt;br /&gt;
		if isElementInWater(player) then&lt;br /&gt;
			count = count + 1&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
    return count&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;section name=&amp;quot;Example&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt; &lt;br /&gt;
This example adds a command in the console to find out how many players are on your team, clientside&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
outputChatBox(&amp;quot;Number of Players in Water : &amp;quot;.. countPlayersInWater( ))&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Useful_Functions}}&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Talk:Useful_Functions&amp;diff=44241</id>
		<title>Talk:Useful Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Talk:Useful_Functions&amp;diff=44241"/>
		<updated>2015-02-05T10:25:57Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;there i wrote isElementInPhotograph()&lt;br /&gt;
enjoy&lt;br /&gt;
[[User:Drline|Drline]] 04:44, 30 October 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
== countPlayersInWater ==&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;int countPlayersInWater( )&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns an integer containing the number of players in the water.&lt;br /&gt;
&lt;br /&gt;
==Code==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function countPlayersInWater( )&lt;br /&gt;
    local count = 0&lt;br /&gt;
	for i,player in ipairs(getElementsByType(&amp;quot;player&amp;quot;)) do&lt;br /&gt;
		if isElementInWater(player) then&lt;br /&gt;
			count = count + 1&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
    return count&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== countPlayersInWater ==&lt;br /&gt;
&lt;br /&gt;
This function is for returning the number of players in the water.&lt;br /&gt;
==Syntax==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;int countPlayersInWater( )&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns an integer containing the number of players in the water.&lt;br /&gt;
&lt;br /&gt;
==Code==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function countPlayersInWater( )&lt;br /&gt;
    local count = 0&lt;br /&gt;
	for i,player in ipairs(getElementsByType(&amp;quot;player&amp;quot;)) do&lt;br /&gt;
		if isElementInWater(player) then&lt;br /&gt;
			count = count + 1&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
    return count&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;section name=&amp;quot;Example&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt; &lt;br /&gt;
This example adds a command in the console to find out how many players are on your team, clientside&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
outputChatBox(&amp;quot;Number of Players in Water : &amp;quot;.. countPlayersInWater( ))&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Useful_Functions}}&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Talk:Useful_Functions&amp;diff=44240</id>
		<title>Talk:Useful Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Talk:Useful_Functions&amp;diff=44240"/>
		<updated>2015-02-05T10:25:33Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: /* See Also */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;there i wrote isElementInPhotograph()&lt;br /&gt;
enjoy&lt;br /&gt;
[[User:Drline|Drline]] 04:44, 30 October 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
== countPlayersInWater ==&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;int countPlayersInWater( )&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns an integer containing the number of players in the water.&lt;br /&gt;
&lt;br /&gt;
==Code==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function countPlayersInWater( )&lt;br /&gt;
    local count = 0&lt;br /&gt;
	for i,player in ipairs(getElementsByType(&amp;quot;player&amp;quot;)) do&lt;br /&gt;
		if isElementInWater(player) then&lt;br /&gt;
			count = count + 1&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
    return count&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;section name=&amp;quot;Example&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt; &lt;br /&gt;
This example adds a command in the console to find out how many players are on your team, clientside&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
outputChatBox(&amp;quot;Number of Players in Water : &amp;quot;.. countPlayersInWater( ))&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== countPlayersInWater ==&lt;br /&gt;
&lt;br /&gt;
This function is for returning the number of players in the water.&lt;br /&gt;
==Syntax==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;int countPlayersInWater( )&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns an integer containing the number of players in the water.&lt;br /&gt;
&lt;br /&gt;
==Code==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function countPlayersInWater( )&lt;br /&gt;
    local count = 0&lt;br /&gt;
	for i,player in ipairs(getElementsByType(&amp;quot;player&amp;quot;)) do&lt;br /&gt;
		if isElementInWater(player) then&lt;br /&gt;
			count = count + 1&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
    return count&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;section name=&amp;quot;Example&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt; &lt;br /&gt;
This example adds a command in the console to find out how many players are on your team, clientside&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
outputChatBox(&amp;quot;Number of Players in Water : &amp;quot;.. countPlayersInWater( ))&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Useful_Functions}}&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Talk:Useful_Functions&amp;diff=44239</id>
		<title>Talk:Useful Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Talk:Useful_Functions&amp;diff=44239"/>
		<updated>2015-02-05T10:24:08Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: /* countPlayersInWater */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;there i wrote isElementInPhotograph()&lt;br /&gt;
enjoy&lt;br /&gt;
[[User:Drline|Drline]] 04:44, 30 October 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
== countPlayersInWater ==&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;int countPlayersInWater( )&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns an integer containing the number of players in the water.&lt;br /&gt;
&lt;br /&gt;
==Code==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function countPlayersInWater( )&lt;br /&gt;
    local count = 0&lt;br /&gt;
	for i,player in ipairs(getElementsByType(&amp;quot;player&amp;quot;)) do&lt;br /&gt;
		if isElementInWater(player) then&lt;br /&gt;
			count = count + 1&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
    return count&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;section name=&amp;quot;Example&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt; &lt;br /&gt;
This example adds a command in the console to find out how many players are on your team, clientside&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
outputChatBox(&amp;quot;Number of Players in Water : &amp;quot;.. countPlayersInWater( ))&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Useful_Functions}}&lt;br /&gt;
&lt;br /&gt;
== countPlayersInWater ==&lt;br /&gt;
&lt;br /&gt;
This function is for returning the number of players in the water.&lt;br /&gt;
==Syntax==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;int countPlayersInWater( )&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns an integer containing the number of players in the water.&lt;br /&gt;
&lt;br /&gt;
==Code==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function countPlayersInWater( )&lt;br /&gt;
    local count = 0&lt;br /&gt;
	for i,player in ipairs(getElementsByType(&amp;quot;player&amp;quot;)) do&lt;br /&gt;
		if isElementInWater(player) then&lt;br /&gt;
			count = count + 1&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
    return count&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;section name=&amp;quot;Example&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt; &lt;br /&gt;
This example adds a command in the console to find out how many players are on your team, clientside&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
outputChatBox(&amp;quot;Number of Players in Water : &amp;quot;.. countPlayersInWater( ))&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Useful_Functions}}&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Talk:Useful_Functions&amp;diff=44238</id>
		<title>Talk:Useful Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Talk:Useful_Functions&amp;diff=44238"/>
		<updated>2015-02-05T10:21:25Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: /* countPlayersInWater */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;there i wrote isElementInPhotograph()&lt;br /&gt;
enjoy&lt;br /&gt;
[[User:Drline|Drline]] 04:44, 30 October 2012 (UTC)&lt;br /&gt;
&lt;br /&gt;
== countPlayersInWater ==&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;int countPlayersInWater( )&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns an integer containing the number of players in the water.&lt;br /&gt;
&lt;br /&gt;
==Code==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function countPlayersInWater( )&lt;br /&gt;
    local count = 0&lt;br /&gt;
	for i,player in ipairs(getElementsByType(&amp;quot;player&amp;quot;)) do&lt;br /&gt;
		if isElementInWater(player) then&lt;br /&gt;
			count = count + 1&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
    return count&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;section name=&amp;quot;Example&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt; &lt;br /&gt;
This example adds a command in the console to find out how many players are on your team, clientside&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
outputChatBox(&amp;quot;Number of Players in Water : &amp;quot;.. countPlayersInWater( ))&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Useful_Functions}}&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/Other&amp;diff=41427</id>
		<title>AR/Other</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/Other&amp;diff=41427"/>
		<updated>2014-08-16T15:45:19Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;font color=&amp;quot;#FF0000&amp;quot;  size=&amp;quot;7&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;'''بسم الله الرحمن الرحيم'''&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;___________________________________________________________________&amp;lt;/p&amp;gt; &lt;br /&gt;
 &amp;lt;font color=&amp;quot;#000000&amp;quot;  size=&amp;quot;2&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;left&amp;quot;&amp;gt;== return ==&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&lt;br /&gt;
'''تستخدم ل إرجاع القيمة    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;section name=&amp;quot;Example&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function createZone(x, y, sizeX, sizeY) -- نسوي وظيفة createZone&lt;br /&gt;
	createRadarArea(x, y, sizeX, sizeY) -- نسوي رادار بالخريطة&lt;br /&gt;
	return createColRectangle(x,  y, sizeX, sizeY) -- نسوي كول شيب ونرجع قيمة الفنكشن اليه&lt;br /&gt;
end -- اند الوظيفة&lt;br /&gt;
&lt;br /&gt;
addEventHandler(&amp;quot;onColShapeHit&amp;quot;, createZone(94.81484, 1815.98547, 500, 300), function(Hit) -- نسوي حدث اذ دخل الكول شيب&lt;br /&gt;
	if getElementType(Hit) == &amp;quot;player&amp;quot; then -- نتحقق انه لاعب&lt;br /&gt;
		killPed(Hit) -- نقتله&lt;br /&gt;
	end -- اند التحقق&lt;br /&gt;
end) -- اند الوظيفة وقوس الحدث&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font color=&amp;quot;#FF0000&amp;quot;  size=&amp;quot;2&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;left&amp;quot;&amp;gt;نلاحظ اننا رجعنا القيمة للكول شيب&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/Other&amp;diff=41426</id>
		<title>AR/Other</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/Other&amp;diff=41426"/>
		<updated>2014-08-16T15:45:03Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;font color=&amp;quot;#FF0000&amp;quot;  size=&amp;quot;7&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;'''بسم الله الرحمن الرحيم'''&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;___________________________________________________________________&amp;lt;/p&amp;gt; &lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
'''تستخدم ل إرجاع القيمة    &lt;br /&gt;
&amp;lt;font color=&amp;quot;#000000&amp;quot;  size=&amp;quot;2&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;left&amp;quot;&amp;gt;== return ==&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section name=&amp;quot;Example&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function createZone(x, y, sizeX, sizeY) -- نسوي وظيفة createZone&lt;br /&gt;
	createRadarArea(x, y, sizeX, sizeY) -- نسوي رادار بالخريطة&lt;br /&gt;
	return createColRectangle(x,  y, sizeX, sizeY) -- نسوي كول شيب ونرجع قيمة الفنكشن اليه&lt;br /&gt;
end -- اند الوظيفة&lt;br /&gt;
&lt;br /&gt;
addEventHandler(&amp;quot;onColShapeHit&amp;quot;, createZone(94.81484, 1815.98547, 500, 300), function(Hit) -- نسوي حدث اذ دخل الكول شيب&lt;br /&gt;
	if getElementType(Hit) == &amp;quot;player&amp;quot; then -- نتحقق انه لاعب&lt;br /&gt;
		killPed(Hit) -- نقتله&lt;br /&gt;
	end -- اند التحقق&lt;br /&gt;
end) -- اند الوظيفة وقوس الحدث&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font color=&amp;quot;#FF0000&amp;quot;  size=&amp;quot;2&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;left&amp;quot;&amp;gt;نلاحظ اننا رجعنا القيمة للكول شيب&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/Other&amp;diff=41425</id>
		<title>AR/Other</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/Other&amp;diff=41425"/>
		<updated>2014-08-16T15:44:30Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;font color=&amp;quot;#FF0000&amp;quot;  size=&amp;quot;7&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;'''بسم الله الرحمن الرحيم'''&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;___________________________________________________________________&amp;lt;/p&amp;gt; &lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
'''تستخدم ل إرجاع القيمة    &lt;br /&gt;
&amp;lt;font color=&amp;quot;#000000&amp;quot;  size=&amp;quot;2&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;left&amp;quot;&amp;gt;== return ==&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section name=&amp;quot;Example&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function createZone(x, y, sizeX, sizeY) -- نسوي وظيفة createZone&lt;br /&gt;
	createRadarArea(x, y, sizeX, sizeY) -- نسوي رادار بالخريطة&lt;br /&gt;
	return createColRectangle(x,  y, sizeX, sizeY) -- نسوي كول شيب ونرجع قيمة الفنكشن اليه&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
addEventHandler(&amp;quot;onColShapeHit&amp;quot;, createZone(94.81484, 1815.98547, 500, 300), function(Hit) -- نسوي حدث اذ دخل الكول شيب&lt;br /&gt;
	if getElementType(Hit) == &amp;quot;player&amp;quot; then -- نتحقق انه لاعب&lt;br /&gt;
		killPed(Hit) -- نقتله&lt;br /&gt;
	end -- اند التحقق&lt;br /&gt;
end) -- اند الوظيفة وقوس الحدث&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font color=&amp;quot;#FF0000&amp;quot;  size=&amp;quot;2&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;left&amp;quot;&amp;gt;نلاحظ اننا رجعنا القيمة للكول شيب&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/Other&amp;diff=41424</id>
		<title>AR/Other</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/Other&amp;diff=41424"/>
		<updated>2014-08-16T15:43:44Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;font color=&amp;quot;#FF0000&amp;quot;  size=&amp;quot;7&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;'''بسم الله الرحمن الرحيم'''&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;___________________________________________________________________&amp;lt;/p&amp;gt; &lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
'''تستخدم ل إرجاع القيمة    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;font color=&amp;quot;#000000&amp;quot;  size=&amp;quot;2&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;left&amp;quot;&amp;gt;== return ==&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;section name=&amp;quot;Example&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function createZone(x, y, sizeX, sizeY) -- نسوي وظيفة createZone&lt;br /&gt;
	createRadarArea(x, y, sizeX, sizeY) -- نسوي رادار بالخريطة&lt;br /&gt;
	return createColRectangle(x,  y, sizeX, sizeY) -- نسوي كول شيب ونرجع قيمة الفنكشن اليه&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
addEventHandler(&amp;quot;onColShapeHit&amp;quot;, createZone(94.81484, 1815.98547, 500, 300), function(Hit) -- نسوي حدث اذ دخل الكول شيب&lt;br /&gt;
	if getElementType(Hit) == &amp;quot;player&amp;quot; then -- نتحقق انه لاعب&lt;br /&gt;
		killPed(Hit) -- نقتله&lt;br /&gt;
	end -- اند التحقق&lt;br /&gt;
end) -- اند الوظيفة وقوس الحدث&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font color=&amp;quot;#FF0000&amp;quot;  size=&amp;quot;2&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;left&amp;quot;&amp;gt;نلاحظ اننا رجعنا القيمة للكول شيب&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/Other&amp;diff=41423</id>
		<title>AR/Other</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/Other&amp;diff=41423"/>
		<updated>2014-08-16T15:43:19Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;font color=&amp;quot;#FF0000&amp;quot;  size=&amp;quot;7&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;'''بسم الله الرحمن الرحيم'''&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;___________________________________________________________________&amp;lt;/p&amp;gt; &lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;font color=&amp;quot;#000000&amp;quot;  size=&amp;quot;2&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;left&amp;quot;&amp;gt;== return ==&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&lt;br /&gt;
  تستخدم ل إرجاع القيمة    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
    retrun &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;section name=&amp;quot;Example&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function createZone(x, y, sizeX, sizeY) -- نسوي وظيفة createZone&lt;br /&gt;
	createRadarArea(x, y, sizeX, sizeY) -- نسوي رادار بالخريطة&lt;br /&gt;
	return createColRectangle(x,  y, sizeX, sizeY) -- نسوي كول شيب ونرجع قيمة الفنكشن اليه&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
addEventHandler(&amp;quot;onColShapeHit&amp;quot;, createZone(94.81484, 1815.98547, 500, 300), function(Hit) -- نسوي حدث اذ دخل الكول شيب&lt;br /&gt;
	if getElementType(Hit) == &amp;quot;player&amp;quot; then -- نتحقق انه لاعب&lt;br /&gt;
		killPed(Hit) -- نقتله&lt;br /&gt;
	end -- اند التحقق&lt;br /&gt;
end) -- اند الوظيفة وقوس الحدث&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font color=&amp;quot;#FF0000&amp;quot;  size=&amp;quot;2&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;left&amp;quot;&amp;gt;نلاحظ اننا رجعنا القيمة للكول شيب&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/Other&amp;diff=41422</id>
		<title>AR/Other</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/Other&amp;diff=41422"/>
		<updated>2014-08-16T15:43:04Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;font color=&amp;quot;#FF0000&amp;quot;  size=&amp;quot;7&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;'''بسم الله الرحمن الرحيم'''&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;___________________________________________________________________&amp;lt;/p&amp;gt; &lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
'''= &amp;lt;font color=&amp;quot;#000000&amp;quot;  size=&amp;quot;2&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;left&amp;quot;&amp;gt;== return ==&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&lt;br /&gt;
  تستخدم ل إرجاع القيمة    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
    retrun &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;section name=&amp;quot;Example&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function createZone(x, y, sizeX, sizeY) -- نسوي وظيفة createZone&lt;br /&gt;
	createRadarArea(x, y, sizeX, sizeY) -- نسوي رادار بالخريطة&lt;br /&gt;
	return createColRectangle(x,  y, sizeX, sizeY) -- نسوي كول شيب ونرجع قيمة الفنكشن اليه&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
addEventHandler(&amp;quot;onColShapeHit&amp;quot;, createZone(94.81484, 1815.98547, 500, 300), function(Hit) -- نسوي حدث اذ دخل الكول شيب&lt;br /&gt;
	if getElementType(Hit) == &amp;quot;player&amp;quot; then -- نتحقق انه لاعب&lt;br /&gt;
		killPed(Hit) -- نقتله&lt;br /&gt;
	end -- اند التحقق&lt;br /&gt;
end) -- اند الوظيفة وقوس الحدث&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font color=&amp;quot;#FF0000&amp;quot;  size=&amp;quot;2&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;left&amp;quot;&amp;gt;نلاحظ اننا رجعنا القيمة للكول شيب&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/Other&amp;diff=41421</id>
		<title>AR/Other</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/Other&amp;diff=41421"/>
		<updated>2014-08-16T15:42:37Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;font color=&amp;quot;#FF0000&amp;quot;  size=&amp;quot;7&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;'''بسم الله الرحمن الرحيم'''&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;___________________________________________________________________&amp;lt;/p&amp;gt; &lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
'''== &amp;lt;font color=&amp;quot;#000000&amp;quot;  size=&amp;quot;2&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;left&amp;quot;&amp;gt;== return ==&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&lt;br /&gt;
  تستخدم ل إرجاع القيمة    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
    retrun &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;section name=&amp;quot;Example&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function createZone(x, y, sizeX, sizeY) -- نسوي وظيفة createZone&lt;br /&gt;
	createRadarArea(x, y, sizeX, sizeY) -- نسوي رادار بالخريطة&lt;br /&gt;
	return createColRectangle(x,  y, sizeX, sizeY) -- نسوي كول شيب ونرجع قيمة الفنكشن اليه&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
addEventHandler(&amp;quot;onColShapeHit&amp;quot;, createZone(94.81484, 1815.98547, 500, 300), function(Hit) -- نسوي حدث اذ دخل الكول شيب&lt;br /&gt;
	if getElementType(Hit) == &amp;quot;player&amp;quot; then -- نتحقق انه لاعب&lt;br /&gt;
		killPed(Hit) -- نقتله&lt;br /&gt;
	end -- اند التحقق&lt;br /&gt;
end) -- اند الوظيفة وقوس الحدث&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font color=&amp;quot;#FF0000&amp;quot;  size=&amp;quot;2&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;left&amp;quot;&amp;gt;نلاحظ اننا رجعنا القيمة للكول شيب&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/Other&amp;diff=41419</id>
		<title>AR/Other</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/Other&amp;diff=41419"/>
		<updated>2014-08-16T15:41:33Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;font color=&amp;quot;#FF0000&amp;quot;  size=&amp;quot;7&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;'''بسم الله الرحمن الرحيم'''&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;___________________________________________________________________&amp;lt;/p&amp;gt; &lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
'''== &amp;lt;font color=&amp;quot;#000000&amp;quot;  size=&amp;quot;1&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;left&amp;quot;&amp;gt;return&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt; ==&lt;br /&gt;
  تستخدم ل إرجاع القيمة    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
    retrun &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;section name=&amp;quot;Example&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function createZone(x, y, sizeX, sizeY) -- نسوي وظيفة createZone&lt;br /&gt;
	createRadarArea(x, y, sizeX, sizeY) -- نسوي رادار بالخريطة&lt;br /&gt;
	return createColRectangle(x,  y, sizeX, sizeY) -- نسوي كول شيب ونرجع قيمة الفنكشن اليه&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
addEventHandler(&amp;quot;onColShapeHit&amp;quot;, createZone(94.81484, 1815.98547, 500, 300), function(Hit) -- نسوي حدث اذ دخل الكول شيب&lt;br /&gt;
	if getElementType(Hit) == &amp;quot;player&amp;quot; then -- نتحقق انه لاعب&lt;br /&gt;
		killPed(Hit) -- نقتله&lt;br /&gt;
	end -- اند التحقق&lt;br /&gt;
end) -- اند الوظيفة وقوس الحدث&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font color=&amp;quot;#FF0000&amp;quot;  size=&amp;quot;2&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;left&amp;quot;&amp;gt;نلاحظ اننا رجعنا القيمة للكول شيب&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/Other&amp;diff=41417</id>
		<title>AR/Other</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/Other&amp;diff=41417"/>
		<updated>2014-08-16T15:39:16Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;font color=&amp;quot;#FF0000&amp;quot;  size=&amp;quot;7&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;'''بسم الله الرحمن الرحيم'''&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;___________________________________________________________________&amp;lt;/p&amp;gt; &lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
'''== retrun ==&lt;br /&gt;
  تستخدم ل إرجاع القيمة    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;section name=&amp;quot;Example&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function createZone(x, y, sizeX, sizeY) -- نسوي وظيفة createZone&lt;br /&gt;
	createRadarArea(x, y, sizeX, sizeY) -- نسوي رادار بالخريطة&lt;br /&gt;
	return createColRectangle(x,  y, sizeX, sizeY) -- نسوي كول شيب ونرجع قيمة الفنكشن اليه&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
addEventHandler(&amp;quot;onColShapeHit&amp;quot;, createZone(94.81484, 1815.98547, 500, 300), function(Hit) -- نسوي حدث اذ دخل الكول شيب&lt;br /&gt;
	if getElementType(Hit) == &amp;quot;player&amp;quot; then -- نتحقق انه لاعب&lt;br /&gt;
		killPed(Hit) -- نقتله&lt;br /&gt;
	end -- اند التحقق&lt;br /&gt;
end) -- اند الوظيفة وقوس الحدث&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font color=&amp;quot;#FF0000&amp;quot;  size=&amp;quot;2&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;left&amp;quot;&amp;gt;نلاحظ اننا رجعنا القيمة للكول شيب&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/Other&amp;diff=41416</id>
		<title>AR/Other</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/Other&amp;diff=41416"/>
		<updated>2014-08-16T15:38:58Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;font color=&amp;quot;#FF0000&amp;quot;  size=&amp;quot;7&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;'''بسم الله الرحمن الرحيم'''&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;___________________________________________________________________&amp;lt;/p&amp;gt; &lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
'''== retrun ==&lt;br /&gt;
  تستخدم ل إرجاع القيمة    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;section name=&amp;quot;Example&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function createZone(x, y, sizeX, sizeY) -- نسوي وظيفة createZone&lt;br /&gt;
	createRadarArea(x, y, sizeX, sizeY) -- نسوي رادار بالخريطة&lt;br /&gt;
	return createColRectangle(x,  y, sizeX, sizeY) -- نسوي كول شيب ونرجع قيمة الفنكشن اليه&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
addEventHandler(&amp;quot;onColShapeHit&amp;quot;, createZone(94.81484, 1815.98547, 500, 300), function(Hit) -- نسوي حدث اذ دخل الكول شيب&lt;br /&gt;
	if getElementType(Hit) == &amp;quot;player&amp;quot; then -- نتحقق انه لاعب&lt;br /&gt;
		killPed(Hit) -- نقتله&lt;br /&gt;
	end -- اند التحقق&lt;br /&gt;
end) -- اند الوظيفة وقوس الحدث&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font color=&amp;quot;#FF0000&amp;quot;  size=&amp;quot;2&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;نلاحظ اننا رجعنا القيمة للكول شيب&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/Other&amp;diff=41415</id>
		<title>AR/Other</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/Other&amp;diff=41415"/>
		<updated>2014-08-16T15:38:12Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;font color=&amp;quot;#FF0000&amp;quot;  size=&amp;quot;7&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;'''بسم الله الرحمن الرحيم'''&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;___________________________________________________________________&amp;lt;/p&amp;gt; &lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
'''== retrun ==&lt;br /&gt;
  تستخدم ل إرجاع القيمة    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;section name=&amp;quot;Example&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function createZone(x, y, sizeX, sizeY) -- نسوي وظيفة createZone&lt;br /&gt;
	createRadarArea(x, y, sizeX, sizeY) -- نسوي رادار بالخريطة&lt;br /&gt;
	return createColRectangle(x,  y, sizeX, sizeY) -- نسوي كول شيب ونرجع قيمة الفنكشن اليه&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
addEventHandler(&amp;quot;onColShapeHit&amp;quot;, createZone(94.81484, 1815.98547, 500, 300), function(Hit) -- نسوي حدث اذ دخل الكول شيب&lt;br /&gt;
	if getElementType(Hit) == &amp;quot;player&amp;quot; then -- نتحقق انه لاعب&lt;br /&gt;
		killPed(Hit) -- نقتله&lt;br /&gt;
	end -- اند التحقق&lt;br /&gt;
end) -- اند الوظيفة وقوس الحدث&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
نلاحظ اننا رجعنا القيمة للكول شيب&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/Other&amp;diff=41409</id>
		<title>AR/Other</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/Other&amp;diff=41409"/>
		<updated>2014-08-16T15:35:28Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;font color=&amp;quot;#FF0000&amp;quot;  size=&amp;quot;7&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;'''بسم الله الرحمن الرحيم'''&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;___________________________________________________________________&amp;lt;/p&amp;gt; &lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
'''== return == '''&lt;br /&gt;
تستخدم لارجاع القيمة&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section name=&amp;quot;Example&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function createZone(x, y, sizeX, sizeY) -- نسوي وظيفة createZone&lt;br /&gt;
	createRadarArea(x, y, sizeX, sizeY) -- نسوي رادار بالخريطة&lt;br /&gt;
	return createColRectangle(x,  y, sizeX, sizeY) -- نسوي كول شيب ونرجع قيمة الفنكشن اليه&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
addEventHandler(&amp;quot;onColShapeHit&amp;quot;, createZone(94.81484, 1815.98547, 500, 300), function(Hit) -- نسوي حدث اذ دخل الكول شيب&lt;br /&gt;
	if getElementType(Hit) == &amp;quot;player&amp;quot; then -- نتحقق انه لاعب&lt;br /&gt;
		killPed(Hit) -- نقتله&lt;br /&gt;
	end -- اند التحقق&lt;br /&gt;
end) -- اند الوظيفة وقوس الحدث&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
نلاحظ اننا رجعنا القيمة للكول شيب&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/Other&amp;diff=41408</id>
		<title>AR/Other</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/Other&amp;diff=41408"/>
		<updated>2014-08-16T15:35:09Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;font color=&amp;quot;#FF0000&amp;quot;  size=&amp;quot;7&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;'''بسم الله الرحمن الرحيم'''&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;___________________________________________________________________&amp;lt;/p&amp;gt; &lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
'''== return == '''&lt;br /&gt;
تستخدم لارجاع القيمة&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section name=&amp;quot;Example&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function createZone(x, y, sizeX, sizeY) -- نسوي وظيفة createZone&lt;br /&gt;
	createRadarArea(x, y, sizeX, sizeY) -- نسوي رادار بالخريطة&lt;br /&gt;
	return createColRectangle(x,  y, sizeX, sizeY) -- نسوي كول شيب ونرجع قيمة الفنشن اليه&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
addEventHandler(&amp;quot;onColShapeHit&amp;quot;, createZone(94.81484, 1815.98547, 500, 300), function(Hit) -- نسوي حدث اذ دخل الكول شيب&lt;br /&gt;
	if getElementType(Hit) == &amp;quot;player&amp;quot; then -- نتحقق انه لاعب&lt;br /&gt;
		killPed(Hit) -- نقتله&lt;br /&gt;
	end -- اند التحقق&lt;br /&gt;
end) -- اند الوظيفة وقوس الحدث&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
نلاحظ اننا رجعنا القيمة للكول شيب&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/Other&amp;diff=41405</id>
		<title>AR/Other</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/Other&amp;diff=41405"/>
		<updated>2014-08-16T15:33:20Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;font color=&amp;quot;#FF0000&amp;quot;  size=&amp;quot;7&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;'''بسم الله الرحمن الرحيم'''&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;___________________________________________________________________&amp;lt;/p&amp;gt; &lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
'''== return == '''&lt;br /&gt;
تستخدم لارجاع القيمة&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section name=&amp;quot;Example&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function createZone(x, y, sizeX, sizeY)&lt;br /&gt;
	createRadarArea(x, y, sizeX, sizeY)&lt;br /&gt;
	return createColRectangle(x,  y, sizeX, sizeY)&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
addEventHandler(&amp;quot;onColShapeHit&amp;quot;, createZone(94.81484, 1815.98547, 500, 300), function(Hit)&lt;br /&gt;
	if getElementType(Hit) == &amp;quot;player&amp;quot; then&lt;br /&gt;
		killPed(Hit)&lt;br /&gt;
	end&lt;br /&gt;
end)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
نلاحظ اننا رجعنا القيمة للكول شيب&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/Other&amp;diff=41404</id>
		<title>AR/Other</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/Other&amp;diff=41404"/>
		<updated>2014-08-16T15:32:45Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: Created page with &amp;quot;&amp;lt;font color=&amp;quot;#FF0000&amp;quot;  size=&amp;quot;7&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;'''بسم الله الرحمن الرحيم'''&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt;       &amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;________...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;font color=&amp;quot;#FF0000&amp;quot;  size=&amp;quot;7&amp;quot;&amp;gt;  &amp;lt;strong&amp;gt;   &amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;'''بسم الله الرحمن الرحيم'''&amp;lt;/p&amp;gt;  &amp;lt;/strong&amp;gt;    &amp;lt;/font&amp;gt;&amp;lt;br /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p align=&amp;quot;center&amp;quot;&amp;gt;___________________________________________________________________&amp;lt;/p&amp;gt; &lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
'''== return ==&lt;br /&gt;
تستخدم لارجاع القيمة&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section name=&amp;quot;Example&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function createZone(x, y, sizeX, sizeY)&lt;br /&gt;
	createRadarArea(x, y, sizeX, sizeY)&lt;br /&gt;
	return createColRectangle(x,  y, sizeX, sizeY)&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
addEventHandler(&amp;quot;onColShapeHit&amp;quot;, createZone(94.81484, 1815.98547, 500, 300), function(Hit)&lt;br /&gt;
	if getElementType(Hit) == &amp;quot;player&amp;quot; then&lt;br /&gt;
		killPed(Hit)&lt;br /&gt;
	end&lt;br /&gt;
end)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
نلاحظ اننا رجعنا القيمة للكول شيب&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/%D8%A7%D9%84%D8%B5%D9%81%D8%AD%D9%87_%D8%A7%D9%84%D8%B1%D8%A6%D9%8A%D8%B3%D9%8A%D9%87&amp;diff=41402</id>
		<title>AR/الصفحه الرئيسيه</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/%D8%A7%D9%84%D8%B5%D9%81%D8%AD%D9%87_%D8%A7%D9%84%D8%B1%D8%A6%D9%8A%D8%B3%D9%8A%D9%87&amp;diff=41402"/>
		<updated>2014-08-16T15:24:07Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| width=&amp;quot;100%&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 1px solid #D8D8D8; padding: 5px; height: 130px;&amp;quot;&amp;gt;&lt;br /&gt;
[[File:Mtalogo.png|left|100px]].Multi Theft Auto ستجد هنا معلومات غنية عن استخدام .'''Multi Theft Auto أهلا بك فى الويكي الخاص ب''' &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--هناك العديد من [[كيف يمكنك المساعده|الإشياء الممكن ان تساعدنا بها]] كصنع خريطه وصنع مود--&amp;gt;&lt;br /&gt;
.[[IRC Channel]] أو [irc://irc.gtanet.com/Arab_scripting Arab_scripting] إذا كان لديك أي أسئلة أو مشاكل تتعلق بالبرمجة ، يمكنك السؤال على&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
{| width=&amp;quot;100%&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot; |&amp;lt;div style=&amp;quot;border: 1px solid #D8D8D8; padding:4px 8px 8px 8px; margin:10px;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 1px dotted #AAAAAA;padding:4px 8px 8px 8px;margin:10px;&amp;quot;&amp;gt;&lt;br /&gt;
====مكتبات====&lt;br /&gt;
&lt;br /&gt;
* [[AR/Math|  Math مكتبة ]] [[Image:Sa.png|اللغة العربية|20px]]&lt;br /&gt;
* [[AR/String|  String مكتبة ]] [[Image:Sa.png|اللغة العربية|20px]]&lt;br /&gt;
* [[AR/Table|  Table مكتبة ]] [[Image:Sa.png|اللغة العربية|20px]]&lt;br /&gt;
* [[AR/Other|  مكتبات اخرى ]] [[Image:Sa.png|اللغة العربية|20px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right; width: 32px;&amp;quot;&amp;gt;[[File:Input-gaming.png‎]]&amp;lt;/div&amp;gt;&lt;br /&gt;
=== لعب ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;background: #FFEEAA;&amp;quot;&amp;gt;&lt;br /&gt;
[[File:Go-down.png|link=http://mtasa.com/]] ''' [http://mtasa.com/ تحميل لعبة ام تي اي اخر اصدار {{Current Version|full}}]'''&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [[AR/دليل اللاعب|(Client) دليل اللاعب]] [[Image:Sa.png|اللغة العربية|20px]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
* [[Changes_in_{{padleft:|3|{{Current Version|full}}}}| {{padleft:|3|{{Current Version|full}}}} التغيرات فى ]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
* [[Known_Issues_-_FAQ|مشاكل معروفه]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
* [[Upgrading_from_MTA:Race|MTA:SA {{padleft:|3|{{Current Version|full}}}} الى MTA:RACE المهاجرة من]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
* [[Server_Manual|(Server) دليل السيرفر]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
* [[Map_manager|ادارة الخرائط]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== صنع الخرائط ===&lt;br /&gt;
*[[Resource:Editor|دليل]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
*[[Resource:Editor/EDF|EDF صيغة]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
*[[Resource:Editor/Plugins|الاضافات]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
*[[Resource:Editor#FAQ|أسئلة وأجوبة]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 1px solid #D8D8D8; padding:4px 8px 8px 8px; margin:10px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right; width: 32px;&amp;quot;&amp;gt;[[File:Package-x-generic.png‎]]&amp;lt;/div&amp;gt;&lt;br /&gt;
=== قواعد البيانات ===&lt;br /&gt;
MTA لـ (Resources) فى صنع المودات Lua يوضح هذا القسم امكانيات &lt;br /&gt;
* [[:Category:Resource|(Resources)]] كتالوج المودات&lt;br /&gt;
* [[Client side scripts]]&lt;br /&gt;
* [[Modules]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 1px solid #D8D8D8; padding:4px 8px 8px 8px; margin:10px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right; width: 32px;&amp;quot;&amp;gt;[[File:Applications-development.png‎‎‎]]&amp;lt;/div&amp;gt;&lt;br /&gt;
=== Multi Theft Auto تطوير ===&lt;br /&gt;
[[File:Go-down.png|link=http://nightly.mtasa.com/]] [http://nightly.mtasa.com/ Nightly builds]&lt;br /&gt;
* [[Compiling_MTASA|Compiling MTASA on Windows]]&lt;br /&gt;
* [[Building_MTASA_Server_on_Mac_OS_X|Compiling MTASA on Mac OS X]]&lt;br /&gt;
* [[Building_MTASA_Server_on_GNU_Linux|Compiling MTASA on GNU/Linux]]&lt;br /&gt;
* [[Coding guidelines]]&lt;br /&gt;
* [http://code.google.com/p/mtasa-blue Google Code SVN]&lt;br /&gt;
* [[Roadmap]]&lt;br /&gt;
* [http://bugs.mtasa.com/ Bugtracker]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 1px solid #D8D8D8; padding:4px 8px 8px 8px; margin:10px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right; width: 32px;&amp;quot;&amp;gt;[[File:Applications-office.png‎]]&amp;lt;/div&amp;gt;&lt;br /&gt;
=== Wiki - كيف يمكنك المساعدة ===&lt;br /&gt;
* [[:Category:Incomplete|تكملة الوثائق الغير مكتملة]]&lt;br /&gt;
* [[:Category:Needs_Example |eventsو لل functionsاضف مثال لل]].&lt;br /&gt;
* [[:Category:Needs Checking|مراجعة والتحقق من الصفحات التي تحتاج التحقق]]&lt;br /&gt;
* كتابة دروس لمساعدة الناس&lt;br /&gt;
* ترجمة صفحات الويكي&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 1px solid #D8D8D8; padding:4px 8px 8px 8px; margin:10px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right; width: 32px;&amp;quot;&amp;gt;[[File:Internet-group-chat.png‎]]&amp;lt;/div&amp;gt;&lt;br /&gt;
=== المجتمع ===&lt;br /&gt;
* [http://forum.multitheftauto.com/ المنتدى]&lt;br /&gt;
* IRC: [irc://irc.multitheftauto.com/mta irc.multitheftauto.com #mta]&lt;br /&gt;
* [http://community.mtasa.com/ MTA Community] - تنزيل ومشاركة المودات&lt;br /&gt;
* [http://twitter.com/#!/MTAQA/ Twitter] - [http://www.youtube.com/user/MTAQA Youtube] - [http://plus.google.com/102014133442331779727/ Google+] - [http://www.moddb.com/mods/multi-theft-auto-san-andreas ModDB]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
| width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 1px solid #D8D8D8; padding:4px 8px 8px 8px; margin:10px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right; width: 32px;&amp;quot;&amp;gt;[[File:Accessories-text-editor.png]]&amp;lt;/div&amp;gt;&lt;br /&gt;
=== (Scripting) البرمجة ===&lt;br /&gt;
* [[AR/مقدمه في البرمجه|مقدمه في البرمجه]] [[Image:Sa.png|اللغة العربية|20px]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
* [[Introduction to Scripting the GUI|GUI مقدمة فى برمجة]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
* [[Debugging|كيفية البحث عن الأخطاء فى السكربت]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
* [[Resources|(Resources) مقدمة فى المودات]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
** [[Resource Web Access]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
** [[:Category:Resource|(Resources) كتالوج المودات]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
** [[Meta.xml]] - الذى يحدد ذلك (meta.xml) ملف التعريف (Resources) وراء كل المودات&lt;br /&gt;
** [[ACL]] - و هذا أمر حيوى لسكربتات معقدة للعمل Access Control List&lt;br /&gt;
* [[Writing_Gamemodes|Gamemodes كتابة]]&lt;br /&gt;
* [[Useful_Functions|وظائف مفيدة]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right; width: 32px;&amp;quot;&amp;gt;[[File:start-here.png]]&amp;lt;/div&amp;gt;&lt;br /&gt;
====LUA تعلميات عامه حول====	&lt;br /&gt;
صفحات مصممه للمساعدة في فهم اللغه&lt;br /&gt;
*[http://www.lua.org/pil/index.html &amp;quot;LUA دليل البرمجة في]&lt;br /&gt;
**[http://www.lua.org/manual/5.1/#index Lua  دليل وظائف]&lt;br /&gt;
*[http://lua-users.org/wiki/TutorialDirectory Lua ويكي]&lt;br /&gt;
*[http://nixstaller.berlios.de/manual/0.2/nixstaller_9.html Nixstaller من  Lua أرشادات عامة في]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 1px solid #D8D8D8; padding:4px 8px 8px 8px; margin:10px; background:#E5E5FF;&amp;quot;&amp;gt;&lt;br /&gt;
====Reference====&lt;br /&gt;
* [[Client Scripting Functions|Client-side Functions]]&lt;br /&gt;
* [[Client Scripting Events|Client-side Events]]&lt;br /&gt;
* [[AR/Server Scripting Functions|Server-side Functions]] [[Image:Sa.png|اللغة العربية|20px]] تم الترجمة جزئياً&lt;br /&gt;
* [[Server Scripting Events|Server-side Events]]&lt;br /&gt;
&amp;lt;!-- Incomplete * [[Module functions|Server-side external module scripting functions list]] --&amp;gt;&lt;br /&gt;
* [[MTA Classes]] - Detailed descriptions of all MTA custom types&lt;br /&gt;
** [[Element|MTA Elements]] / [[Element tree]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 1px solid #D8D8D8; padding:4px 8px 8px 8px; margin:10px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right; width: 32px;&amp;quot;&amp;gt;[[File:System-file-manager.png]]&amp;lt;/div&amp;gt;&lt;br /&gt;
====[[Id|قائمة المعرفات]]====&lt;br /&gt;
*[[Animations|الحركات]]&lt;br /&gt;
*[[Character Skins|الشخصيات]]&lt;br /&gt;
*[[CJ_Clothes|CJ ستايل]]&lt;br /&gt;
*[[Garage|الكراجات]]&lt;br /&gt;
*[[Interior IDs|المحلات]]&lt;br /&gt;
*[[Material IDs|الادوات]]&lt;br /&gt;
*[[Projectiles|المجسمات]]&lt;br /&gt;
*[[Radar Blips|ايقونات الرادار]]&lt;br /&gt;
*[[Sounds|الإصوات]]&lt;br /&gt;
*[[Vehicle IDs|السيارات]]&lt;br /&gt;
*[[Vehicle Colors|الوان السيارات]]&lt;br /&gt;
*[[Vehicle Upgrades|اضافات السيارات]]&lt;br /&gt;
*[[Vehicle variants|متغيرات السيارات]]&lt;br /&gt;
*[[Weapons|الاسلحه]]&lt;br /&gt;
*[[Weather|الجو]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;padding:4px 8px 8px 8px; margin:10px;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Osi symbol.png|75px|link=http://opensource.org/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
أفضل(Multi Theft Auto)هي مصدر مفتوح هذا يعني ان اي شخص يمكن ان يساهم لجعل '''MTA'''&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
|}&lt;br /&gt;
{| width=&amp;quot;100%&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
&amp;lt;div style=&amp;quot;padding: 5px;&amp;quot; class=&amp;quot;plainlinks&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;ul style=&amp;quot;list-style: none; width: 200px; float: left;&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;'''About Multi Theft Auto'''&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;[[Archive]]&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;[[Press Coverage]]&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;[http://code.google.com/p/mtasa-blue/people/list Developers]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;ul style=&amp;quot;list-style: none; width: 200px; float: left;&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;'''Multi Theft Auto 0.5'''&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;[[Archive#Multi_Theft_Auto_0.5|Download]]&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;[[MTA 0.5r2 Known Issues|Known Issues]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;ul style=&amp;quot;list-style: none; width: 200px; float: left;&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;'''Wiki Stats'''&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;{{NUMBEROFARTICLES}} Articles&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;{{NUMBEROFPAGES}} Pages&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;{{NUMBEROFUSERS}} Registered Users&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
__NOEDITSECTION__&lt;br /&gt;
{{Languages list|ar}}&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/Client_Scripting_Functions&amp;diff=41401</id>
		<title>AR/Client Scripting Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/Client_Scripting_Functions&amp;diff=41401"/>
		<updated>2014-08-16T15:16:20Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: /* ظائف الجسمو الملابس */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pageclass class=&amp;quot;client&amp;quot;&amp;gt;&amp;lt;/pageclass&amp;gt;&lt;br /&gt;
{{Adding_Pages_to_Categories_and_Templates}}&lt;br /&gt;
This page lists all the '''client-side''' scripting functions that have been implemented and are available as native functions from the Deathmatch mod. To request a function or event, use [[Requested Functions and Events]]&lt;br /&gt;
&lt;br /&gt;
For more functions, check the [[Useful_Functions|useful functions page]].&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
==وظائف الصوت==&lt;br /&gt;
{{AR/Client_audio_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف علامات الخريطة==&lt;br /&gt;
{{AR/Client_blip_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الكاميرا==&lt;br /&gt;
{{AR/Client_camera_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الملابس==&lt;br /&gt;
{{AR/Client_Clothes and body functions}}&lt;br /&gt;
&lt;br /&gt;
==Collision shape functions==&lt;br /&gt;
{{AR/Client_collision_shape_functions}}&lt;br /&gt;
&lt;br /&gt;
==Cursor functions==&lt;br /&gt;
{{AR/Client_cursor_functions}}&lt;br /&gt;
&lt;br /&gt;
== وظائف الرسم==&lt;br /&gt;
{{AR/Drawing_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف التأثيرات==&lt;br /&gt;
{{AR/Client_Effects_functions}}&lt;br /&gt;
&lt;br /&gt;
==Element functions==&lt;br /&gt;
{{AR/Client_element_functions}}&lt;br /&gt;
&lt;br /&gt;
==Engine functions==&lt;br /&gt;
{{AR/Engine_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الحدث==&lt;br /&gt;
{{AR/Client_event_functions}}&lt;br /&gt;
&lt;br /&gt;
==Explosion functions==&lt;br /&gt;
{{AR/Client_explosion_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الملف==&lt;br /&gt;
{{AR/Client file functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الحريق==&lt;br /&gt;
{{AR/Client fire functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف واجهة المستخدم الرسومية==&lt;br /&gt;
{{AR/GUI_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف مدخلات==&lt;br /&gt;
{{AR/Client_input_functions}}&lt;br /&gt;
&lt;br /&gt;
==Marker functions==&lt;br /&gt;
{{AR/Client_marker_functions}}&lt;br /&gt;
&lt;br /&gt;
==Object functions==&lt;br /&gt;
{{AR/Client_object_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الإخراج==&lt;br /&gt;
{{AR/Client_output_functions}}&lt;br /&gt;
&lt;br /&gt;
==Ped functions==&lt;br /&gt;
{{AR/Client_ped_functions}}&lt;br /&gt;
&lt;br /&gt;
==Pickup functions==&lt;br /&gt;
{{AR/Client_pickup_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الاعب==&lt;br /&gt;
{{AR/Client_player_functions}}&lt;br /&gt;
&lt;br /&gt;
==Projectile functions==&lt;br /&gt;
{{AR/Client_projectile_functions}}&lt;br /&gt;
&lt;br /&gt;
==Radar-area functions==&lt;br /&gt;
{{AR/Client_radar-area_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الموارد==&lt;br /&gt;
{{AR/Client_resource_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف فريق==&lt;br /&gt;
{{AR/Client_team_functions}}&lt;br /&gt;
&lt;br /&gt;
==Utility functions==&lt;br /&gt;
{{AR/Client_utility_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف السيارة==&lt;br /&gt;
{{AR/Client_vehicle_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف المياه==&lt;br /&gt;
{{AR/Client_water_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف سلاح==&lt;br /&gt;
{{AR/Client_weapon_functions}}&lt;br /&gt;
&lt;br /&gt;
==Weapon Creation functions==&lt;br /&gt;
Documentation can be found [http://code.google.com/p/mtasa-blue/source/detail?r=4555 here] and [http://code.google.com/p/mtasa-blue/source/detail?r=4557 here]&lt;br /&gt;
{{AR/Client_weapon_creation_functions}}&lt;br /&gt;
&lt;br /&gt;
==World functions==&lt;br /&gt;
{{AR/Client_world_functions}}&lt;br /&gt;
&lt;br /&gt;
==XML functions==&lt;br /&gt;
{{AR/Client XML functions}}&lt;br /&gt;
&lt;br /&gt;
[[ar:Client Scripting Functions]]&lt;br /&gt;
[[en:Client Scripting Functions]]&lt;br /&gt;
[[pl:Funkcje po stronie klienta]]&lt;br /&gt;
[[it:Funzioni Client-side]]&lt;br /&gt;
[[ru:Client Scripting Functions]]&lt;br /&gt;
[[de:Clientseitige_Funktionen]]&lt;br /&gt;
[[tr:Client Taraflı Fonksiyonlar]]&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/Client_Scripting_Functions&amp;diff=41400</id>
		<title>AR/Client Scripting Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/Client_Scripting_Functions&amp;diff=41400"/>
		<updated>2014-08-16T15:15:59Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: /* وظائف الملف */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pageclass class=&amp;quot;client&amp;quot;&amp;gt;&amp;lt;/pageclass&amp;gt;&lt;br /&gt;
{{Adding_Pages_to_Categories_and_Templates}}&lt;br /&gt;
This page lists all the '''client-side''' scripting functions that have been implemented and are available as native functions from the Deathmatch mod. To request a function or event, use [[Requested Functions and Events]]&lt;br /&gt;
&lt;br /&gt;
For more functions, check the [[Useful_Functions|useful functions page]].&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
==وظائف الصوت==&lt;br /&gt;
{{AR/Client_audio_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف علامات الخريطة==&lt;br /&gt;
{{AR/Client_blip_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الكاميرا==&lt;br /&gt;
{{AR/Client_camera_functions}}&lt;br /&gt;
&lt;br /&gt;
==ظائف الجسمو الملابس==&lt;br /&gt;
{{AR/Client_Clothes and body functions}}&lt;br /&gt;
&lt;br /&gt;
==Collision shape functions==&lt;br /&gt;
{{AR/Client_collision_shape_functions}}&lt;br /&gt;
&lt;br /&gt;
==Cursor functions==&lt;br /&gt;
{{AR/Client_cursor_functions}}&lt;br /&gt;
&lt;br /&gt;
== وظائف الرسم==&lt;br /&gt;
{{AR/Drawing_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف التأثيرات==&lt;br /&gt;
{{AR/Client_Effects_functions}}&lt;br /&gt;
&lt;br /&gt;
==Element functions==&lt;br /&gt;
{{AR/Client_element_functions}}&lt;br /&gt;
&lt;br /&gt;
==Engine functions==&lt;br /&gt;
{{AR/Engine_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الحدث==&lt;br /&gt;
{{AR/Client_event_functions}}&lt;br /&gt;
&lt;br /&gt;
==Explosion functions==&lt;br /&gt;
{{AR/Client_explosion_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الملف==&lt;br /&gt;
{{AR/Client file functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الحريق==&lt;br /&gt;
{{AR/Client fire functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف واجهة المستخدم الرسومية==&lt;br /&gt;
{{AR/GUI_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف مدخلات==&lt;br /&gt;
{{AR/Client_input_functions}}&lt;br /&gt;
&lt;br /&gt;
==Marker functions==&lt;br /&gt;
{{AR/Client_marker_functions}}&lt;br /&gt;
&lt;br /&gt;
==Object functions==&lt;br /&gt;
{{AR/Client_object_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الإخراج==&lt;br /&gt;
{{AR/Client_output_functions}}&lt;br /&gt;
&lt;br /&gt;
==Ped functions==&lt;br /&gt;
{{AR/Client_ped_functions}}&lt;br /&gt;
&lt;br /&gt;
==Pickup functions==&lt;br /&gt;
{{AR/Client_pickup_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الاعب==&lt;br /&gt;
{{AR/Client_player_functions}}&lt;br /&gt;
&lt;br /&gt;
==Projectile functions==&lt;br /&gt;
{{AR/Client_projectile_functions}}&lt;br /&gt;
&lt;br /&gt;
==Radar-area functions==&lt;br /&gt;
{{AR/Client_radar-area_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الموارد==&lt;br /&gt;
{{AR/Client_resource_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف فريق==&lt;br /&gt;
{{AR/Client_team_functions}}&lt;br /&gt;
&lt;br /&gt;
==Utility functions==&lt;br /&gt;
{{AR/Client_utility_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف السيارة==&lt;br /&gt;
{{AR/Client_vehicle_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف المياه==&lt;br /&gt;
{{AR/Client_water_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف سلاح==&lt;br /&gt;
{{AR/Client_weapon_functions}}&lt;br /&gt;
&lt;br /&gt;
==Weapon Creation functions==&lt;br /&gt;
Documentation can be found [http://code.google.com/p/mtasa-blue/source/detail?r=4555 here] and [http://code.google.com/p/mtasa-blue/source/detail?r=4557 here]&lt;br /&gt;
{{AR/Client_weapon_creation_functions}}&lt;br /&gt;
&lt;br /&gt;
==World functions==&lt;br /&gt;
{{AR/Client_world_functions}}&lt;br /&gt;
&lt;br /&gt;
==XML functions==&lt;br /&gt;
{{AR/Client XML functions}}&lt;br /&gt;
&lt;br /&gt;
[[ar:Client Scripting Functions]]&lt;br /&gt;
[[en:Client Scripting Functions]]&lt;br /&gt;
[[pl:Funkcje po stronie klienta]]&lt;br /&gt;
[[it:Funzioni Client-side]]&lt;br /&gt;
[[ru:Client Scripting Functions]]&lt;br /&gt;
[[de:Clientseitige_Funktionen]]&lt;br /&gt;
[[tr:Client Taraflı Fonksiyonlar]]&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/Client_Scripting_Functions&amp;diff=41399</id>
		<title>AR/Client Scripting Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/Client_Scripting_Functions&amp;diff=41399"/>
		<updated>2014-08-16T15:15:33Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: /* الرسم ظائف */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pageclass class=&amp;quot;client&amp;quot;&amp;gt;&amp;lt;/pageclass&amp;gt;&lt;br /&gt;
{{Adding_Pages_to_Categories_and_Templates}}&lt;br /&gt;
This page lists all the '''client-side''' scripting functions that have been implemented and are available as native functions from the Deathmatch mod. To request a function or event, use [[Requested Functions and Events]]&lt;br /&gt;
&lt;br /&gt;
For more functions, check the [[Useful_Functions|useful functions page]].&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
==وظائف الصوت==&lt;br /&gt;
{{AR/Client_audio_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف علامات الخريطة==&lt;br /&gt;
{{AR/Client_blip_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الكاميرا==&lt;br /&gt;
{{AR/Client_camera_functions}}&lt;br /&gt;
&lt;br /&gt;
==ظائف الجسمو الملابس==&lt;br /&gt;
{{AR/Client_Clothes and body functions}}&lt;br /&gt;
&lt;br /&gt;
==Collision shape functions==&lt;br /&gt;
{{AR/Client_collision_shape_functions}}&lt;br /&gt;
&lt;br /&gt;
==Cursor functions==&lt;br /&gt;
{{AR/Client_cursor_functions}}&lt;br /&gt;
&lt;br /&gt;
== وظائف الرسم==&lt;br /&gt;
{{AR/Drawing_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف التأثيرات==&lt;br /&gt;
{{AR/Client_Effects_functions}}&lt;br /&gt;
&lt;br /&gt;
==Element functions==&lt;br /&gt;
{{AR/Client_element_functions}}&lt;br /&gt;
&lt;br /&gt;
==Engine functions==&lt;br /&gt;
{{AR/Engine_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الحدث==&lt;br /&gt;
{{AR/Client_event_functions}}&lt;br /&gt;
&lt;br /&gt;
==Explosion functions==&lt;br /&gt;
{{AR/Client_explosion_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الملف==&lt;br /&gt;
{{AR/Client file functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الملف==&lt;br /&gt;
{{AR/Client fire functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف واجهة المستخدم الرسومية==&lt;br /&gt;
{{AR/GUI_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف مدخلات==&lt;br /&gt;
{{AR/Client_input_functions}}&lt;br /&gt;
&lt;br /&gt;
==Marker functions==&lt;br /&gt;
{{AR/Client_marker_functions}}&lt;br /&gt;
&lt;br /&gt;
==Object functions==&lt;br /&gt;
{{AR/Client_object_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الإخراج==&lt;br /&gt;
{{AR/Client_output_functions}}&lt;br /&gt;
&lt;br /&gt;
==Ped functions==&lt;br /&gt;
{{AR/Client_ped_functions}}&lt;br /&gt;
&lt;br /&gt;
==Pickup functions==&lt;br /&gt;
{{AR/Client_pickup_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الاعب==&lt;br /&gt;
{{AR/Client_player_functions}}&lt;br /&gt;
&lt;br /&gt;
==Projectile functions==&lt;br /&gt;
{{AR/Client_projectile_functions}}&lt;br /&gt;
&lt;br /&gt;
==Radar-area functions==&lt;br /&gt;
{{AR/Client_radar-area_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الموارد==&lt;br /&gt;
{{AR/Client_resource_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف فريق==&lt;br /&gt;
{{AR/Client_team_functions}}&lt;br /&gt;
&lt;br /&gt;
==Utility functions==&lt;br /&gt;
{{AR/Client_utility_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف السيارة==&lt;br /&gt;
{{AR/Client_vehicle_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف المياه==&lt;br /&gt;
{{AR/Client_water_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف سلاح==&lt;br /&gt;
{{AR/Client_weapon_functions}}&lt;br /&gt;
&lt;br /&gt;
==Weapon Creation functions==&lt;br /&gt;
Documentation can be found [http://code.google.com/p/mtasa-blue/source/detail?r=4555 here] and [http://code.google.com/p/mtasa-blue/source/detail?r=4557 here]&lt;br /&gt;
{{AR/Client_weapon_creation_functions}}&lt;br /&gt;
&lt;br /&gt;
==World functions==&lt;br /&gt;
{{AR/Client_world_functions}}&lt;br /&gt;
&lt;br /&gt;
==XML functions==&lt;br /&gt;
{{AR/Client XML functions}}&lt;br /&gt;
&lt;br /&gt;
[[ar:Client Scripting Functions]]&lt;br /&gt;
[[en:Client Scripting Functions]]&lt;br /&gt;
[[pl:Funkcje po stronie klienta]]&lt;br /&gt;
[[it:Funzioni Client-side]]&lt;br /&gt;
[[ru:Client Scripting Functions]]&lt;br /&gt;
[[de:Clientseitige_Funktionen]]&lt;br /&gt;
[[tr:Client Taraflı Fonksiyonlar]]&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/Client_Scripting_Functions&amp;diff=41398</id>
		<title>AR/Client Scripting Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/Client_Scripting_Functions&amp;diff=41398"/>
		<updated>2014-08-16T15:15:09Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: /* Effects functions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pageclass class=&amp;quot;client&amp;quot;&amp;gt;&amp;lt;/pageclass&amp;gt;&lt;br /&gt;
{{Adding_Pages_to_Categories_and_Templates}}&lt;br /&gt;
This page lists all the '''client-side''' scripting functions that have been implemented and are available as native functions from the Deathmatch mod. To request a function or event, use [[Requested Functions and Events]]&lt;br /&gt;
&lt;br /&gt;
For more functions, check the [[Useful_Functions|useful functions page]].&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
==وظائف الصوت==&lt;br /&gt;
{{AR/Client_audio_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف علامات الخريطة==&lt;br /&gt;
{{AR/Client_blip_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الكاميرا==&lt;br /&gt;
{{AR/Client_camera_functions}}&lt;br /&gt;
&lt;br /&gt;
==ظائف الجسمو الملابس==&lt;br /&gt;
{{AR/Client_Clothes and body functions}}&lt;br /&gt;
&lt;br /&gt;
==Collision shape functions==&lt;br /&gt;
{{AR/Client_collision_shape_functions}}&lt;br /&gt;
&lt;br /&gt;
==Cursor functions==&lt;br /&gt;
{{AR/Client_cursor_functions}}&lt;br /&gt;
&lt;br /&gt;
==الرسم ظائف==&lt;br /&gt;
{{AR/Drawing_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف التأثيرات==&lt;br /&gt;
{{AR/Client_Effects_functions}}&lt;br /&gt;
&lt;br /&gt;
==Element functions==&lt;br /&gt;
{{AR/Client_element_functions}}&lt;br /&gt;
&lt;br /&gt;
==Engine functions==&lt;br /&gt;
{{AR/Engine_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الحدث==&lt;br /&gt;
{{AR/Client_event_functions}}&lt;br /&gt;
&lt;br /&gt;
==Explosion functions==&lt;br /&gt;
{{AR/Client_explosion_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الملف==&lt;br /&gt;
{{AR/Client file functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الملف==&lt;br /&gt;
{{AR/Client fire functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف واجهة المستخدم الرسومية==&lt;br /&gt;
{{AR/GUI_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف مدخلات==&lt;br /&gt;
{{AR/Client_input_functions}}&lt;br /&gt;
&lt;br /&gt;
==Marker functions==&lt;br /&gt;
{{AR/Client_marker_functions}}&lt;br /&gt;
&lt;br /&gt;
==Object functions==&lt;br /&gt;
{{AR/Client_object_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الإخراج==&lt;br /&gt;
{{AR/Client_output_functions}}&lt;br /&gt;
&lt;br /&gt;
==Ped functions==&lt;br /&gt;
{{AR/Client_ped_functions}}&lt;br /&gt;
&lt;br /&gt;
==Pickup functions==&lt;br /&gt;
{{AR/Client_pickup_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الاعب==&lt;br /&gt;
{{AR/Client_player_functions}}&lt;br /&gt;
&lt;br /&gt;
==Projectile functions==&lt;br /&gt;
{{AR/Client_projectile_functions}}&lt;br /&gt;
&lt;br /&gt;
==Radar-area functions==&lt;br /&gt;
{{AR/Client_radar-area_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الموارد==&lt;br /&gt;
{{AR/Client_resource_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف فريق==&lt;br /&gt;
{{AR/Client_team_functions}}&lt;br /&gt;
&lt;br /&gt;
==Utility functions==&lt;br /&gt;
{{AR/Client_utility_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف السيارة==&lt;br /&gt;
{{AR/Client_vehicle_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف المياه==&lt;br /&gt;
{{AR/Client_water_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف سلاح==&lt;br /&gt;
{{AR/Client_weapon_functions}}&lt;br /&gt;
&lt;br /&gt;
==Weapon Creation functions==&lt;br /&gt;
Documentation can be found [http://code.google.com/p/mtasa-blue/source/detail?r=4555 here] and [http://code.google.com/p/mtasa-blue/source/detail?r=4557 here]&lt;br /&gt;
{{AR/Client_weapon_creation_functions}}&lt;br /&gt;
&lt;br /&gt;
==World functions==&lt;br /&gt;
{{AR/Client_world_functions}}&lt;br /&gt;
&lt;br /&gt;
==XML functions==&lt;br /&gt;
{{AR/Client XML functions}}&lt;br /&gt;
&lt;br /&gt;
[[ar:Client Scripting Functions]]&lt;br /&gt;
[[en:Client Scripting Functions]]&lt;br /&gt;
[[pl:Funkcje po stronie klienta]]&lt;br /&gt;
[[it:Funzioni Client-side]]&lt;br /&gt;
[[ru:Client Scripting Functions]]&lt;br /&gt;
[[de:Clientseitige_Funktionen]]&lt;br /&gt;
[[tr:Client Taraflı Fonksiyonlar]]&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/Client_Scripting_Functions&amp;diff=41397</id>
		<title>AR/Client Scripting Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/Client_Scripting_Functions&amp;diff=41397"/>
		<updated>2014-08-16T15:14:46Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: /* Blip functions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pageclass class=&amp;quot;client&amp;quot;&amp;gt;&amp;lt;/pageclass&amp;gt;&lt;br /&gt;
{{Adding_Pages_to_Categories_and_Templates}}&lt;br /&gt;
This page lists all the '''client-side''' scripting functions that have been implemented and are available as native functions from the Deathmatch mod. To request a function or event, use [[Requested Functions and Events]]&lt;br /&gt;
&lt;br /&gt;
For more functions, check the [[Useful_Functions|useful functions page]].&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
==وظائف الصوت==&lt;br /&gt;
{{AR/Client_audio_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف علامات الخريطة==&lt;br /&gt;
{{AR/Client_blip_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الكاميرا==&lt;br /&gt;
{{AR/Client_camera_functions}}&lt;br /&gt;
&lt;br /&gt;
==ظائف الجسمو الملابس==&lt;br /&gt;
{{AR/Client_Clothes and body functions}}&lt;br /&gt;
&lt;br /&gt;
==Collision shape functions==&lt;br /&gt;
{{AR/Client_collision_shape_functions}}&lt;br /&gt;
&lt;br /&gt;
==Cursor functions==&lt;br /&gt;
{{AR/Client_cursor_functions}}&lt;br /&gt;
&lt;br /&gt;
==الرسم ظائف==&lt;br /&gt;
{{AR/Drawing_functions}}&lt;br /&gt;
&lt;br /&gt;
==Effects functions==&lt;br /&gt;
{{AR/Client_Effects_functions}}&lt;br /&gt;
&lt;br /&gt;
==Element functions==&lt;br /&gt;
{{AR/Client_element_functions}}&lt;br /&gt;
&lt;br /&gt;
==Engine functions==&lt;br /&gt;
{{AR/Engine_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الحدث==&lt;br /&gt;
{{AR/Client_event_functions}}&lt;br /&gt;
&lt;br /&gt;
==Explosion functions==&lt;br /&gt;
{{AR/Client_explosion_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الملف==&lt;br /&gt;
{{AR/Client file functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الملف==&lt;br /&gt;
{{AR/Client fire functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف واجهة المستخدم الرسومية==&lt;br /&gt;
{{AR/GUI_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف مدخلات==&lt;br /&gt;
{{AR/Client_input_functions}}&lt;br /&gt;
&lt;br /&gt;
==Marker functions==&lt;br /&gt;
{{AR/Client_marker_functions}}&lt;br /&gt;
&lt;br /&gt;
==Object functions==&lt;br /&gt;
{{AR/Client_object_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الإخراج==&lt;br /&gt;
{{AR/Client_output_functions}}&lt;br /&gt;
&lt;br /&gt;
==Ped functions==&lt;br /&gt;
{{AR/Client_ped_functions}}&lt;br /&gt;
&lt;br /&gt;
==Pickup functions==&lt;br /&gt;
{{AR/Client_pickup_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الاعب==&lt;br /&gt;
{{AR/Client_player_functions}}&lt;br /&gt;
&lt;br /&gt;
==Projectile functions==&lt;br /&gt;
{{AR/Client_projectile_functions}}&lt;br /&gt;
&lt;br /&gt;
==Radar-area functions==&lt;br /&gt;
{{AR/Client_radar-area_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الموارد==&lt;br /&gt;
{{AR/Client_resource_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف فريق==&lt;br /&gt;
{{AR/Client_team_functions}}&lt;br /&gt;
&lt;br /&gt;
==Utility functions==&lt;br /&gt;
{{AR/Client_utility_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف السيارة==&lt;br /&gt;
{{AR/Client_vehicle_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف المياه==&lt;br /&gt;
{{AR/Client_water_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف سلاح==&lt;br /&gt;
{{AR/Client_weapon_functions}}&lt;br /&gt;
&lt;br /&gt;
==Weapon Creation functions==&lt;br /&gt;
Documentation can be found [http://code.google.com/p/mtasa-blue/source/detail?r=4555 here] and [http://code.google.com/p/mtasa-blue/source/detail?r=4557 here]&lt;br /&gt;
{{AR/Client_weapon_creation_functions}}&lt;br /&gt;
&lt;br /&gt;
==World functions==&lt;br /&gt;
{{AR/Client_world_functions}}&lt;br /&gt;
&lt;br /&gt;
==XML functions==&lt;br /&gt;
{{AR/Client XML functions}}&lt;br /&gt;
&lt;br /&gt;
[[ar:Client Scripting Functions]]&lt;br /&gt;
[[en:Client Scripting Functions]]&lt;br /&gt;
[[pl:Funkcje po stronie klienta]]&lt;br /&gt;
[[it:Funzioni Client-side]]&lt;br /&gt;
[[ru:Client Scripting Functions]]&lt;br /&gt;
[[de:Clientseitige_Funktionen]]&lt;br /&gt;
[[tr:Client Taraflı Fonksiyonlar]]&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Client_Scripting_Functions&amp;diff=41396</id>
		<title>Client Scripting Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Client_Scripting_Functions&amp;diff=41396"/>
		<updated>2014-08-16T15:14:11Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: /* Camera Functions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pageclass class=&amp;quot;client&amp;quot;&amp;gt;&amp;lt;/pageclass&amp;gt;&lt;br /&gt;
{{Adding_Pages_to_Categories_and_Templates}}&lt;br /&gt;
This page lists all the '''client-side''' scripting functions that have been implemented and are available as native functions from the Deathmatch mod. To request a function or event, use [[Requested Functions and Events]]&lt;br /&gt;
&lt;br /&gt;
For more functions, check the [[Useful_Functions|useful functions page]].&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
==Audio functions==&lt;br /&gt;
{{Client_audio_functions}}&lt;br /&gt;
&lt;br /&gt;
==Blip functions==&lt;br /&gt;
{{Client_blip_functions}}&lt;br /&gt;
&lt;br /&gt;
==Camera functions==&lt;br /&gt;
{{Client_camera_functions}}&lt;br /&gt;
&lt;br /&gt;
==Clothes and body functions==&lt;br /&gt;
{{Client_Clothes and body functions}}&lt;br /&gt;
&lt;br /&gt;
==Collision shape functions==&lt;br /&gt;
{{Client_collision_shape_functions}}&lt;br /&gt;
&lt;br /&gt;
==Cursor functions==&lt;br /&gt;
{{Client_cursor_functions}}&lt;br /&gt;
&lt;br /&gt;
==Drawing functions==&lt;br /&gt;
{{Drawing_functions}}&lt;br /&gt;
&lt;br /&gt;
==Effects functions==&lt;br /&gt;
{{Client_Effects_functions}}&lt;br /&gt;
&lt;br /&gt;
==Element functions==&lt;br /&gt;
{{Client_element_functions}}&lt;br /&gt;
&lt;br /&gt;
==Engine functions==&lt;br /&gt;
{{Engine_functions}}&lt;br /&gt;
&lt;br /&gt;
==Event functions==&lt;br /&gt;
{{Client_event_functions}}&lt;br /&gt;
&lt;br /&gt;
==Explosion functions==&lt;br /&gt;
{{Client_explosion_functions}}&lt;br /&gt;
&lt;br /&gt;
==File functions==&lt;br /&gt;
{{Client file functions}}&lt;br /&gt;
&lt;br /&gt;
==Fire functions==&lt;br /&gt;
{{Client fire functions}}&lt;br /&gt;
&lt;br /&gt;
==GUI functions==&lt;br /&gt;
{{GUI_functions}}&lt;br /&gt;
&lt;br /&gt;
==Input functions==&lt;br /&gt;
{{Client_input_functions}}&lt;br /&gt;
&lt;br /&gt;
==Marker functions==&lt;br /&gt;
{{Client_marker_functions}}&lt;br /&gt;
&lt;br /&gt;
==Object functions==&lt;br /&gt;
{{Client_object_functions}}&lt;br /&gt;
&lt;br /&gt;
==Output functions==&lt;br /&gt;
{{Client_output_functions}}&lt;br /&gt;
&lt;br /&gt;
==Ped functions==&lt;br /&gt;
{{Client_ped_functions}}&lt;br /&gt;
&lt;br /&gt;
==Pickup functions==&lt;br /&gt;
{{Client_pickup_functions}}&lt;br /&gt;
&lt;br /&gt;
==Player functions==&lt;br /&gt;
{{Client_player_functions}}&lt;br /&gt;
&lt;br /&gt;
==Projectile functions==&lt;br /&gt;
{{Client_projectile_functions}}&lt;br /&gt;
&lt;br /&gt;
==Radar-area functions==&lt;br /&gt;
{{Client_radar-area_functions}}&lt;br /&gt;
&lt;br /&gt;
==Resource functions==&lt;br /&gt;
{{Client_resource_functions}}&lt;br /&gt;
&lt;br /&gt;
==Team functions==&lt;br /&gt;
{{Client_team_functions}}&lt;br /&gt;
&lt;br /&gt;
==Utility functions==&lt;br /&gt;
{{Client_utility_functions}}&lt;br /&gt;
&lt;br /&gt;
==Vehicle functions==&lt;br /&gt;
{{Client_vehicle_functions}}&lt;br /&gt;
&lt;br /&gt;
==Water functions==&lt;br /&gt;
{{Client_water_functions}}&lt;br /&gt;
&lt;br /&gt;
==Weapon functions==&lt;br /&gt;
{{Client_weapon_functions}}&lt;br /&gt;
&lt;br /&gt;
==Weapon Creation functions==&lt;br /&gt;
Documentation can be found [http://code.google.com/p/mtasa-blue/source/detail?r=4555 here] and [http://code.google.com/p/mtasa-blue/source/detail?r=4557 here]&lt;br /&gt;
{{Client_weapon_creation_functions}}&lt;br /&gt;
&lt;br /&gt;
==World functions==&lt;br /&gt;
{{Client_world_functions}}&lt;br /&gt;
&lt;br /&gt;
==XML functions==&lt;br /&gt;
{{Client XML functions}}&lt;br /&gt;
&lt;br /&gt;
[[ar:Client Scripting Functions]]&lt;br /&gt;
[[pl:Funkcje po stronie klienta]]&lt;br /&gt;
[[it:Funzioni Client-side]]&lt;br /&gt;
[[ru:Client Scripting Functions]]&lt;br /&gt;
[[es:Funciones del cliente]]&lt;br /&gt;
[[de:Clientseitige_Funktionen]]&lt;br /&gt;
[[tr:Client Taraflı Fonksiyonlar]]&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Client_Scripting_Functions&amp;diff=41395</id>
		<title>Client Scripting Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Client_Scripting_Functions&amp;diff=41395"/>
		<updated>2014-08-16T15:13:56Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: /* وظائف الكاميرا */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pageclass class=&amp;quot;client&amp;quot;&amp;gt;&amp;lt;/pageclass&amp;gt;&lt;br /&gt;
{{Adding_Pages_to_Categories_and_Templates}}&lt;br /&gt;
This page lists all the '''client-side''' scripting functions that have been implemented and are available as native functions from the Deathmatch mod. To request a function or event, use [[Requested Functions and Events]]&lt;br /&gt;
&lt;br /&gt;
For more functions, check the [[Useful_Functions|useful functions page]].&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
==Audio functions==&lt;br /&gt;
{{Client_audio_functions}}&lt;br /&gt;
&lt;br /&gt;
==Blip functions==&lt;br /&gt;
{{Client_blip_functions}}&lt;br /&gt;
&lt;br /&gt;
==Camera Functions==&lt;br /&gt;
{{Client_camera_functions}}&lt;br /&gt;
&lt;br /&gt;
==Clothes and body functions==&lt;br /&gt;
{{Client_Clothes and body functions}}&lt;br /&gt;
&lt;br /&gt;
==Collision shape functions==&lt;br /&gt;
{{Client_collision_shape_functions}}&lt;br /&gt;
&lt;br /&gt;
==Cursor functions==&lt;br /&gt;
{{Client_cursor_functions}}&lt;br /&gt;
&lt;br /&gt;
==Drawing functions==&lt;br /&gt;
{{Drawing_functions}}&lt;br /&gt;
&lt;br /&gt;
==Effects functions==&lt;br /&gt;
{{Client_Effects_functions}}&lt;br /&gt;
&lt;br /&gt;
==Element functions==&lt;br /&gt;
{{Client_element_functions}}&lt;br /&gt;
&lt;br /&gt;
==Engine functions==&lt;br /&gt;
{{Engine_functions}}&lt;br /&gt;
&lt;br /&gt;
==Event functions==&lt;br /&gt;
{{Client_event_functions}}&lt;br /&gt;
&lt;br /&gt;
==Explosion functions==&lt;br /&gt;
{{Client_explosion_functions}}&lt;br /&gt;
&lt;br /&gt;
==File functions==&lt;br /&gt;
{{Client file functions}}&lt;br /&gt;
&lt;br /&gt;
==Fire functions==&lt;br /&gt;
{{Client fire functions}}&lt;br /&gt;
&lt;br /&gt;
==GUI functions==&lt;br /&gt;
{{GUI_functions}}&lt;br /&gt;
&lt;br /&gt;
==Input functions==&lt;br /&gt;
{{Client_input_functions}}&lt;br /&gt;
&lt;br /&gt;
==Marker functions==&lt;br /&gt;
{{Client_marker_functions}}&lt;br /&gt;
&lt;br /&gt;
==Object functions==&lt;br /&gt;
{{Client_object_functions}}&lt;br /&gt;
&lt;br /&gt;
==Output functions==&lt;br /&gt;
{{Client_output_functions}}&lt;br /&gt;
&lt;br /&gt;
==Ped functions==&lt;br /&gt;
{{Client_ped_functions}}&lt;br /&gt;
&lt;br /&gt;
==Pickup functions==&lt;br /&gt;
{{Client_pickup_functions}}&lt;br /&gt;
&lt;br /&gt;
==Player functions==&lt;br /&gt;
{{Client_player_functions}}&lt;br /&gt;
&lt;br /&gt;
==Projectile functions==&lt;br /&gt;
{{Client_projectile_functions}}&lt;br /&gt;
&lt;br /&gt;
==Radar-area functions==&lt;br /&gt;
{{Client_radar-area_functions}}&lt;br /&gt;
&lt;br /&gt;
==Resource functions==&lt;br /&gt;
{{Client_resource_functions}}&lt;br /&gt;
&lt;br /&gt;
==Team functions==&lt;br /&gt;
{{Client_team_functions}}&lt;br /&gt;
&lt;br /&gt;
==Utility functions==&lt;br /&gt;
{{Client_utility_functions}}&lt;br /&gt;
&lt;br /&gt;
==Vehicle functions==&lt;br /&gt;
{{Client_vehicle_functions}}&lt;br /&gt;
&lt;br /&gt;
==Water functions==&lt;br /&gt;
{{Client_water_functions}}&lt;br /&gt;
&lt;br /&gt;
==Weapon functions==&lt;br /&gt;
{{Client_weapon_functions}}&lt;br /&gt;
&lt;br /&gt;
==Weapon Creation functions==&lt;br /&gt;
Documentation can be found [http://code.google.com/p/mtasa-blue/source/detail?r=4555 here] and [http://code.google.com/p/mtasa-blue/source/detail?r=4557 here]&lt;br /&gt;
{{Client_weapon_creation_functions}}&lt;br /&gt;
&lt;br /&gt;
==World functions==&lt;br /&gt;
{{Client_world_functions}}&lt;br /&gt;
&lt;br /&gt;
==XML functions==&lt;br /&gt;
{{Client XML functions}}&lt;br /&gt;
&lt;br /&gt;
[[ar:Client Scripting Functions]]&lt;br /&gt;
[[pl:Funkcje po stronie klienta]]&lt;br /&gt;
[[it:Funzioni Client-side]]&lt;br /&gt;
[[ru:Client Scripting Functions]]&lt;br /&gt;
[[es:Funciones del cliente]]&lt;br /&gt;
[[de:Clientseitige_Funktionen]]&lt;br /&gt;
[[tr:Client Taraflı Fonksiyonlar]]&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Client_Scripting_Functions&amp;diff=41394</id>
		<title>Client Scripting Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Client_Scripting_Functions&amp;diff=41394"/>
		<updated>2014-08-16T15:13:02Z</updated>

		<summary type="html">&lt;p&gt;Tn6eL Gamer: /* Camera functions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pageclass class=&amp;quot;client&amp;quot;&amp;gt;&amp;lt;/pageclass&amp;gt;&lt;br /&gt;
{{Adding_Pages_to_Categories_and_Templates}}&lt;br /&gt;
This page lists all the '''client-side''' scripting functions that have been implemented and are available as native functions from the Deathmatch mod. To request a function or event, use [[Requested Functions and Events]]&lt;br /&gt;
&lt;br /&gt;
For more functions, check the [[Useful_Functions|useful functions page]].&lt;br /&gt;
__TOC__&lt;br /&gt;
&lt;br /&gt;
==Audio functions==&lt;br /&gt;
{{Client_audio_functions}}&lt;br /&gt;
&lt;br /&gt;
==Blip functions==&lt;br /&gt;
{{Client_blip_functions}}&lt;br /&gt;
&lt;br /&gt;
==وظائف الكاميرا==&lt;br /&gt;
{{Client_camera_functions}}&lt;br /&gt;
&lt;br /&gt;
==Clothes and body functions==&lt;br /&gt;
{{Client_Clothes and body functions}}&lt;br /&gt;
&lt;br /&gt;
==Collision shape functions==&lt;br /&gt;
{{Client_collision_shape_functions}}&lt;br /&gt;
&lt;br /&gt;
==Cursor functions==&lt;br /&gt;
{{Client_cursor_functions}}&lt;br /&gt;
&lt;br /&gt;
==Drawing functions==&lt;br /&gt;
{{Drawing_functions}}&lt;br /&gt;
&lt;br /&gt;
==Effects functions==&lt;br /&gt;
{{Client_Effects_functions}}&lt;br /&gt;
&lt;br /&gt;
==Element functions==&lt;br /&gt;
{{Client_element_functions}}&lt;br /&gt;
&lt;br /&gt;
==Engine functions==&lt;br /&gt;
{{Engine_functions}}&lt;br /&gt;
&lt;br /&gt;
==Event functions==&lt;br /&gt;
{{Client_event_functions}}&lt;br /&gt;
&lt;br /&gt;
==Explosion functions==&lt;br /&gt;
{{Client_explosion_functions}}&lt;br /&gt;
&lt;br /&gt;
==File functions==&lt;br /&gt;
{{Client file functions}}&lt;br /&gt;
&lt;br /&gt;
==Fire functions==&lt;br /&gt;
{{Client fire functions}}&lt;br /&gt;
&lt;br /&gt;
==GUI functions==&lt;br /&gt;
{{GUI_functions}}&lt;br /&gt;
&lt;br /&gt;
==Input functions==&lt;br /&gt;
{{Client_input_functions}}&lt;br /&gt;
&lt;br /&gt;
==Marker functions==&lt;br /&gt;
{{Client_marker_functions}}&lt;br /&gt;
&lt;br /&gt;
==Object functions==&lt;br /&gt;
{{Client_object_functions}}&lt;br /&gt;
&lt;br /&gt;
==Output functions==&lt;br /&gt;
{{Client_output_functions}}&lt;br /&gt;
&lt;br /&gt;
==Ped functions==&lt;br /&gt;
{{Client_ped_functions}}&lt;br /&gt;
&lt;br /&gt;
==Pickup functions==&lt;br /&gt;
{{Client_pickup_functions}}&lt;br /&gt;
&lt;br /&gt;
==Player functions==&lt;br /&gt;
{{Client_player_functions}}&lt;br /&gt;
&lt;br /&gt;
==Projectile functions==&lt;br /&gt;
{{Client_projectile_functions}}&lt;br /&gt;
&lt;br /&gt;
==Radar-area functions==&lt;br /&gt;
{{Client_radar-area_functions}}&lt;br /&gt;
&lt;br /&gt;
==Resource functions==&lt;br /&gt;
{{Client_resource_functions}}&lt;br /&gt;
&lt;br /&gt;
==Team functions==&lt;br /&gt;
{{Client_team_functions}}&lt;br /&gt;
&lt;br /&gt;
==Utility functions==&lt;br /&gt;
{{Client_utility_functions}}&lt;br /&gt;
&lt;br /&gt;
==Vehicle functions==&lt;br /&gt;
{{Client_vehicle_functions}}&lt;br /&gt;
&lt;br /&gt;
==Water functions==&lt;br /&gt;
{{Client_water_functions}}&lt;br /&gt;
&lt;br /&gt;
==Weapon functions==&lt;br /&gt;
{{Client_weapon_functions}}&lt;br /&gt;
&lt;br /&gt;
==Weapon Creation functions==&lt;br /&gt;
Documentation can be found [http://code.google.com/p/mtasa-blue/source/detail?r=4555 here] and [http://code.google.com/p/mtasa-blue/source/detail?r=4557 here]&lt;br /&gt;
{{Client_weapon_creation_functions}}&lt;br /&gt;
&lt;br /&gt;
==World functions==&lt;br /&gt;
{{Client_world_functions}}&lt;br /&gt;
&lt;br /&gt;
==XML functions==&lt;br /&gt;
{{Client XML functions}}&lt;br /&gt;
&lt;br /&gt;
[[ar:Client Scripting Functions]]&lt;br /&gt;
[[pl:Funkcje po stronie klienta]]&lt;br /&gt;
[[it:Funzioni Client-side]]&lt;br /&gt;
[[ru:Client Scripting Functions]]&lt;br /&gt;
[[es:Funciones del cliente]]&lt;br /&gt;
[[de:Clientseitige_Funktionen]]&lt;br /&gt;
[[tr:Client Taraflı Fonksiyonlar]]&lt;/div&gt;</summary>
		<author><name>Tn6eL Gamer</name></author>
	</entry>
</feed>