<?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=GabWas</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=GabWas"/>
	<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/wiki/Special:Contributions/GabWas"/>
	<updated>2026-05-08T20:29:56Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.3</generator>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=User_talk:JHXP&amp;diff=50228</id>
		<title>User talk:JHXP</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=User_talk:JHXP&amp;diff=50228"/>
		<updated>2017-01-01T19:00:54Z</updated>

		<summary type="html">&lt;p&gt;GabWas: Created page with &amp;quot;Thanks for banning those a$$holes. --~~~~&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Thanks for banning those a$$holes. --[[User:GabWas|GabWas]] ([[User talk:GabWas|talk]]) 18:58, 1 January 2017 (UTC)&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=PL/playSound&amp;diff=49611</id>
		<title>PL/playSound</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=PL/playSound&amp;diff=49611"/>
		<updated>2016-10-22T19:40:35Z</updated>

		<summary type="html">&lt;p&gt;GabWas: 3 mies. nikomu to nie przeszkadzało i przeszkadzać nie będzie. Nigdzie to nie jest zabraniane, więc jeżeli chcesz to możesz robić to samo.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ &lt;br /&gt;
{{PL/Client function}}&lt;br /&gt;
Funkcja ta tworzy [[element]] [[sound|dźwięku]] oraz odtwarza go dla lokalnego gracza, od razu po wywołaniu funkcji.&lt;br /&gt;
Akutalnie wspierane formaty audio to MP3, WAV, OGG, RIFF, MOD, XM, IT, S3M oraz PLS.&lt;br /&gt;
{{PL/Note|Ze względu na wydajność, podczas korzystania z funkcji playSound do efektów (np. dźwięki strzelania), zalecana jest konwersja pliku audio z np. MP3 (stereo) do WAV (mono) z częstotliwością 22050 Hz lub niższą. Warto również dodać limit odtwarzania dźwięku np. raz na 50ms.}}&lt;br /&gt;
==Składnia== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;element playSound ( string soundPath, [ bool looped = false, bool throttled = true ] )&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
{{OOP||[[Sound]]}}&lt;br /&gt;
===Wymagane argumenty=== &lt;br /&gt;
*'''soundPath:''' [[filepath|Ścieżka]] lub adres URL do pliku dźwiękowego, który chcesz odtworzyć.&lt;br /&gt;
ⓘ Pliki odtwarzane ze ścieżki, muszą być wcześniej zapisane w pliku [[PL/meta.xml|meta.xml]] korzystając z tagu &amp;lt;file /&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Opcjonalne argumenty=== &lt;br /&gt;
{{PL/OptionalArg}} &lt;br /&gt;
*'''looped:''' [[Boolean]] decydujący o tym, czy dźwięk ma zostać zapętlony. Aby tak się stało, użyj ''true''. Domyślnie ''false''.&lt;br /&gt;
ⓘ Zapętlanie nie jest możliwe w przypadku stream'ów (np. radio).&lt;br /&gt;
{{New feature/item|3.0150|1.5||&lt;br /&gt;
*'''throttled:''' [[Boolean]] decydujący o tym, czy dźwięk z adresu URL ma być odtwarzany z niską przepustowością łącza. Aby tak się stało, użyj ''true''. Domyślnie ''true''.&lt;br /&gt;
ⓘ Odtwarzanie z niską przepustowością łącza dotyczy tylko plików odtwarzanych z adresów URL.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Wynik==&lt;br /&gt;
Zwraca [[element]] [[sound|dźwięku]] jeżeli został on pomyślnie stworzony. W przeciwnym wypadku zwraca ''false''.&lt;br /&gt;
&lt;br /&gt;
==Przykłady==&lt;br /&gt;
&amp;lt;section show=&amp;quot;true&amp;quot; name=&amp;quot;Przykład nr 1&amp;quot; class=&amp;quot;client&amp;quot;&amp;gt;&lt;br /&gt;
Ten przykład odtwarza graczowi po wejściu na serwer radio RMF MAXXX przez 30 sekund.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function poWejsciuNaSerwer()&lt;br /&gt;
   local radio = playSound( &amp;quot;http://files.kusmierz.be/rmf/rmfmaxxx.pls&amp;quot; ) -- odtwarzamy stream radia z adresu URL...&lt;br /&gt;
   setSoundVolume( radio, 0.5 ) -- ...i ustawiamy mu głośność na 50%, żeby nikogo nie irytowało&lt;br /&gt;
   setTimer( function() destroyElement(radio) end, 30*1000, 1 ) -- tworzymy również timer, który po 30 sekundach wyłączy radio&lt;br /&gt;
end&lt;br /&gt;
addEventHandler ( &amp;quot;onClientPlayerJoin&amp;quot;, getRootElement(), poWejsciuNaSerwer ) -- a na koniec podłączamy funkcję pod eventHandler&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
''Autor: [[User:GabWas|GabWas]]; utworzono: 23:32, 20 Lip 2016 (CEST); ostatnio edytowano: 11:37, 21 Lip 2016 (CEST)''&lt;br /&gt;
&amp;lt;br/&amp;gt;''Author: [[User:GabWas|GabWas]]; created: 21:32, 20 Jul 2016 (UTC); last edited: 09:37, 21 Jul 2016 (UTC)''&lt;br /&gt;
&lt;br /&gt;
==Zobacz również==&lt;br /&gt;
{{Client_audio_functions}}&lt;br /&gt;
[[en:playSound]]&lt;br /&gt;
[[AR:playSound]]&lt;br /&gt;
[[DE:playSound]]&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Talk:PL/Where_to_buy_GTASA&amp;diff=49218</id>
		<title>Talk:PL/Where to buy GTASA</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Talk:PL/Where_to_buy_GTASA&amp;diff=49218"/>
		<updated>2016-09-20T20:36:06Z</updated>

		<summary type="html">&lt;p&gt;GabWas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Byłem nieco niekontaktujący gdy to tłumaczyłem i zapomniałem o tym tłumaczeniu xD Więcej nie tłumaczę po nieprzespanej nocy. --[[User:ThePiotrek|ThePiotrek]] ([[User talk:ThePiotrek|talk]]) 14:57, 25 August 2016 (UTC)&lt;br /&gt;
&amp;lt;br/&amp;gt;Przed każdym tłumaczeniem skonsultuj się z lekarzem lub farmaceutą... xD --[[User:GabWas|GabWas]] ([[User talk:GabWas|talk]]) 20:35, 20 September 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Talk:PL/Where_to_buy_GTASA&amp;diff=49217</id>
		<title>Talk:PL/Where to buy GTASA</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Talk:PL/Where_to_buy_GTASA&amp;diff=49217"/>
		<updated>2016-09-20T20:35:46Z</updated>

		<summary type="html">&lt;p&gt;GabWas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Byłem nieco niekontaktujący gdy to tłumaczyłem i zapomniałem o tym tłumaczeniu xD Więcej nie tłumaczę po nieprzespanej nocy. --[[User:ThePiotrek|ThePiotrek]] ([[User talk:ThePiotrek|talk]]) 14:57, 25 August 2016 (UTC)&lt;br /&gt;
Przed każdym tłumaczeniem skonsultuj się z lekarzem lub farmaceutą... xD --[[User:GabWas|GabWas]] ([[User talk:GabWas|talk]]) 20:35, 20 September 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=User:GabWas&amp;diff=49216</id>
		<title>User:GabWas</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=User:GabWas&amp;diff=49216"/>
		<updated>2016-09-20T20:34:27Z</updated>

		<summary type="html">&lt;p&gt;GabWas: Nieładnie tak edytować czyjeś profile ;-;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Stop copying my profile look xD&amp;lt;br/&amp;gt;&lt;br /&gt;
[[File:Polish_flag.gif]]&lt;br /&gt;
&lt;br /&gt;
==Moje tłumaczenia / My translations==&lt;br /&gt;
&amp;lt;!-- *[[PL/]]&amp;lt;br/&amp;gt; --&amp;gt;&lt;br /&gt;
===Funkcje / Functions===&lt;br /&gt;
*[[PL/createBlip]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/createPed]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/createPickup]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/getPlayerPing]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/getRandomPlayer]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/getServerName]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/givePlayerMoney]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/outputChatBox]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/playSound]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/playSound3D]]&amp;lt;br/&amp;gt;&lt;br /&gt;
===Zdarzenia / Events===&lt;br /&gt;
*brak (jeszcze) / none (yet)&lt;br /&gt;
===Pozostałe / Others===&lt;br /&gt;
*brak (jeszcze) / none (yet)&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=File:Just_a_plus.png&amp;diff=49215</id>
		<title>File:Just a plus.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=File:Just_a_plus.png&amp;diff=49215"/>
		<updated>2016-09-20T20:12:19Z</updated>

		<summary type="html">&lt;p&gt;GabWas: god help us all&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;god help us all&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=File:Download_arrow.png&amp;diff=49214</id>
		<title>File:Download arrow.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=File:Download_arrow.png&amp;diff=49214"/>
		<updated>2016-09-20T20:11:04Z</updated>

		<summary type="html">&lt;p&gt;GabWas: work plz&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;work plz&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=File:This_is_so_stupid.png&amp;diff=49213</id>
		<title>File:This is so stupid.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=File:This_is_so_stupid.png&amp;diff=49213"/>
		<updated>2016-09-20T20:09:34Z</updated>

		<summary type="html">&lt;p&gt;GabWas: GabWas uploaded a new version of &amp;amp;quot;File:This is so stupid.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I swear to God if the dimensions are wrong again I don't know what I'm going to do, but something definitely.&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=File:This_is_so_stupid.png&amp;diff=49212</id>
		<title>File:This is so stupid.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=File:This_is_so_stupid.png&amp;diff=49212"/>
		<updated>2016-09-20T19:39:37Z</updated>

		<summary type="html">&lt;p&gt;GabWas: I swear to God if the dimensions are wrong again I don't know what I'm going to do, but something definitely.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I swear to God if the dimensions are wrong again I don't know what I'm going to do, but something definitely.&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=File:Plus-icon.png&amp;diff=49211</id>
		<title>File:Plus-icon.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=File:Plus-icon.png&amp;diff=49211"/>
		<updated>2016-09-20T19:34:33Z</updated>

		<summary type="html">&lt;p&gt;GabWas: GabWas uploaded a new version of &amp;amp;quot;File:Plus-icon.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=File:Plus-icon.png&amp;diff=49210</id>
		<title>File:Plus-icon.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=File:Plus-icon.png&amp;diff=49210"/>
		<updated>2016-09-20T19:33:03Z</updated>

		<summary type="html">&lt;p&gt;GabWas: GabWas uploaded a new version of &amp;amp;quot;File:Plus-icon.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=File:Plus-icon.png&amp;diff=49209</id>
		<title>File:Plus-icon.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=File:Plus-icon.png&amp;diff=49209"/>
		<updated>2016-09-20T19:27:03Z</updated>

		<summary type="html">&lt;p&gt;GabWas: GabWas uploaded a new version of &amp;amp;quot;File:Plus-icon.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=File:Plus-icon.png&amp;diff=49208</id>
		<title>File:Plus-icon.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=File:Plus-icon.png&amp;diff=49208"/>
		<updated>2016-09-20T19:18:02Z</updated>

		<summary type="html">&lt;p&gt;GabWas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=File:Star.png&amp;diff=49207</id>
		<title>File:Star.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=File:Star.png&amp;diff=49207"/>
		<updated>2016-09-20T19:14:45Z</updated>

		<summary type="html">&lt;p&gt;GabWas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=PL/Vehicle_IDs&amp;diff=49195</id>
		<title>PL/Vehicle IDs</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=PL/Vehicle_IDs&amp;diff=49195"/>
		<updated>2016-09-18T20:59:36Z</updated>

		<summary type="html">&lt;p&gt;GabWas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''&amp;lt;tłumaczenie w trakcie tworzenia&amp;gt;'' --[[User:GabWas|GabWas]] ([[User talk:GabWas|talk]]) 20:59, 18 September 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=PL/Main_Page&amp;diff=49191</id>
		<title>PL/Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=PL/Main_Page&amp;diff=49191"/>
		<updated>2016-09-18T20:56:00Z</updated>

		<summary type="html">&lt;p&gt;GabWas: Redirected page to Strona główna&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Strona główna]]&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=PL/copyAccountData&amp;diff=49184</id>
		<title>PL/copyAccountData</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=PL/copyAccountData&amp;diff=49184"/>
		<updated>2016-09-18T19:42:06Z</updated>

		<summary type="html">&lt;p&gt;GabWas: Zmiana szablonów na te spolszczone.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ &lt;br /&gt;
{{PL/Server function}}&lt;br /&gt;
Funkcja ta pozwala na skopiowanie wszystkich wartości konta z jednego [[account|konta]] na drugie.&lt;br /&gt;
&lt;br /&gt;
==Składnia== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
bool copyAccountData ( account theAccount, account fromAccount )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
{{PL/OOP||[[account]]:copyDataTo||}}&lt;br /&gt;
&lt;br /&gt;
===Wymagane parametry=== &lt;br /&gt;
*'''theAccount:''' Konto na które chcesz skopiować wartość.&lt;br /&gt;
*'''fromAccount:''' Konto z którego kopiujesz wartość.&lt;br /&gt;
&lt;br /&gt;
===Zwracana wartość===&lt;br /&gt;
Funkcja ta zwraca ''prawdę'' jeżeli konta zostały podane prawidłowo, lub ''fałsz'' w przeciwnym wypadku.&lt;br /&gt;
&lt;br /&gt;
==Przykład==&lt;br /&gt;
Po wpisaniu komendy /skopiuj kopiuje wartości z konta losowego gracza i przypisuje je na nasze konto&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
addCommandHandler(&amp;quot;skopiuj&amp;quot;, function(plr, cmd)&lt;br /&gt;
	local acc = getPlayerAccount(plr) -- pobieramy nasze konto&lt;br /&gt;
	local acc2 = getPlayerAccount(getRandomPlayer()) -- pobieramy konto losowego gracza&lt;br /&gt;
	copyAccountData(acc2, acc) -- kopiujemy z konta 'acc2' wszystkie wartości i przypisujemy je do konca 'acc'&lt;br /&gt;
end)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Zobacz również==&lt;br /&gt;
{{Account_functions}}&lt;br /&gt;
[[ru:copyAccountData]]&lt;br /&gt;
[[ar:copyAccountData]]&lt;br /&gt;
[[en:copyAccountData]]&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Template:Player_events&amp;diff=49183</id>
		<title>Template:Player events</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Template:Player_events&amp;diff=49183"/>
		<updated>2016-09-18T19:36:47Z</updated>

		<summary type="html">&lt;p&gt;GabWas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*[[onPlayerBan]]&lt;br /&gt;
*[[onPlayerChat]]&lt;br /&gt;
*[[onPlayerPrivateMessage]]&lt;br /&gt;
*[[onPlayerConnect]]&lt;br /&gt;
*[[onPlayerChangeNick]]&lt;br /&gt;
*[[onPlayerLogin]]&lt;br /&gt;
*[[onPlayerLogout]]&lt;br /&gt;
*[[onPlayerDamage]]&lt;br /&gt;
*[[onPlayerJoin]]&lt;br /&gt;
*[[onPlayerQuit]]&lt;br /&gt;
*[[onPlayerSpawn]]&lt;br /&gt;
*[[onPlayerWasted]]&lt;br /&gt;
*[[onPlayerTarget]]&lt;br /&gt;
*[[onPlayerVehicleEnter]]&lt;br /&gt;
*[[onPlayerVehicleExit]]&lt;br /&gt;
{{New items|3.0160|1.5.3-9921|&lt;br /&gt;
*[[onPlayerWeaponFire]]&lt;br /&gt;
}}&lt;br /&gt;
*[[onPlayerWeaponSwitch]]&lt;br /&gt;
*[[onPlayerMarkerHit]]&lt;br /&gt;
*[[onPlayerMarkerLeave]]&lt;br /&gt;
*[[onPlayerPickupHit]]&lt;br /&gt;
*[[onPlayerPickupUse]]&lt;br /&gt;
*[[onPlayerClick]]&lt;br /&gt;
*[[onPlayerContact]]&lt;br /&gt;
*[[onPlayerStealthKill]]&lt;br /&gt;
*[[onPlayerMute]]&lt;br /&gt;
*[[onPlayerUnmute]]&lt;br /&gt;
*[[onPlayerCommand]]&lt;br /&gt;
{{New items|3.0152|1.5.1-7633|&lt;br /&gt;
*[[onPlayerACInfo]]&lt;br /&gt;
}}&lt;br /&gt;
*[[onPlayerModInfo]]&lt;br /&gt;
*[[onPlayerVoiceStart]]&lt;br /&gt;
*[[onPlayerVoiceStop]]&lt;br /&gt;
*[[onPlayerScreenShot]]&lt;br /&gt;
{{New items|3.0142|1.4.1-7295|&lt;br /&gt;
*[[onPlayerNetworkStatus]]&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Events templates]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Template:CEF_functions&amp;diff=49182</id>
		<title>Template:CEF functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Template:CEF_functions&amp;diff=49182"/>
		<updated>2016-09-18T19:36:31Z</updated>

		<summary type="html">&lt;p&gt;GabWas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{New items|3.0150|1.5|&lt;br /&gt;
*[[createBrowser]]&lt;br /&gt;
*[[executeBrowserJavascript]]&lt;br /&gt;
*[[focusBrowser]]&lt;br /&gt;
{{New items|3.0160|1.5.3-9912|&lt;br /&gt;
*[[resizeBrowser]]&lt;br /&gt;
}}&lt;br /&gt;
*[[isBrowserDomainBlocked]]&lt;br /&gt;
*[[isBrowserFocused]]&lt;br /&gt;
*[[isBrowserLoading]]&lt;br /&gt;
*[[getBrowserProperty]]&lt;br /&gt;
*[[getBrowserSettings]]&lt;br /&gt;
*[[getBrowserTitle]]&lt;br /&gt;
*[[getBrowserURL]]&lt;br /&gt;
*[[injectBrowserMouseDown]]&lt;br /&gt;
*[[injectBrowserMouseMove]]&lt;br /&gt;
*[[injectBrowserMouseUp]]&lt;br /&gt;
*[[injectBrowserMouseWheel]]&lt;br /&gt;
{{New items|3.0153|1.5.3|&lt;br /&gt;
*[[isBrowserSupported]]&lt;br /&gt;
|}}&lt;br /&gt;
*[[loadBrowserURL]]&lt;br /&gt;
*[[setBrowserProperty]]&lt;br /&gt;
*[[setBrowserRenderingPaused]]&lt;br /&gt;
*[[setBrowserVolume]]&lt;br /&gt;
*[[requestBrowserDomains]]&lt;br /&gt;
|}}&lt;br /&gt;
{{New items|3.0151|1.5.1|&lt;br /&gt;
*[[setBrowserAjaxHandler]]&lt;br /&gt;
*[[getBrowserSource]]&lt;br /&gt;
*[[toggleBrowserDevTools]]&lt;br /&gt;
|}}&lt;br /&gt;
===GUI Functions=== &amp;lt;!-- Please see Template:GUI_functions when updating this section! --&amp;gt;&lt;br /&gt;
*[[guiCreateBrowser]]&lt;br /&gt;
*[[guiGetBrowser]]&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Functions templates]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Template:File_functions&amp;diff=49181</id>
		<title>Template:File functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Template:File_functions&amp;diff=49181"/>
		<updated>2016-09-18T19:36:07Z</updated>

		<summary type="html">&lt;p&gt;GabWas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*[[fileClose]]&lt;br /&gt;
*[[fileCopy]]&lt;br /&gt;
*[[fileCreate]]&lt;br /&gt;
*[[fileDelete]]&lt;br /&gt;
*[[fileExists]]&lt;br /&gt;
*[[fileFlush]]&lt;br /&gt;
{{New items|3.0160|1.6-7446|&lt;br /&gt;
*[[fileGetPath]]&lt;br /&gt;
|}}&lt;br /&gt;
*[[fileGetPos]]&lt;br /&gt;
*[[fileGetSize]]&lt;br /&gt;
*[[fileIsEOF]]&lt;br /&gt;
*[[fileOpen]]&lt;br /&gt;
*[[fileRead]]&lt;br /&gt;
*[[fileRename]]&lt;br /&gt;
*[[fileSetPos]]&lt;br /&gt;
*[[fileWrite]]&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Functions templates]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Template:File_functions&amp;diff=49180</id>
		<title>Template:File functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Template:File_functions&amp;diff=49180"/>
		<updated>2016-09-18T19:33:55Z</updated>

		<summary type="html">&lt;p&gt;GabWas: Fixed fileGetPath information, from which version it works.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*[[fileClose]]&lt;br /&gt;
*[[fileCopy]]&lt;br /&gt;
*[[fileCreate]]&lt;br /&gt;
*[[fileDelete]]&lt;br /&gt;
*[[fileExists]]&lt;br /&gt;
*[[fileFlush]]&lt;br /&gt;
{{New feature/item|3.0160|1.6|7446|&lt;br /&gt;
*[[fileGetPath]]&lt;br /&gt;
|}}&lt;br /&gt;
*[[fileGetPos]]&lt;br /&gt;
*[[fileGetSize]]&lt;br /&gt;
*[[fileIsEOF]]&lt;br /&gt;
*[[fileOpen]]&lt;br /&gt;
*[[fileRead]]&lt;br /&gt;
*[[fileRename]]&lt;br /&gt;
*[[fileSetPos]]&lt;br /&gt;
*[[fileWrite]]&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Functions templates]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Template:CEF_functions&amp;diff=49179</id>
		<title>Template:CEF functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Template:CEF_functions&amp;diff=49179"/>
		<updated>2016-09-18T19:31:15Z</updated>

		<summary type="html">&lt;p&gt;GabWas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{New items|3.0150|1.5|&lt;br /&gt;
*[[createBrowser]]&lt;br /&gt;
*[[executeBrowserJavascript]]&lt;br /&gt;
*[[focusBrowser]]&lt;br /&gt;
{{New feature/item|3.0160|1.5.3|9912|&lt;br /&gt;
*[[resizeBrowser]]&lt;br /&gt;
}}&lt;br /&gt;
*[[isBrowserDomainBlocked]]&lt;br /&gt;
*[[isBrowserFocused]]&lt;br /&gt;
*[[isBrowserLoading]]&lt;br /&gt;
*[[getBrowserProperty]]&lt;br /&gt;
*[[getBrowserSettings]]&lt;br /&gt;
*[[getBrowserTitle]]&lt;br /&gt;
*[[getBrowserURL]]&lt;br /&gt;
*[[injectBrowserMouseDown]]&lt;br /&gt;
*[[injectBrowserMouseMove]]&lt;br /&gt;
*[[injectBrowserMouseUp]]&lt;br /&gt;
*[[injectBrowserMouseWheel]]&lt;br /&gt;
{{New items|3.0153|1.5.3|&lt;br /&gt;
*[[isBrowserSupported]]&lt;br /&gt;
|}}&lt;br /&gt;
*[[loadBrowserURL]]&lt;br /&gt;
*[[setBrowserProperty]]&lt;br /&gt;
*[[setBrowserRenderingPaused]]&lt;br /&gt;
*[[setBrowserVolume]]&lt;br /&gt;
*[[requestBrowserDomains]]&lt;br /&gt;
|}}&lt;br /&gt;
{{New items|3.0151|1.5.1|&lt;br /&gt;
*[[setBrowserAjaxHandler]]&lt;br /&gt;
*[[getBrowserSource]]&lt;br /&gt;
*[[toggleBrowserDevTools]]&lt;br /&gt;
|}}&lt;br /&gt;
===GUI Functions=== &amp;lt;!-- Please see Template:GUI_functions when updating this section! --&amp;gt;&lt;br /&gt;
*[[guiCreateBrowser]]&lt;br /&gt;
*[[guiGetBrowser]]&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Functions templates]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Template:CEF_functions&amp;diff=49178</id>
		<title>Template:CEF functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Template:CEF_functions&amp;diff=49178"/>
		<updated>2016-09-18T19:30:30Z</updated>

		<summary type="html">&lt;p&gt;GabWas: Added resizeBrowser function.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{New items|3.0150|1.5|&lt;br /&gt;
*[[createBrowser]]&lt;br /&gt;
*[[executeBrowserJavascript]]&lt;br /&gt;
*[[focusBrowser]]&lt;br /&gt;
*[[isBrowserDomainBlocked]]&lt;br /&gt;
*[[isBrowserFocused]]&lt;br /&gt;
*[[isBrowserLoading]]&lt;br /&gt;
*[[getBrowserProperty]]&lt;br /&gt;
*[[getBrowserSettings]]&lt;br /&gt;
*[[getBrowserTitle]]&lt;br /&gt;
*[[getBrowserURL]]&lt;br /&gt;
*[[injectBrowserMouseDown]]&lt;br /&gt;
*[[injectBrowserMouseMove]]&lt;br /&gt;
*[[injectBrowserMouseUp]]&lt;br /&gt;
*[[injectBrowserMouseWheel]]&lt;br /&gt;
{{New items|3.0153|1.5.3|&lt;br /&gt;
*[[isBrowserSupported]]&lt;br /&gt;
|}}&lt;br /&gt;
*[[loadBrowserURL]]&lt;br /&gt;
*[[setBrowserProperty]]&lt;br /&gt;
*[[setBrowserRenderingPaused]]&lt;br /&gt;
*[[setBrowserVolume]]&lt;br /&gt;
*[[requestBrowserDomains]]&lt;br /&gt;
{{New feature/item|3.0160|1.5.3|9912|&lt;br /&gt;
*[[resizeBrowser]]&lt;br /&gt;
}}&lt;br /&gt;
|}}&lt;br /&gt;
{{New items|3.0151|1.5.1|&lt;br /&gt;
*[[setBrowserAjaxHandler]]&lt;br /&gt;
*[[getBrowserSource]]&lt;br /&gt;
*[[toggleBrowserDevTools]]&lt;br /&gt;
|}}&lt;br /&gt;
===GUI Functions=== &amp;lt;!-- Please see Template:GUI_functions when updating this section! --&amp;gt;&lt;br /&gt;
*[[guiCreateBrowser]]&lt;br /&gt;
*[[guiGetBrowser]]&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Functions templates]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Template:Player_events&amp;diff=49177</id>
		<title>Template:Player events</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Template:Player_events&amp;diff=49177"/>
		<updated>2016-09-18T19:27:57Z</updated>

		<summary type="html">&lt;p&gt;GabWas: Added onPlayerWeaponFire event.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*[[onPlayerBan]]&lt;br /&gt;
*[[onPlayerChat]]&lt;br /&gt;
*[[onPlayerPrivateMessage]]&lt;br /&gt;
*[[onPlayerConnect]]&lt;br /&gt;
*[[onPlayerChangeNick]]&lt;br /&gt;
*[[onPlayerLogin]]&lt;br /&gt;
*[[onPlayerLogout]]&lt;br /&gt;
*[[onPlayerDamage]]&lt;br /&gt;
*[[onPlayerJoin]]&lt;br /&gt;
*[[onPlayerQuit]]&lt;br /&gt;
*[[onPlayerSpawn]]&lt;br /&gt;
*[[onPlayerWasted]]&lt;br /&gt;
*[[onPlayerTarget]]&lt;br /&gt;
*[[onPlayerVehicleEnter]]&lt;br /&gt;
*[[onPlayerVehicleExit]]&lt;br /&gt;
{{New feature/item|3.0160|1.5.3|9921|&lt;br /&gt;
*[[onPlayerWeaponFire]]&lt;br /&gt;
}}&lt;br /&gt;
*[[onPlayerWeaponSwitch]]&lt;br /&gt;
*[[onPlayerMarkerHit]]&lt;br /&gt;
*[[onPlayerMarkerLeave]]&lt;br /&gt;
*[[onPlayerPickupHit]]&lt;br /&gt;
*[[onPlayerPickupUse]]&lt;br /&gt;
*[[onPlayerClick]]&lt;br /&gt;
*[[onPlayerContact]]&lt;br /&gt;
*[[onPlayerStealthKill]]&lt;br /&gt;
*[[onPlayerMute]]&lt;br /&gt;
*[[onPlayerUnmute]]&lt;br /&gt;
*[[onPlayerCommand]]&lt;br /&gt;
{{New items|3.0152|1.5.1-7633|&lt;br /&gt;
*[[onPlayerACInfo]]&lt;br /&gt;
}}&lt;br /&gt;
*[[onPlayerModInfo]]&lt;br /&gt;
*[[onPlayerVoiceStart]]&lt;br /&gt;
*[[onPlayerVoiceStop]]&lt;br /&gt;
*[[onPlayerScreenShot]]&lt;br /&gt;
{{New items|3.0142|1.4.1-7295|&lt;br /&gt;
*[[onPlayerNetworkStatus]]&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Events templates]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Template:Useful_Functions&amp;diff=49172</id>
		<title>Template:Useful Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Template:Useful_Functions&amp;diff=49172"/>
		<updated>2016-09-18T15:36:44Z</updated>

		<summary type="html">&lt;p&gt;GabWas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== ACL functions ===&lt;br /&gt;
*[[getPlayerAcls]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns a table of all ACL groups on a player.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isPlayerInACL]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function checks if a player element is in an ACL group.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[renameAclGroup]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function gives an existing ACL group a new name.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Account functions ===&lt;br /&gt;
*[[setAccountName]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function is used to change an existing account's name.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Camera functions ===&lt;br /&gt;
*[[smoothMoveCamera]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to create a cinematic camera flight.&lt;br /&gt;
&lt;br /&gt;
=== Cursor functions ===&lt;br /&gt;
*[[getCursorMoveOn]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function checks in which way the cursor is currently moving.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Drawing functions ===&lt;br /&gt;
*[[dxDrawAnimWindow]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function draws an animated 2D window on the screen.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawCircle]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function draws a number of 2D lines in order to achieve a circle shape on the screen.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawTriangle]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This is a function that will create a triangle with dx lines.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawLinedRectangle]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This is a function that will create a rectangle outline with dx lines.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawGifImage]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function simulates the effect of a GIF image by using image sprites in 2D.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawImage3D]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function draws a 3D image in GTA world.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawImageOnElement]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function draws an image on any element.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawLoading]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function draws a loading bar on the screen.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawRectangle3D]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function draws a 3D rectangle in GTA world.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawTextOnElement]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function draws a text on any element.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxGetFontSizeFromHeight]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function calculates the font size from given height.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxGetRealFontHeight]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function calculates the height of a font.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Effects functions ===&lt;br /&gt;
*[[attachEffect]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function allows you attach an effect to an element.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Elements functions === &lt;br /&gt;
*[[getElementSpeed]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns the specified element's speed in m/s, km/h or mph.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getElementsInDimension]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns a table of elements that are in the specified dimension.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getElementsWithinMarker]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns a table of elements that are within a marker's collision shape.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isElementInPhotograph]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function checks if an element is in the player's camera picture area.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isElementInRange]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to check if an element's range to a main point is within the maximum range.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isElementMoving]]&amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function checks if an element is moving.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isElementWithinAColShape]]&amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function checks if an element is within a collision shape element.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[multi_check]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function checks one element to many, handy and clean.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[setElementSpeed]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to set the speed of an element in kph or mph units.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Events ===&lt;br /&gt;
*[[onVehicleWeaponFire]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This code implements an event that is triggered when a player in a vehicle fires a vehicle's weapon.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Input functions ===&lt;br /&gt;
*[[bindControlKeys]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to bind each key bound to a control individually. Doing this bypasses a little MTA restriction.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getBoundControls]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns a table of control names that are bound to the specified key.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[unbindControlKeys]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to unbind each key bound to a control individually. Use this function with [[bindControlKeys]].&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Data functions === &lt;br /&gt;
*[[capitalize]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function capitalizes a given string.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[convertNumber]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function converts and formats large numbers.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[convertServerTickToTimeStamp]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function converts server ticks to a unix timestamp.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[convertTextToSpeech]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function converts the provided text to a speech in the provided language which players can hear.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[findRotation]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function takes two points and returns the direction from point A to point B.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[FormatDate]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function formats a date on the basis of a format string and returns it.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[generateString]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function generates a random string with any characters.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[generateRandomASCIIString]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns a random string which uses ASCII characters. &amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getAge]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function calculates the age of a given birthday.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getDistanceBetweenPointAndSegment2D]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function takes point coordinates and line (a segment) starting and ending coordinates. It returns the shortest distance between the point and the line.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getEasterDate]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns easter date monthday and month for a given year.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getKeyFromValueInTable]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns the key of the specified value in a table.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getOffsetFromXYZ]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to take an entity and a position and calculate the relative offset between them accounting for rotations.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getPointFromDistanceRotation]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function finds a point based on a starting point, direction and distance.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getRGColorFromPercentage]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia', sans-serif; font-size:smaller;&amp;quot;&amp;gt;»This function returns two integers representing red and green colors according to the specified percentage.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getScreenRotationFromWorldPosition]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns a screen relative rotation to a world position.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getTimestamp]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns the UNIX timestamp of a specified date and time.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isLeapYear]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns a boolean representing if a given year is a leap year.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isValidMail]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function checks whether a provided e-mail string is valid.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[removeHex]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function is used to remove hex color codes from strings.&lt;br /&gt;
*[[RGBToHex]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns a string representing the color in hexadecimal.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[toHex]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function converts a decimal number to a hexadecimal number, as a fix to be used client-side.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[secondsToTimeDesc]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function converts a plain seconds-integer into a user-friendly time description.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[string.count]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function counts the amount of occurences of a string in a string.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[string.explode]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function splits a string at a given separator pattern and returns a table with the pieces.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[switch]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function allows the value of a variable or expression to control the flow of program execution via a multiway branch.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[var dump]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function outputs information about one or more variables using outputConsole.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[wavelengthToRGBA]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function converts a physical wavelength of light to a RGBA color.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== GUI functions === &lt;br /&gt;
*[[centerWindow]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function centers a CEGUI window element responsively in any resolution.&amp;lt;/span&amp;gt;&lt;br /&gt;
=====Comboboxes=====&lt;br /&gt;
*[[guiComboBoxAdjustHeight]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function adjusts a CEGUI combobox element to have the correct height.&amp;lt;/span&amp;gt;&lt;br /&gt;
=====Gridlists=====&lt;br /&gt;
*[[getGridListRowIndexFromText]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns the GridList row index from the specified text.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[guiGridListGetSelectedText]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns a string containing the inner text of a selected gridlist item.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[guiGridListAddPlayers]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function add all online players to a grid list.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isTextInGridList]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function checks if some text exist or not in the GridList.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Math functions ===&lt;br /&gt;
*[[mathNumber]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function is a workaround for the client-side floating-point precision of 24-bits.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[math.hypot]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns the Hypotenuse of the triangle given by sides x and y.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[math.percent]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns a percentage from two number values.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[math.round]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» Rounds a number whereas the number of decimals to keep and the method may be set.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Ped functions ===&lt;br /&gt;
*[[getAlivePlayers (Client)|getAlivePlayers]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns a table of the alive players client-side.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getAlivePlayersInTeam]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns a table of the alive players in a team.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getOnlineAdmins]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns a table of all logged-in administrators.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getPedMaxHealth]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns a pedestrians's maximum health by converting it from their maximum health stat.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getPedMaxOxygenLevel]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns a ped's maximum oxygen level by converting it from their maximum underwater stamina stat.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getPlayerFromNamePart]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns a player from partial name.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getPlayerFromSerial]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns a player from their serial.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getPlayersInGroup]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns all Players In Group .&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getGuestPlayers]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function gets a players not login or players Guest .&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getPlayersByData]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns a table of players that have the specified data name.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getPlayersInPhotograph]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns a table of all players in photograph.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isPedAiming]]&amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function checks if a pedestrian is aiming their weapon.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isPedDrivingVehicle]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function checks if a specified pedestrian is driving a vehicle.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isPlayerInTeam]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function checks if a player is in a specified team.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isPedAimingNearPed]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This is similar to isPedAiming but uses a colshape to be more precise.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getPedEyesPosition]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to get peds eyes position.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Resource functions ===&lt;br /&gt;
*[[getResourceSettings]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns a table of the resource settings.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getResourceScripts]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns a table of the resource scripts.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[refreshResource]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function refreshes your resource if you changed any of the files&lt;br /&gt;
&lt;br /&gt;
=== Sound functions ===&lt;br /&gt;
*[[isSoundFinished]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function checks if a sound element has finished.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Table functions ===&lt;br /&gt;
*[[rangeToTable]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function converts a string range to a table containing number values.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[setTableProtected]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function protects a table and makes it read-only.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[table.copy]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function copies a whole table and all the tables in that table.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[table.compare]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function checks whether two given tables are equal.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[table.empty]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function checks whether a table is empty.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[table.map]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function goes through a table and replaces every field with the return of the passed function, where the field's value is passed as first argument and optionally more arguments.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[table.merge]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function merges two or more tables together.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[table.random]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function retrieves a random value from a table.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[table.size]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns the absolute size of a table.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[table.removeValue]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function removes a specified value from a table.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Team functions ===&lt;br /&gt;
*[[getTeamFromColor]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns a team element by the specified color.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getTeamWithFewestPlayers]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns a team element with least players of all the specified teams.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Vehicle funcions === &lt;br /&gt;
*[[getRandomVehicle]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function gets a random vehicle.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getValidVehicleModels]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns a table of all valid vehicle models.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getVehicleRespawnPosition]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to get the respawn position of a vehicle.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getVehiclesCountByType]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns the amount of vehicles by the given type as an integer value.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isVehicleEmpty]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function checks whether a vehicle is empty.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isVehicleOccupied]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function checks if a specified vehicle is occupied.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isVehicleOnRoof]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function checks whether vehicle is on roof.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[setVehicleGravityPoint]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function sets a vehicle's gravity in the direction of a 3 dimensional coordinate with the strength specified.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Weapon functions === &lt;br /&gt;
*[[getJetpackWeaponsEnabled]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns a table of enabled weapons usable on a jetpack.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== XML functions ===&lt;br /&gt;
*[[getXMLNodes]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns all children of a XML node.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Utility ===&lt;br /&gt;
*[[Check]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function checks if its arguments are of the right type and calls the error-function if one is not.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[coroutine.resume]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function applies a fix for hidden coroutine error messages.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[callClientFunction]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to call any client-side function from the server's side.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[callServerFunction]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to call any server-side function from the client's side.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getBanFromName]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This functions returns the ban of the given playername.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getCurrentFPS]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns the frames per second at which GTA: SA is running.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[IfElse]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns one of two values based on a boolean expression.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isCursorOnElement]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function checks whether the cursor is in a particular area.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isMouseInPosition]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to check whether the mouse cursor/pointer is within a rectangular position.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[iterElements]] &amp;lt;span style=&amp;quot;color:gray; font-family:'Georgia',sans-serif; font-size:smaller;&amp;quot;&amp;gt;» This function returns ''a time-saving'' iterator for your for-loops.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Useful Functions]]&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=User:GabWas&amp;diff=49003</id>
		<title>User:GabWas</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=User:GabWas&amp;diff=49003"/>
		<updated>2016-09-03T16:43:48Z</updated>

		<summary type="html">&lt;p&gt;GabWas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Stop copying my profile look xD&amp;lt;br/&amp;gt;&lt;br /&gt;
[[File:Polish_flag.gif]]&lt;br /&gt;
&lt;br /&gt;
==Moje tłumaczenia / My translations==&lt;br /&gt;
&amp;lt;!-- *[[PL/]]&amp;lt;br/&amp;gt; --&amp;gt;&lt;br /&gt;
===Funkcje / Functions===&lt;br /&gt;
*[[PL/createBlip]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/createPed]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/getPlayerPing]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/getRandomPlayer]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/getServerName]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/givePlayerMoney]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/outputChatBox]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/playSound]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/playSound3D]]&amp;lt;br/&amp;gt;&lt;br /&gt;
===Zdarzenia / Events===&lt;br /&gt;
*brak (jeszcze) / none (yet)&lt;br /&gt;
===Pozostałe / Others===&lt;br /&gt;
*brak (jeszcze) / none (yet)&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=User:GabWas&amp;diff=49002</id>
		<title>User:GabWas</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=User:GabWas&amp;diff=49002"/>
		<updated>2016-09-03T16:43:06Z</updated>

		<summary type="html">&lt;p&gt;GabWas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Stop copying my profile look xD&lt;br /&gt;
[[File:Polish_flag.gif]]&lt;br /&gt;
&lt;br /&gt;
==Moje tłumaczenia / My translations==&lt;br /&gt;
&amp;lt;!-- *[[PL/]]&amp;lt;br/&amp;gt; --&amp;gt;&lt;br /&gt;
===Funkcje / Functions===&lt;br /&gt;
*[[PL/createBlip]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/createPed]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/getPlayerPing]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/getRandomPlayer]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/getServerName]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/givePlayerMoney]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/outputChatBox]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/playSound]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/playSound3D]]&amp;lt;br/&amp;gt;&lt;br /&gt;
===Zdarzenia / Events===&lt;br /&gt;
*brak (jeszcze) / none (yet)&lt;br /&gt;
===Pozostałe / Others===&lt;br /&gt;
*brak (jeszcze) / none (yet)&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=User_talk:GabWas&amp;diff=48894</id>
		<title>User talk:GabWas</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=User_talk:GabWas&amp;diff=48894"/>
		<updated>2016-08-21T17:30:17Z</updated>

		<summary type="html">&lt;p&gt;GabWas: Blanked the page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=User_talk:SPLM&amp;diff=48893</id>
		<title>User talk:SPLM</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=User_talk:SPLM&amp;diff=48893"/>
		<updated>2016-08-21T17:29:35Z</updated>

		<summary type="html">&lt;p&gt;GabWas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I was just kidding, I have no problem with that. It's nice that somebody like it, don't be sorry :P --[[User:GabWas|GabWas]] ([[User talk:GabWas|talk]]) 17:29, 21 August 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=User_talk:SPLM&amp;diff=48875</id>
		<title>User talk:SPLM</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=User_talk:SPLM&amp;diff=48875"/>
		<updated>2016-08-21T12:50:40Z</updated>

		<summary type="html">&lt;p&gt;GabWas: Created page with &amp;quot;Oh you coping machine v: --~~~~&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Oh you coping machine v: --[[User:GabWas|GabWas]] ([[User talk:GabWas|talk]]) 12:50, 21 August 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Strona_g%C5%82%C3%B3wna&amp;diff=48851</id>
		<title>Strona główna</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Strona_g%C5%82%C3%B3wna&amp;diff=48851"/>
		<updated>2016-08-15T10:38:25Z</updated>

		<summary type="html">&lt;p&gt;GabWas: &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-left: 15px; padding-right: 15px; height: 100%;&amp;quot;&amp;gt;&lt;br /&gt;
[[File:Mtalogo.png|left|100px|link=http://wiki.multitheftauto.com/]]'''Witaj na polskim wiki [[PL/Multi Theft Auto|Multi Theft Auto]].''' Znajdziesz tutaj wiele informacji na temat korzystania Multi Theft Auto.&lt;br /&gt;
 &lt;br /&gt;
Jest wiele [[PL/How you can help|rzeczy które możesz zrobić]], aby pomóc nam w rozwijaniu MTA - stworzyć mapę, tryb gry, pomóc w dokumentowaniu funkcji, napisać przykładowy kod, napisać poradnik lub po prostu grać w MTA i zgłaszać błędy, które znajdziesz.&lt;br /&gt;
&lt;br /&gt;
Jeśli masz jakieś pytania bądź problemy związane z pisaniem skryptów, zapytaj nas na [[PL/IRC Channel|kanale IRC]].&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;[ Stop playing with yourself ]&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; background: #FFFCF2;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right; width: 32px;&amp;quot;&amp;gt;[[File:Input-gaming.png‎|link=]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Graj&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;background: #FFEEAA; border: 1px solid #FFCD19;&amp;quot;&amp;gt;&lt;br /&gt;
[[File:Go-down.png|link=http://mtasa.com/]] ''' [http://mtasa.com/ Pobierz Multi Theft Auto: San Andreas {{Current Version|full}}]'''&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[PL/Where to buy GTASA|Gdzie kupić GTASA]] [[Image:Plflag.png|Artykuł w języku polskim]]&lt;br /&gt;
* [[PL/Polish_MTA_version|Polska wersja MTA:SA]] [[Image:Plflag.png|Artykuł w języku polskim]]&lt;br /&gt;
* [[PL/Client Manual|Obsługa klienta]] [[Image:Plflag.png|Artykuł w języku polskim]]&lt;br /&gt;
&amp;lt;!-- * [[PL/Changes_in_{{padleft:|3|{{Current Version|full}}}}| Zmiany w {{padleft:|3|{{Current Version|full}}}}]] --&amp;gt;&lt;br /&gt;
* [[PL/Changes_in_{{padleft:|5|{{Current Version|full}}}}| Zmiany w {{padleft:|5|{{Current Version|full}}}}]] [[Image:Plflag.png|Artykuł w języku polskim]]&lt;br /&gt;
* [[PL/Known_Issues_-_FAQ|Znane problemy]] [[Image:Plflag.png|Artykuł w języku polskim]]/[[Image:usen.gif|Artykuł w języku angielskim]]&lt;br /&gt;
* [[PL/Migracja_z_MTA:Race_do_MTA:SA_1.0.x|Migracja z MTA:Race do MTA:SA {{padleft:|3|{{Current Version|full}}}}]] [[Image:Plflag.png|Artykuł w języku polskim]]&lt;br /&gt;
* [[PL/Server Manual|Obsługa serwera]] [[Image:Plflag.png|Artykuł w języku polskim]]&lt;br /&gt;
* [[Map manager|Menadżer map]] [[Image:usen.gif|Artykuł w języku angielskim]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Edytor map&amp;lt;/h3&amp;gt;&lt;br /&gt;
*[[PL/Resource:Editor|Instrukcja]] [[Image:Plflag.png|Artykuł w języku polskim]]&lt;br /&gt;
*[[PL/Resource:Editor/EDF|Edytor Właściwości Mapy]] [[Image:Plflag.png|Artykuł w języku polskim]]/[[Image:usen.gif|Artykuł w języku angielskim]]&lt;br /&gt;
*[[Resource:Editor/Plugins|Pluginy]] [[Image:usen.gif|Artykuł w języku angielskim]]&lt;br /&gt;
*[[PL/Resource:Editor#FAQ|Najczęściej zadawane pytania]] [[Image:Plflag.png|Artykuł w języku polskim]]&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:Package-x-generic.png‎|link=]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Bazy danych&amp;lt;/h3&amp;gt;&lt;br /&gt;
Ta sekcja opisuje wszystkie możliwości Lua umożliwiane przez MTA lub zasoby.&lt;br /&gt;
* [[PL/Category:Resource|Katalog zasobów]] - Musisz je poznać, aby tworzyć właściwe skrypty&lt;br /&gt;
* [[PL/Client side scripts|Skrypty po stronie klienta]] [[Image:Plflag.png|Artykuł w języku polskim]]&lt;br /&gt;
* [[Modules|Moduły]] [[Image:usen.gif|Artykuł w języku angielskim]]&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‎‎‎|link=]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Rozwijanie Multi Theft Auto&amp;lt;/h3&amp;gt;&lt;br /&gt;
[[File:Go-down.png|link=http://nightly.mtasa.com/]] [http://nightly.mtasa.com/ Nightly builds]&lt;br /&gt;
* [[Compiling_MTASA|Kompilacja MTASA na Windows]] [[Image:usen.gif|Artykuł w języku angielskim]]&lt;br /&gt;
* [[Building_MTASA_Server_on_GNU_Linux|Kompilacja MTASA na GNU/Linux]] [[Image:usen.gif|Artykuł w języku angielskim]]&lt;br /&gt;
* [[Coding guidelines|Wytyczne dot. pisania kodu]] [[Image:usen.gif|Artykuł w języku angielskim]]&lt;br /&gt;
* [https://github.com/multitheftauto/mtasa-blue Repozytorium Github]&lt;br /&gt;
* [[Roadmap]] [[Image:usen.gif|Artykuł w języku angielskim]]&lt;br /&gt;
* [http://bugs.mtasa.com/ Bugtracker]&lt;br /&gt;
* [[Branches|Branże]] [[Image:usen.gif|Artykuł w języku angielskim]]&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|link=]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Polskie Wiki - jak możesz pomóc?&amp;lt;/h3&amp;gt;&lt;br /&gt;
* Pomóż tłumaczyć hasła, przy których jest angielska flaga&lt;br /&gt;
* Twórz hasła, które istnieją w angielskiej wiki, a których u nas brakuje&lt;br /&gt;
** Staraj się, aby nowe artykuły miały takie same nazwy (angielskie), a jedynie poprzedzane były przedrostkiem PL/ - przykład: [[PL/Character_Skins]]&lt;br /&gt;
* Zwołaj znajomych, informuj na forach, niech inni dowiedzą się o takiej możliwości!&lt;br /&gt;
* Jeśli nie masz pomysłu na edycję, wykonaj coś z [[PL/Todo|tej listy]]. Możesz ją także rozbudować.&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‎|link=]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Społeczność&amp;lt;/h3&amp;gt;&lt;br /&gt;
* [http://forum.multitheftauto.com/ Forum]&lt;br /&gt;
* IRC: [irc://irc.multitheftauto.com/mta irc.multitheftauto.com #mta]&lt;br /&gt;
* [http://community.mtasa.com/ MTA Community]  - dodaj lub pobierz skrypty&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|link=]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Skryptowanie&amp;lt;/h3&amp;gt;&lt;br /&gt;
* [[Wstęp do pisania skryptów|Wstęp do pisania skryptów]] [[Image:Plflag.png|Artykuł w języku polskim]]/[[Image:usen.gif|Artykuł w języku angielskim]]&lt;br /&gt;
* [[Introduction to Scripting the GUI|Wstęp do pisania skryptów GUI]] [[Image:usen.gif|Artykuł w języku angielskim]]&lt;br /&gt;
* [[Debugging|Poradnik debugowania]] [[Image:usen.gif|Artykuł w języku angielskim]] - Jak znaleźć błędy w swoich skryptach&lt;br /&gt;
* [[Resources|Wstęp do zasobów]] [[Image:usen.gif|Artykuł w języku angielskim]]&lt;br /&gt;
** [[Resource Web Access|Dostęp WWW do zasobów]] [[Image:usen.gif|Artykuł w języku angielskim]] - Jak pisać strony WWW z wykorzystaniem zasobów&lt;br /&gt;
** [[:Category:Resource|Katalog zasobów]] [[Image:usen.gif|Artykuł w języku angielskim]]&lt;br /&gt;
** [[PL/Meta.xml|Meta.xml]] [[Image:Plflag.png|Artykuł w języku polskim]] - każdy zasób jest definiowany przez plik meta&lt;br /&gt;
** [[ACL]] [[Image:usen.gif|Artykuł w języku angielskim]] - Access Control List, który jest niezbędny, aby skrypty działały&lt;br /&gt;
* [[Writing_Gamemodes|Pisanie gamemodów]] [[Image:usen.gif|Artykuł w języku angielskim]]&lt;br /&gt;
* [[Useful_Functions|Przydatne funkcje]] [[Image:usen.gif|Artykuł w języku angielskim]]&lt;br /&gt;
Linki na fora&lt;br /&gt;
* [http://forum.mtasa.com/viewforum.php?f=91 Forum na temat skryptowania]&lt;br /&gt;
* [http://forum.mtasa.com/viewforum.php?f=148 Forum z poradnikami do skryptowania]&lt;br /&gt;
* [http://forum.mtasa.com/viewtopic.php?f=13&amp;amp;t=29363 Kopie Wiki]&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right; width: 32px;&amp;quot;&amp;gt;[[File:start-here.png|link=]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Pomoc dotycząca LUA&amp;lt;/h3&amp;gt;&lt;br /&gt;
Strony zaprojektowane, by pomóc Ci zrozumieć język LUA.&lt;br /&gt;
*[http://www.lua.org/pil/index.html &amp;quot;Programming in Lua&amp;quot; Manual]&lt;br /&gt;
**[http://www.lua.org/manual/5.1/#index Internal Lua functions reference]&lt;br /&gt;
*[http://lua-users.org/wiki/TutorialDirectory Lua Wiki]&lt;br /&gt;
*[http://nixstaller.sourceforge.net/manual/0.5.1/nixstaller_10.html A general guide to Lua from Nixstaller]&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:#F2F2FF;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right; width: 32px;&amp;quot;&amp;gt;[[File:Preferences-system.png|link=]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Odwołania&amp;lt;/h3&amp;gt;&lt;br /&gt;
* [[PL/Funkcje po stronie klienta|Funkcje po stronie klienta]] [[Image:Plflag.png|Artykuł w języku polskim]]&lt;br /&gt;
* [[PL/Client Scripting Events|Zdarzenia po stronie klienta]] [[Image:Plflag.png|Artykuł w języku polskim]]&lt;br /&gt;
* [[Server Scripting Functions|Funkcje po stronie serwera]] [[Image:usen.gif|Artykuł w języku angielskim]]&lt;br /&gt;
* [[Server Scripting Events|Zdarzenia po stronie serwera]] [[Image:usen.gif|Artykuł w języku angielskim]]&lt;br /&gt;
&amp;lt;!-- Incomplete * [[Module functions|Server-side external module scripting functions list]] --&amp;gt;&lt;br /&gt;
* [[MTA Classes|Klasy MTA]] [[Image:usen.gif|Artykuł w języku angielskim]] - Szczegółowe opisy wszystkich niestandardowych typów MTA&lt;br /&gt;
** [[Element|Elementy MTA]] [[Image:usen.gif|Artykuł w języku angielskim]] / [[Element tree|Drzewo elementów]] [[Image:usen.gif|Artykuł w języku angielskim]]&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|link=]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;[[PL/Id|Listy ID]]&amp;lt;/h3&amp;gt;&lt;br /&gt;
*[[PL/Animations|Animacje]] [[Image:Plflag.png|Artykuł w języku polskim]]&lt;br /&gt;
*[[PL/Character Skins|Skiny postaci]] [[Image:Plflag.png|Artykuł w języku polskim]]&lt;br /&gt;
*[[PL/CJ_Clothes|Ubrania]] [[Image:Plflag.png|Artykuł w języku polskim]]&lt;br /&gt;
*[[PL/Garage|Garaże]] [[Image:Plflag.png|Artykuł w języku polskim]]&lt;br /&gt;
*[[PL/Interior IDs|Interiory]] [[Image:Plflag.png|Artykuł w języku polskim]]&lt;br /&gt;
*[[PL/Material IDs|Materiały]] [[Image:Plflag.png|Artykuł w języku polskim]]&lt;br /&gt;
*[[PL/Projectiles|Pociski]] [[Image:Plflag.png|Artykuł w języku polskim]]&lt;br /&gt;
*[[PL/Radar Blips|Znaczniki]] [[Image:Plflag.png|Artykuł w języku polskim]]&lt;br /&gt;
*[[PL/Sounds|Dźwięki]] [[Image:Plflag.png|Artykuł w języku polskim]]&lt;br /&gt;
*[[PL/Vehicle IDs|Pojazdy]] [[Image:Plflag.png|Artykuł w języku polskim]]&lt;br /&gt;
*[[PL/Vehicle Colors|Kolory pojazdów]] [[Image:Plflag.png|Artykuł w języku polskim]]&lt;br /&gt;
*[[PL/Vehicle Upgrades|Modyfikacje pojazdów]] [[Image:Plflag.png|Artykuł w języku polskim]]&lt;br /&gt;
*[[Vehicle variants|Warianty pojazdów]] [[Image:usen.gif|Artykuł w języku angielskim]]&lt;br /&gt;
*[[PL/Vehicle component manipulation|Manipulowanie komponentami pojazdów]] [[Image:Plflag.png|Artykuł w języku polskim]]&lt;br /&gt;
*[[PL/Weapons|Bronie]] [[Image:Plflag.png|Artykuł w języku polskim]]&lt;br /&gt;
*[[PL/Weather|Pogoda]] [[Image:Plflag.png|Artykuł w języku polskim]]/[[Image:usen.gif|Artykuł w języku angielskim]]&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;
[[File:Osi symbol.png|75px|link=http://opensource.org/|left]]&lt;br /&gt;
'''Multi Theft Auto''' jest '''Otwartym Oprogramowaniem'''. &lt;br /&gt;
&amp;lt;br/&amp;gt;To znaczy, że każdy może pomóc w byciu Multi Theft Auto lepszym!&lt;br /&gt;
&amp;lt;/div&amp;gt;&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-left: 15px; padding-right: 15px;&amp;quot; class=&amp;quot;plainlinks&amp;quot;&amp;gt;&lt;br /&gt;
[[File:MTALogo_8ball.png|left|85px|link=Archive]]&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;'''O [[PL/Multi Theft Auto|Multi Theft Auto]]'''&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;[[PL/Archive|Archiwum]]&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;[[Press Coverage|MTA w mediach]]&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;[http://code.google.com/p/mtasa-blue/people/list Developerzy]&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;[[PL/Archive#Multi_Theft_Auto_0.5|Pobierz]]&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;[[MTA 0.5r2 Known Issues|Zauważone problemy]]&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;'''Statystyki Wiki'''&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;{{NUMBEROFARTICLES}} artykuły&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;{{NUMBEROFPAGES}} strony&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;{{NUMBEROFFILES}} pliki&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: 240px; float: left;&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;{{NUMBEROFEDITS}} edycji&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;{{NUMBEROFADMINS}} administratorów&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;{{NUMBEROFUSERS}} zarejestrowanych użytkowników&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;{{NUMBEROFACTIVEUSERS}} aktywnych użytkowników&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;
&lt;br /&gt;
__NOTOC__&lt;br /&gt;
__NOEDITSECTION__&lt;br /&gt;
{{Languages list|pl}}&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=PL/Where_to_buy_GTASA&amp;diff=48849</id>
		<title>PL/Where to buy GTASA</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=PL/Where_to_buy_GTASA&amp;diff=48849"/>
		<updated>2016-08-14T14:54:21Z</updated>

		<summary type="html">&lt;p&gt;GabWas: Tłumaczenie brzmi jak napisane po paru kieliszkach (jak można wersję gry HOOLIGAN przetłumaczyć na &amp;quot;chuligańską&amp;quot;? xD). Przebudowuję ponownie (zmieniając przy tym platformy na te popularne w PL) + dodaję od siebie ocenę do każdej platformy.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ta strona przedstawia listę stron internetowych, przez które możesz kupić grę Grand Theft Auto: San Andreas, potrzebną do korzystania z MTA.&lt;br /&gt;
Wersja gry na platformie Steam oraz wszystkie pudełkowe wersje GTA:SA (DVD) powinny działać bezproblemowo.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width: 1000px; text-align: center;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;width:200px;background-color:#f2f2f2;&amp;quot;|'''Platforma/Sklep'''&lt;br /&gt;
|style=&amp;quot;width:100px;background-color:#f2f2f2;&amp;quot;|'''Ocena'''&lt;br /&gt;
!Opis&lt;br /&gt;
|style=&amp;quot;width:180px;background-color:#f2f2f2;&amp;quot;|'''Współpracuje z MTA?'''&lt;br /&gt;
|-&lt;br /&gt;
|[http://store.steampowered.com/app/12120/?l=polish Steam]&lt;br /&gt;
|[[File:*+*.png]][[File:*+*.png]][[File:*+*.png]][[File:*+*.png]][[File:*+*.png]]&lt;br /&gt;
|Gra w wersji 2.0 - instalator MTA automatycznie &amp;quot;obniży&amp;quot; ją do wersji 1.0&lt;br /&gt;
|{{PL/Yes}}&lt;br /&gt;
|-&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot;|[http://allegro.pl/listing/listing.php?order=m&amp;amp;string=Grand+Theft+Auto+San+Andreas+%28PC%29&amp;amp;bmatch=base-relevance-w2-uni-1-3-0812 Allegro]&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot;|[[File:*+*.png]][[File:*+*.png]][[File:*+*.png]][[File:*+*.png]][[File:*-*.png]]&lt;br /&gt;
|Wersja pudełkowa (DVD)&lt;br /&gt;
|rowspan=&amp;quot;2&amp;quot; {{PL/Yes}}&lt;br /&gt;
|-&lt;br /&gt;
|Klucz do gry na platformie [http://store.steampowered.com/ Steam]&lt;br /&gt;
|-&lt;br /&gt;
|[http://sklep.gram.pl/pc/npg-grand-theft-auto-san-andreas.shtml gram.pl]&lt;br /&gt;
|[[File:*+*.png]][[File:*+*.png]][[File:*+*.png]][[File:*+*.png]][[File:*+*.png]]&lt;br /&gt;
|rowspan=7|Wersja pudełkowa (DVD)&lt;br /&gt;
|rowspan=&amp;quot;7&amp;quot; {{PL/Yes}}&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.empik.com/grand-theft-auto-san-andreas-pc-rockstar,p1045693411,multimedia-p Empik]&lt;br /&gt;
|[[File:*+*.png]][[File:*+*.png]][[File:*+*.png]][[File:*+*.png]][[File:*+*.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[http://sklep.gry-online.pl/KartaProduktu.aspx?id=2039 GRY-OnLine.pl]&lt;br /&gt;
|[[File:*+*.png]][[File:*+*.png]][[File:*+*.png]][[File:*+*.png]][[File:*-*.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.ultima.pl/ct/pc/gry/akcja/grand-theft-auto-san-andreas-pl-npg Ultima]&lt;br /&gt;
|[[File:*+*.png]][[File:*+*.png]][[File:*+*.png]][[File:*+*.png]][[File:*-*.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.3kropki.pl/p/3/0/grand_theft_auto_san_andreas.php 3kropki.pl]&lt;br /&gt;
|[[File:*+*.png]][[File:*+*.png]][[File:*+*.png]][[File:*-*.png]][[File:*-*.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.grymel.pl/cenega-grand-theft-auto-gta-san-andreas-o_l_528.html Grymel]&lt;br /&gt;
|[[File:*+*.png]][[File:*+*.png]][[File:*+*.png]][[File:*-*.png]][[File:*-*.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[https://cdp.pl/grand-theft-auto-san-andreas.html cdp.pl]&lt;br /&gt;
|[[File:*+*.png]][[File:*-*.png]][[File:*-*.png]][[File:*-*.png]][[File:*-*.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[https://www.g2a.com/grand-theft-auto-san-andreas-steam-cd-key-eu.html?___store=polish G2A]&lt;br /&gt;
|[[File:*+*.png]][[File:*+*.png]][[File:*+*.png]][[File:*+*.png]][[File:*+*.png]]&lt;br /&gt;
|rowspan=4|Klucz do gry na platformie [http://store.steampowered.com/ Steam]&lt;br /&gt;
|rowspan=&amp;quot;4&amp;quot; {{PL/Yes}}&lt;br /&gt;
|-&lt;br /&gt;
|[https://www.kinguin.net/pl/category/600/grand-theft-auto-san-andreas-steam-key/ Kinguin.net]&lt;br /&gt;
|[[File:*+*.png]][[File:*+*.png]][[File:*+*.png]][[File:*+*.png]][[File:*+*.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[http://sklep.gram.pl/digi/grand-theft-auto-san-andreas-wersja-cyfrowa.shtml gram.pl]&lt;br /&gt;
|[[File:*+*.png]][[File:*+*.png]][[File:*+*.png]][[File:*+*.png]][[File:*+*.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[https://muve.pl/sklep/digital/akcja/grand-theft-auto-san-andreas-pc-digital,61030 Muve.pl]&lt;br /&gt;
|[[File:*+*.png]][[File:*+*.png]][[File:*+*.png]][[File:*+*.png]][[File:*-*.png]]&lt;br /&gt;
|-&lt;br /&gt;
|[https://www.microsoft.com/pl-pl/store/p/grand-theft-auto-san-andreas/9wzdncrfj1zn Sklep Microsoft (Windows)]&lt;br /&gt;
|[[File:*-*.png]][[File:*-*.png]][[File:*-*.png]][[File:*-*.png]][[File:*-*.png]]&lt;br /&gt;
|Mobilna wersja gry przeniesiona na komputery z systemem Windows 8.1/10&lt;br /&gt;
|{{PL/No}}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
[[en:Where to buy GTASA]]&lt;br /&gt;
[[es:Dónde comprar GTA: SA]]&lt;br /&gt;
[[tr:GTA:SA Nerden Alınır]]&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=File:*-*.png&amp;diff=48848</id>
		<title>File:*-*.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=File:*-*.png&amp;diff=48848"/>
		<updated>2016-08-13T22:02:33Z</updated>

		<summary type="html">&lt;p&gt;GabWas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=File:*%2B*.png&amp;diff=48847</id>
		<title>File:*+*.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=File:*%2B*.png&amp;diff=48847"/>
		<updated>2016-08-13T22:01:49Z</updated>

		<summary type="html">&lt;p&gt;GabWas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Vehicle_Colors&amp;diff=48661</id>
		<title>Vehicle Colors</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Vehicle_Colors&amp;diff=48661"/>
		<updated>2016-08-04T15:42:45Z</updated>

		<summary type="html">&lt;p&gt;GabWas: Fixed link to polish translation.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;These are the vehicle colors you can use with [[setVehicleColor]] and [[getVehicleColor]].&lt;br /&gt;
{{Vehicle colors}}&lt;br /&gt;
&lt;br /&gt;
==Vehicle Functions==&lt;br /&gt;
{{Vehicle functions}}&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
[[id|ID Lists]]&lt;br /&gt;
&lt;br /&gt;
[[Category:ID Lists]]&lt;br /&gt;
[[ru:Vehicle colors]]&lt;br /&gt;
[[de:Fahrzeugfarben]]&lt;br /&gt;
[[pl:Vehicle Colors]]&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=User:GabWas&amp;diff=48485</id>
		<title>User:GabWas</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=User:GabWas&amp;diff=48485"/>
		<updated>2016-07-22T10:29:43Z</updated>

		<summary type="html">&lt;p&gt;GabWas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Polish_flag.gif]]&lt;br /&gt;
&lt;br /&gt;
==Moje tłumaczenia / My translations==&lt;br /&gt;
&amp;lt;!-- *[[PL/]]&amp;lt;br/&amp;gt; --&amp;gt;&lt;br /&gt;
===Funkcje / Functions===&lt;br /&gt;
*[[PL/createBlip]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/createPed]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/createPickup]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/getPlayerPing]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/getRandomPlayer]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/getServerName]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/givePlayerMoney]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/outputChatBox]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/playSound]]&amp;lt;br/&amp;gt;&lt;br /&gt;
*[[PL/playSound3D]]&amp;lt;br/&amp;gt;&lt;br /&gt;
===Zdarzenia / Events===&lt;br /&gt;
*brak (jeszcze) / none (yet)&lt;br /&gt;
===Pozostałe / Others===&lt;br /&gt;
*brak (jeszcze) / none (yet)&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=User_talk:GabWas&amp;diff=48451</id>
		<title>User talk:GabWas</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=User_talk:GabWas&amp;diff=48451"/>
		<updated>2016-07-21T21:07:54Z</updated>

		<summary type="html">&lt;p&gt;GabWas: &amp;quot;Ja tu tylko sprzątam...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=PL/createBlip&amp;diff=48450</id>
		<title>PL/createBlip</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=PL/createBlip&amp;diff=48450"/>
		<updated>2016-07-21T21:03:21Z</updated>

		<summary type="html">&lt;p&gt;GabWas: Created page with &amp;quot;__NOTOC__  {{PL/Shared function}} Funkcja ta umożliwia stworzenie blipu, który będzie wyświetlał się na radarze gracza.  ==Składnia== &amp;lt;section name=&amp;quot;Serwer&amp;quot; cl...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ &lt;br /&gt;
{{PL/Shared function}}&lt;br /&gt;
Funkcja ta umożliwia stworzenie [[blip|blipu]], który będzie wyświetlał się na radarze gracza.&lt;br /&gt;
&lt;br /&gt;
==Składnia==&lt;br /&gt;
&amp;lt;section name=&amp;quot;Serwer&amp;quot; class=&amp;quot;server&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;
blip createBlip ( float x, float y, float z [, int icon = 0, int size = 2, int r = 255, int g = 0, int b = 0, int a = 255, int ordering = 0, float visibleDistance = 99999.0, visibleTo = getRootElement( ) ] )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&amp;lt;section name=&amp;quot;Klient&amp;quot; class=&amp;quot;client&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;
blip createBlip ( float x, float y, float z [, int icon = 0, int size = 2, int r = 255, int g = 0, int b = 0, int a = 255, int ordering = 0, float visibleDistance = 99999.0 ] )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
{{PL/OOP||[[Blip]]}}&lt;br /&gt;
===Wymagane argumenty=== &lt;br /&gt;
*'''x:''' Liczba zmiennoprzecinkowa określająca współrzędną X blipu na mapie.&lt;br /&gt;
*'''y:''' Liczba zmiennoprzecinkowa określająca współrzędną Y blipu na mapie.&lt;br /&gt;
*'''z:''' Liczba zmiennoprzecinkowa określająca współrzędną Z blipu na mapie.&lt;br /&gt;
&lt;br /&gt;
===Opcjonalne argumenty=== &lt;br /&gt;
{{PL/OptionalArg}} &lt;br /&gt;
*'''icon:''' Liczba całkowita określająca ikonę blipu, którą możesz wybrać [[Blip Icons|tutaj]]. Domyślnie ''0''.&lt;br /&gt;
*'''size:''' Liczba całkowita określająca rozmiar blipu. Dotyczy tylko ikony o ID 0. Domyślnie ''2''.&lt;br /&gt;
*'''g:''' Wartość koloru zielonego w blipie (0 - 255). Dotyczy tylko ikony o ID 0. Domyślnie ''0''.&lt;br /&gt;
*'''b:''' Wartość koloru niebieskiego w blipie (0 - 255). Dotyczy tylko ikony o ID 0. Domyślnie ''0''.&lt;br /&gt;
*'''a:''' Wartość przezroczystości blipu (0 - 255). Dotyczy tylko ikony o ID 0. Domyślnie ''255''.&lt;br /&gt;
{{New feature/item|3|1.0||&lt;br /&gt;
*'''ordering:''' Liczba całkowita określająca wysokość położenia blipu (-32768 - 32767). Przydatny argument podczas tworzenia blipów znajdujących się w jednym miejscu, ponieważ możemy zdecydować, który z nich będzie na wierzchu. Domyślnie ''0''.&lt;br /&gt;
*'''visibleDistance:''' Liczba zmiennoprzecinkowa określająca odległość, z jakiej widoczny jest blip. Domyślnie ''99999.0''.&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;section name=&amp;quot;Serwer&amp;quot; class=&amp;quot;server&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
*'''visibleTo:''' Dzięki temu argumentowi możesz sprecyzować, dla kogo blip będzie widoczny. Po więcej informacji zajrzyj [[visibility|tutaj]]. Domyślnie, blip jest widoczny dla wszystkich graczy (''getRootElement()''). &lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Wynik===&lt;br /&gt;
Zwraca [[element]] [[blip|blipu]], jeśli został on pomyślnie utworzony. W każdym innym przypadku zwraca ''false''.&lt;br /&gt;
&lt;br /&gt;
==Przykłady== &lt;br /&gt;
&amp;lt;section name=&amp;quot;Serwer&amp;quot; class=&amp;quot;server&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
'''Przykład nr 1:''' Ten przykład tworzy blip, który będzie podążał za losowym graczem.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
local randomPlayer = getRandomPlayer( ) -- zaczynamy od wylosowania gracza&lt;br /&gt;
local x, y, z = getElementPosition( player ) -- następnie pobieramy jego pozycję...&lt;br /&gt;
local playerBlip = createBlip( x, y, z, 58, 0, 0, 0, 255 ) -- ...i tworzymy w tym miejscu blip...&lt;br /&gt;
setElementParent( playerBlip, randomPlayer ) -- ...któremu następnie każemy podążać za graczem&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
''Autor: [[User:GabWas|GabWas]]; utworzono: 23:03, 21 Lip 2016 (CEST)''&lt;br /&gt;
&amp;lt;br/&amp;gt;''Author: [[User:GabWas|GabWas]]; created: 21:03, 21 Jul 2016 (UTC)''&lt;br /&gt;
&lt;br /&gt;
==Zobacz również==&lt;br /&gt;
{{Blip_functions}}&lt;br /&gt;
[[EN:createBlip]]&lt;br /&gt;
[[AR:createBlip]]&lt;br /&gt;
[[DE:createBlip]]&lt;br /&gt;
[[ES:CreateBlip]]&lt;br /&gt;
[[IT:createBlip]]&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Template:PL/Client_event&amp;diff=48432</id>
		<title>Template:PL/Client event</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Template:PL/Client_event&amp;diff=48432"/>
		<updated>2016-07-21T19:06:26Z</updated>

		<summary type="html">&lt;p&gt;GabWas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pageclass class=&amp;quot;client&amp;quot; subcaption=&amp;quot;Zdarzenie po stronie klienta&amp;quot;&amp;gt;&amp;lt;/pageclass&amp;gt;&lt;br /&gt;
&amp;lt;includeonly&amp;gt;[[Category:Client events]]&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Template:PL/Server_event&amp;diff=48430</id>
		<title>Template:PL/Server event</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Template:PL/Server_event&amp;diff=48430"/>
		<updated>2016-07-21T19:06:14Z</updated>

		<summary type="html">&lt;p&gt;GabWas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pageclass class=&amp;quot;server&amp;quot; subcaption=&amp;quot;Zdarzenie po stronie serwera&amp;quot;&amp;gt;&amp;lt;/pageclass&amp;gt;&lt;br /&gt;
&amp;lt;includeonly&amp;gt;[[Category:Server Events]]&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=PL/onClientBrowserDocumentReady&amp;diff=48429</id>
		<title>PL/onClientBrowserDocumentReady</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=PL/onClientBrowserDocumentReady&amp;diff=48429"/>
		<updated>2016-07-21T19:05:56Z</updated>

		<summary type="html">&lt;p&gt;GabWas: To nie funkcja, tylko zdarzenie - poprawka template'u.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
{{PL/Client event}}&lt;br /&gt;
{{PL/New feature/item|3.0150|1.5||&lt;br /&gt;
To zdarzenie jest wywoływane kiedy strona internetowa zostanie poprawnie załadowana.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Parametry== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
string url&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
*'''url:''' url strony która została załadowana&lt;br /&gt;
&lt;br /&gt;
==Źródło==&lt;br /&gt;
Element [[PL/Element/Browser|przeglądarki]] &lt;br /&gt;
&lt;br /&gt;
==Przykład== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
addEventHandler ( &amp;quot;onClientBrowserDocumentReady&amp;quot; , root , &lt;br /&gt;
	function ( url ) &lt;br /&gt;
		outputChatBox ( &amp;quot;Strona '&amp;quot;  .. url ..  &amp;quot;' została poprawnie załadowana.&amp;quot;) &lt;br /&gt;
	end &lt;br /&gt;
)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[en:onClientBrowserDocumentReady]]&lt;br /&gt;
&lt;br /&gt;
==Zobacz także==&lt;br /&gt;
{{CEF_events}}&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=User_talk:GabWas&amp;diff=48419</id>
		<title>User talk:GabWas</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=User_talk:GabWas&amp;diff=48419"/>
		<updated>2016-07-21T18:33:50Z</updated>

		<summary type="html">&lt;p&gt;GabWas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Jeśli tłumaczysz przykłady, to nie zmieniaj nazw funkcji na polskie, bo to nie jest zgodne z [[Coding guidelines|praktykami dobrego kodowania]] i potem uczący się pisać w MTA to zapamiętają i nabiorą złych praktyk. [[User:ThePiotrek|ThePiotrek]] ([[User talk:ThePiotrek|talk]]) 16:41, 21 July 2016 (UTC)&lt;br /&gt;
&amp;lt;br/&amp;gt;Według mnie to bez różnicy, czy funkcja będzie napisana po polsku czy po angielsku. Zależy komu jak wygodniej. Poza tym niektórzy ledwo ogarniają angielski, więc to i tak dobrze jak zapamiętają chociaż pare funkcji. --[[User:GabWas|GabWas]] ([[User talk:GabWas|talk]]) 17:26, 21 July 2016 (UTC)&lt;br /&gt;
&amp;lt;br&amp;gt;Według mnie też, po prostu chodzi mi o to że jeśli piszemy przykłady na wiki na której są wytyczone zasady pisania to trzymajmy się ich [[User:ThePiotrek|ThePiotrek]] ([[User talk:ThePiotrek|talk]]) 17:46, 21 July 2016 (UTC)&lt;br /&gt;
&amp;lt;br/&amp;gt;Mi się w ogóle wydaje, że ten link do strony który podałeś, to nie dotyczy przykładów z funkcjami, tylko edycji kodu samego MTA i ingerencji w silnik. Można to już w sumie wywnioskować po punkcie nr 1, ale także 2.6 --[[User:GabWas|GabWas]] ([[User talk:GabWas|talk]]) 18:32, 21 July 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=User_talk:GabWas&amp;diff=48416</id>
		<title>User talk:GabWas</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=User_talk:GabWas&amp;diff=48416"/>
		<updated>2016-07-21T18:32:57Z</updated>

		<summary type="html">&lt;p&gt;GabWas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Jeśli tłumaczysz przykłady, to nie zmieniaj nazw funkcji na polskie, bo to nie jest zgodne z [[Coding guidelines|praktykami dobrego kodowania]] i potem uczący się pisać w MTA to zapamiętają i nabiorą złych praktyk. [[User:ThePiotrek|ThePiotrek]] ([[User talk:ThePiotrek|talk]]) 16:41, 21 July 2016 (UTC)&lt;br /&gt;
&amp;lt;br/&amp;gt;Według mnie to bez różnicy, czy funkcja będzie napisana po polsku czy po angielsku. Zależy komu jak wygodniej. Poza tym niektórzy ledwo ogarniają angielski, więc to i tak dobrze jak zapamiętają chociaż pare funkcji. --[[User:GabWas|GabWas]] ([[User talk:GabWas|talk]]) 17:26, 21 July 2016 (UTC)&lt;br /&gt;
&amp;lt;br&amp;gt;Według mnie też, po prostu chodzi mi o to że jeśli piszemy przykłady na wiki na której są wytyczone zasady pisania to trzymajmy się ich [[User:ThePiotrek|ThePiotrek]] ([[User talk:ThePiotrek|talk]]) 17:46, 21 July 2016 (UTC)&lt;br /&gt;
&amp;lt;br/&amp;gt;Mi się w ogóle wydaje, że ten link do strony który podałeś, to nie dotyczy przykładów z funkcjami, tylko edycji kodu samego MTA i ingerencji w silnik. --[[User:GabWas|GabWas]] ([[User talk:GabWas|talk]]) 18:32, 21 July 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=User_talk:GabWas&amp;diff=48393</id>
		<title>User talk:GabWas</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=User_talk:GabWas&amp;diff=48393"/>
		<updated>2016-07-21T17:28:56Z</updated>

		<summary type="html">&lt;p&gt;GabWas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Jeśli tłumaczysz przykłady, to nie zmieniaj nazw funkcji na polskie, bo to nie jest zgodne z [[Coding guidelines|praktykami dobrego kodowania]] i potem uczący się pisać w MTA to zapamiętają i nabiorą złych praktyk. [[User:ThePiotrek|ThePiotrek]] ([[User talk:ThePiotrek|talk]]) 16:41, 21 July 2016 (UTC)&lt;br /&gt;
&amp;lt;br/&amp;gt;Według mnie to bez różnicy, czy funkcja będzie napisana po polsku czy po angielsku. Zależy komu jak wygodniej. Poza tym niektórzy ledwo ogarniają angielski, więc to i tak dobrze jak zapamiętają chociaż pare funkcji. --[[User:GabWas|GabWas]] ([[User talk:GabWas|talk]]) 17:26, 21 July 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=User_talk:GabWas&amp;diff=48392</id>
		<title>User talk:GabWas</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=User_talk:GabWas&amp;diff=48392"/>
		<updated>2016-07-21T17:26:19Z</updated>

		<summary type="html">&lt;p&gt;GabWas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Jeśli tłumaczysz przykłady, to nie zmieniaj nazw funkcji na polskie, bo to nie jest zgodne z [[Coding guidelines|praktykami dobrego kodowania]] i potem uczący się pisać w MTA to zapamiętają i nabiorą złych praktyk. [[User:ThePiotrek|ThePiotrek]] ([[User talk:ThePiotrek|talk]]) 16:41, 21 July 2016 (UTC)&lt;br /&gt;
&amp;lt;br/&amp;gt;Według mnie to bez różnicy, czy funkcja będzie napisana po polsku czy po angielsku. Zależy komu jak wygodniej --[[User:GabWas|GabWas]] ([[User talk:GabWas|talk]]) 17:26, 21 July 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=User_talk:GabWas&amp;diff=48391</id>
		<title>User talk:GabWas</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=User_talk:GabWas&amp;diff=48391"/>
		<updated>2016-07-21T17:26:08Z</updated>

		<summary type="html">&lt;p&gt;GabWas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Jeśli tłumaczysz przykłady, to nie zmieniaj nazw funkcji na polskie, bo to nie jest zgodne z [[Coding guidelines|praktykami dobrego kodowania]] i potem uczący się pisać w MTA to zapamiętają i nabiorą złych praktyk. [[User:ThePiotrek|ThePiotrek]] ([[User talk:ThePiotrek|talk]]) 16:41, 21 July 2016 (UTC)&lt;br /&gt;
Według mnie to bez różnicy, czy funkcja będzie napisana po polsku czy po angielsku. Zależy komu jak wygodniej --[[User:GabWas|GabWas]] ([[User talk:GabWas|talk]]) 17:26, 21 July 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Template:PL/Useful_Function&amp;diff=48340</id>
		<title>Template:PL/Useful Function</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Template:PL/Useful_Function&amp;diff=48340"/>
		<updated>2016-07-21T15:48:08Z</updated>

		<summary type="html">&lt;p&gt;GabWas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pageclass class=&amp;quot;#228B22&amp;quot; subcaption=&amp;quot;Użyteczna funkcja&amp;quot;&amp;gt;&amp;lt;/pageclass&amp;gt;&lt;br /&gt;
&amp;lt;includeonly&amp;gt;&lt;br /&gt;
[[Category:Useful Functions]]&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=PL/detonateSatchels&amp;diff=48338</id>
		<title>PL/detonateSatchels</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=PL/detonateSatchels&amp;diff=48338"/>
		<updated>2016-07-21T15:45:46Z</updated>

		<summary type="html">&lt;p&gt;GabWas: Poprawa tłumaczenia + zmiana szablonów na spolszczone.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PL/Shared function}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
Dzięki tej funkcji, możesz zdalnie zdetonować ładunki wybuchowe danego gracza.&lt;br /&gt;
&lt;br /&gt;
==Składnia==&lt;br /&gt;
&amp;lt;section name=&amp;quot;Klient&amp;quot; class=&amp;quot;client&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;
bool detonateSatchels ( )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section name=&amp;quot;Serwer&amp;quot; class=&amp;quot;server&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;
bool detonateSatchels ( player Player )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Wynik===&lt;br /&gt;
Zwraca ''true'' w przypadku pomyślnego zdetonowania ładunków. W każdym innym wypadku zwraca ''false''.&lt;br /&gt;
&lt;br /&gt;
==Przykład==&lt;br /&gt;
Ten przykład dodaje komendę o nazwie 'wysadzladunki', która detonuje ładunki wybuchowe gracza, który ją wpisał.&lt;br /&gt;
&amp;lt;section name=&amp;quot;Klient&amp;quot; class=&amp;quot;client&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 zdetonujLadunki()&lt;br /&gt;
    detonateSatchels()&lt;br /&gt;
    outputChatBox( &amp;quot;Twoje ładunki wybuchowe zostały wysadzone!&amp;quot; )&lt;br /&gt;
end&lt;br /&gt;
addCommandHandler( &amp;quot;wysadzladunki&amp;quot;, zdetonujLadunki )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Zobacz także==&lt;br /&gt;
{{Client projectile functions}}&lt;br /&gt;
[[en:detonateSatchels]]&lt;br /&gt;
[[it:detonateSatchels]]&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=User_talk:ThePiotrek&amp;diff=48336</id>
		<title>User talk:ThePiotrek</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=User_talk:ThePiotrek&amp;diff=48336"/>
		<updated>2016-07-21T15:43:05Z</updated>

		<summary type="html">&lt;p&gt;GabWas: Created page with &amp;quot;''Piotrek, jeżeli tworzysz jakieś tłumaczenia, to funkcje zaczynaj z małej i korzystaj ze spolszczonych szablonów'' --~~~~&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''Piotrek, jeżeli tworzysz jakieś tłumaczenia, to funkcje zaczynaj z małej i korzystaj ze spolszczonych szablonów'' --[[User:GabWas|GabWas]] ([[User talk:GabWas|talk]]) 15:43, 21 July 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=PL/GetValidPedModels&amp;diff=48329</id>
		<title>PL/GetValidPedModels</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=PL/GetValidPedModels&amp;diff=48329"/>
		<updated>2016-07-21T14:14:59Z</updated>

		<summary type="html">&lt;p&gt;GabWas: GabWas moved page PL/GetValidPedModels to PL/getValidPedModels&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[PL/getValidPedModels]]&lt;/div&gt;</summary>
		<author><name>GabWas</name></author>
	</entry>
</feed>