<?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=O22</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=O22"/>
	<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/wiki/Special:Contributions/O22"/>
	<updated>2026-04-13T20:24:49Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.3</generator>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=GetResources&amp;diff=82750</id>
		<title>GetResources</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=GetResources&amp;diff=82750"/>
		<updated>2026-03-25T12:03:05Z</updated>

		<summary type="html">&lt;p&gt;O22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Server function}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
This function retrieves a table of all the resources that exist on the server.&lt;br /&gt;
&lt;br /&gt;
==Syntax== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
table getResources ()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
{{OOP||[[Resource]].getAll}}&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns a table of resources.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
This function lists all loaded resources in the console.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function displayResources()&lt;br /&gt;
     outputConsole(&amp;quot;List of resources:&amp;quot;)&lt;br /&gt;
     local resourceTable = getResources() -- get a table of resources&lt;br /&gt;
     for resourceKey, resourceValue in ipairs(resourceTable) do&lt;br /&gt;
          -- iterate through the table and output each resource's name&lt;br /&gt;
          local name = getResourceName(resourceValue)&lt;br /&gt;
          outputConsole(&amp;quot; &amp;quot; .. name)&lt;br /&gt;
     end&lt;br /&gt;
end&lt;br /&gt;
addEventHandler(&amp;quot;onResourceStart&amp;quot;, resourceRoot, displayResources)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Resource_functions|server}}&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=GetResources&amp;diff=82749</id>
		<title>GetResources</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=GetResources&amp;diff=82749"/>
		<updated>2026-03-25T12:02:50Z</updated>

		<summary type="html">&lt;p&gt;O22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Server function}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
This function retrieves a table of all the resources that exist on the server.&lt;br /&gt;
&lt;br /&gt;
==Syntax== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
table getResources ()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
{{OOP||[[Resource]].getAll}}&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns a table of resources.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
This function lists all loaded resources in the console.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function displayResources()&lt;br /&gt;
     outputConsole(&amp;quot;List of resources:&amp;quot;)&lt;br /&gt;
     local resourceTable = getResources() -- get a table of resources&lt;br /&gt;
     for resourceKey, resourceValue in ipairs(resourceTable) do&lt;br /&gt;
          -- iterate through the table and output each resource's name&lt;br /&gt;
          local name = getResourceName(resourceValue)&lt;br /&gt;
          outputConsole(&amp;quot; &amp;quot; .. name)&lt;br /&gt;
     end&lt;br /&gt;
end&lt;br /&gt;
addEventHandler(&amp;quot;onClientResourceStart&amp;quot;, resourceRoot, displayResources)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Resource_functions|server}}&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=GetServerHttpPort&amp;diff=82646</id>
		<title>GetServerHttpPort</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=GetServerHttpPort&amp;diff=82646"/>
		<updated>2025-12-22T16:13:41Z</updated>

		<summary type="html">&lt;p&gt;O22: Clearer readability&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ &lt;br /&gt;
{{Server function}}&lt;br /&gt;
This function retrieves the server's HTTP port.&lt;br /&gt;
&lt;br /&gt;
==Syntax== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
int getServerHttpPort ( )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
An integer corresponding to the server's HTTP port.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
This example outputs server's HTTP port to the chat box when player uses command ''getHttpPort'' &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
addCommandHandler(&amp;quot;getHttpPort&amp;quot;,&lt;br /&gt;
    function(player, command)&lt;br /&gt;
        outputChatBox(&amp;quot;HTTP port of this server is: &amp;quot; .. getServerHttpPort(), player, 0, 255, 0)&lt;br /&gt;
    end&lt;br /&gt;
)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Server functions}}&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=IsPostFXEnabled&amp;diff=82641</id>
		<title>IsPostFXEnabled</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=IsPostFXEnabled&amp;diff=82641"/>
		<updated>2025-12-08T13:00:54Z</updated>

		<summary type="html">&lt;p&gt;O22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ &lt;br /&gt;
{{Client function}}&lt;br /&gt;
{{New feature/item|3.0161|1.6|23644	|&lt;br /&gt;
Checks whether a specific PostFX effect is currently enabled.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Syntax== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
bool isPostFXEnabled ( string fxType )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Required arguments===&lt;br /&gt;
*'''fxType''': An string of the PostFX. Possible values are:&lt;br /&gt;
**'''Gamma'''&lt;br /&gt;
**'''Brightness'''&lt;br /&gt;
**'''Contrast'''&lt;br /&gt;
**'''Saturation'''&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns '''true''' if the selected type is enabled, otherwise '''false'''&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
This example gets whether the gamma PostFX is enabled and displays it in the chat.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
addCommandHandler(&amp;quot;isGammaEnabled&amp;quot;, &lt;br /&gt;
    function()&lt;br /&gt;
        local isEnabled = isPostFXEnabled(&amp;quot;Gamma&amp;quot;)&lt;br /&gt;
        outputChatBox(&amp;quot;Your gamma mode is: &amp;quot;..(isEnabled and &amp;quot;Enabled&amp;quot; or &amp;quot;Disabled&amp;quot;))&lt;br /&gt;
    end, false, false&lt;br /&gt;
)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Client_PostFX_functions}}&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Changes_in_1.7&amp;diff=82634</id>
		<title>Changes in 1.7</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Changes_in_1.7&amp;diff=82634"/>
		<updated>2025-12-03T17:33:53Z</updated>

		<summary type="html">&lt;p&gt;O22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pageclass class=&amp;quot;#4286f4&amp;quot; subcaption=&amp;quot;Next release&amp;quot;&amp;gt;&amp;lt;/pageclass&amp;gt;&lt;br /&gt;
{{Changelogs}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
'''This changelog is partial and needs updating. It is updated progressively to keep the page always up to date.'''&lt;br /&gt;
&lt;br /&gt;
* GitHub commit log: https://github.com/multitheftauto/mtasa-blue/compare/1.6.0...master&lt;br /&gt;
* GitHub milestone: https://github.com/multitheftauto/mtasa-blue/milestone/10&lt;br /&gt;
* Resources GitHub commit log: https://github.com/multitheftauto/mtasa-resources/compare/1.6.0...master&lt;br /&gt;
* Release announcement on forums: TBA&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Important notice to Windows 7 and 8.x users ==&lt;br /&gt;
If you are using Windows 7 or 8.x, please upgrade your system to Windows 10 or 11 as soon as possible. Windows 7 and 8.x are no longer supported by Microsoft (since January 2020 and January 2023 respectively) and most software (including Google Chrome and Steam) which means you are running an insecure system. Multi Theft Auto will also eventually drop Windows 7 and 8.x support sometime in the future, so it would be a good idea to start looking at upgrade options right now. Thank you!&lt;br /&gt;
&lt;br /&gt;
'''CEF in MTA is no longer updated for Windows 7 or 8.x. This is because CEF no longer supports those versions of Windows. This is bad for security, so please upgrade to Windows 10+ and MTA to 1.6+'''&lt;br /&gt;
&lt;br /&gt;
== 4 Deprecations ==&lt;br /&gt;
These changes will take effect in this version and scripts may need to be manually upgraded when updating:&lt;br /&gt;
* Changed [[base64Encode]] and [[base64Decode]] to throw a warning on use, please upgrade to [[encodeString]] and [[decodeString]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/30a83b0af164fb6920a2a60e089d08a6f5622f7d 30a83b0] by '''Nico834''')&lt;br /&gt;
* Changed [[setHelicopterRotorSpeed]] and [[getHelicopterRotorSpeed]] to throw a warning on use, please upgrade to [[setVehicleRotorSpeed]] and [[getVehicleRotorSpeed]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/82000c34830b51ace2d14e39f3b487feb1aac1da 82000c3] by '''FileEX''')&lt;br /&gt;
* Changes [[setPedOnFire]] and [[isPedOnFire]] to throw a warning on use, please upgrade to [[setElementOnFire]] and [[isElementOnFire]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/7ad96e2e78fe41f8924d3f105b1683f7363c6fcb 7ad96e2] by '''FileEX''')&lt;br /&gt;
* Changes [[removeAllGameBuildings]] and [[restoreAllGameBuildings]] to throw a warning on use, please upgrade to [[removeGameWorld]] and [[restoreGameWorld]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/d7adae68791ce237704acc06bf794b5fbda96f95#diff-93c130ddb85da32121129a437ac5b28ba16fa17f6e3506e4cddfb7bc3d8eb9fbR180 d7adae6] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
== Notable Changes ==&lt;br /&gt;
* Support for Discord Rich Presence ([https://github.com/multitheftauto/mtasa-blue/commit/fdaa3aca3e233c7aba69d0fd5f85e78288a4401a fdaa3ac], [https://github.com/multitheftauto/mtasa-blue/commit/ef26810df4542283fee8edcc165bc9be22f2ca98 ef26810], [https://github.com/multitheftauto/mtasa-blue/commit/acfbd40df1ff1432ea1d6663c005d43fce22899c acfbd40] by '''znjvder''', '''tederis''', '''patrikjuvonen''' and '''Deihim007''')&lt;br /&gt;
* Added support for [[Building]]'s ([https://github.com/multitheftauto/mtasa-blue/commit/81242edb9295efbf4bf8b198b12d577a0877aec2 81242ed], [https://github.com/multitheftauto/mtasa-blue/commit/eb6b18a5d49a7f0f34bdbf42b15f933e42876cf8 eb6b18a] by '''TheNormalnij''')&lt;br /&gt;
* Added the ability to generate a nickname ([https://github.com/multitheftauto/mtasa-blue/commit/12c50eee66898771244074a3a44818dab36a7ac3 12c50ee] by '''Nico834''')&lt;br /&gt;
* Added ''meta.xml'' loading files pattern ([https://github.com/multitheftauto/mtasa-blue/commit/90e2737d0a5eb12f34d2fd3c1f270bedf34cda35 90e2737] by '''W3lac3''')&lt;br /&gt;
* Added world properties (time cycle and weather related features) with new functions: [[setWorldProperty]], [[getWorldProperty]], [[resetWorldProperty]] ([https://github.com/multitheftauto/mtasa-blue/commit/a75f1e9a03e74f7c9d4ae9e5aef8433af84d5ea2 a75f1e9] by '''Samr46''')&lt;br /&gt;
* Added file-system related functions (list files and folders in directories) ([https://github.com/multitheftauto/mtasa-blue/commit/74781c6295b5b6dc81cd95d4cfab7900d88d7524 74781c6] by '''Tracer''')&lt;br /&gt;
* Added the ability to change the color and size of the target arrow in the checkpoint marker ([https://github.com/multitheftauto/mtasa-blue/commit/071378ec4326408a9520c79c96befca995d097f6 071378e] by '''FileEX''')&lt;br /&gt;
* Added the ability to change the alpha of checkpoint and arrow marker ([https://github.com/multitheftauto/mtasa-blue/commit/7988852cf3af9e78f662d76544dc00db408b5c87 7988852] by '''FileEX''')&lt;br /&gt;
* Fixed weapon issues when using the jetpack ([https://github.com/multitheftauto/mtasa-blue/commit/180fbc0b5fdba95450e7a519f78f7588849349bf 180fbc0], [https://github.com/multitheftauto/mtasa-blue/commit/a68c2c4232c28c6ba5595a814b89be976c4fa9c3 a68c2c4] by '''FileEX''')&lt;br /&gt;
* Fixed vehicle windows not being visible from the inside when the lights are on ([https://github.com/multitheftauto/mtasa-blue/commit/934c1d6cfef19902cc391c896bbe2f80ba5a4f70 934c1d6] by '''FileEX''')&lt;br /&gt;
* Fixed old [[setElementModel]] memory leak ([https://github.com/multitheftauto/mtasa-blue/commit/4e7afa2586c6992a75ac5312378c1096d87148ae 4e7afa2] by '''tederis''')&lt;br /&gt;
* Enabled WebGL (GPU Acceleration) in CEF ([https://github.com/multitheftauto/mtasa-blue/commit/026301168d2cd8239650a4f0aa33ff0be6d752dc 0263011] by '''TFP-dev''')&lt;br /&gt;
* Refactored '''Quick Connect button''' ([https://github.com/multitheftauto/mtasa-blue/commit/5b59e2236b30ec696ac1c05f8bb4e509ec06c0f7 5b59e22] by '''Fernando-A-Rocha''')&lt;br /&gt;
* Added setting to save camera photos in documents folder ([https://github.com/multitheftauto/mtasa-blue/commit/3419b9b7a20e3d1893d673a2a07ee1a0efda1bd5 3419b9b] by '''ffsPLASMA''')&lt;br /&gt;
* Added HUD customization ([https://github.com/multitheftauto/mtasa-blue/commit/5ea0e0fb23b21750207b23191db92562cf9b822c 5ea0e0f] by '''FileEX''')&lt;br /&gt;
* Added sync peds/players animations for new players ([https://github.com/multitheftauto/mtasa-blue/commit/b32eafc70816ece8ad995d98d380d8f6e9950475 b32eafc] by '''FileEX''')&lt;br /&gt;
* From now on, animation progress is preserved even after a restream; the animation will not start from the beginning. ([https://github.com/multitheftauto/mtasa-blue/commit/ad0d6bfdd7bf56b78f7c8c1b9a60597ef9b6dca3 ad0d6bf] by '''FileEX''')&lt;br /&gt;
* Added ability to replace CJ clothing models ([https://github.com/multitheftauto/mtasa-blue/commit/6b823653ecf68e181de91392d5d8931488f90f20 6b82365] by '''W3lac3''')&lt;br /&gt;
* New MTA splash window ([https://github.com/multitheftauto/mtasa-blue/commit/215173eeb1e015c0381ce94f95429c36ab1b4430 215173e] by '''botder''')&lt;br /&gt;
* Fixed multiple damage instances in certain areas during explosions ([https://github.com/multitheftauto/mtasa-blue/commit/3bce4080ec66a993096f9e7fb039cc7d5d0d8175 3bce408] by '''FileEX''')&lt;br /&gt;
* From now on, before disconnecting from the server using the main menu, you will be asked to confirm if you really want to do it ([https://github.com/multitheftauto/mtasa-blue/commit/6aa763fb79701c57402fccca9ae6c0f396fb8f3c 6aa763f] by '''tonievalue''')&lt;br /&gt;
&lt;br /&gt;
== Statistics ==&lt;br /&gt;
&amp;lt;section show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
These are some statistics since the [[Changes in 1.6.0|previous release]].&lt;br /&gt;
* This is the '''28&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt;''' 1.x.x release&lt;br /&gt;
* '''{{date difference|2023|06|16}}''' days&lt;br /&gt;
* '''39''' new functions&lt;br /&gt;
* '''12''' new events&lt;br /&gt;
* '''4''' deprecations&lt;br /&gt;
* '''50+''' bug fixes and changes&lt;br /&gt;
* '''734''' commits ([https://github.com/multitheftauto/mtasa-blue/compare/1.6.0...master mtasa-blue])  ([https://github.com/multitheftauto/mtasa-resources/compare/1.6.0...master mtasa-resources])&lt;br /&gt;
* '''78''' new open GitHub issues ([https://github.com/multitheftauto/mtasa-blue/issues?q=is%3Aopen+is%3Aissue+created%3A2023-06-16..2024-10-01 see list])&lt;br /&gt;
* '''29''' resolved GitHub issues ([https://github.com/multitheftauto/mtasa-blue/issues?q=is%3Aclosed+is%3Aissue+milestone%3A%221.6.1%22 see list])&lt;br /&gt;
* '''28''' closed GitHub issues ([https://github.com/multitheftauto/mtasa-blue/issues?q=is%3Aclosed+is%3Aissue+closed%3A2023-06-16..2024-10-01+no%3Amilestone+-label%3Ainvalid see list])&lt;br /&gt;
* '''30''' new open GitHub pull requests ([https://github.com/multitheftauto/mtasa-blue/pulls?q=is%3Aopen+is%3Apr+created%3A2023-06-16..2024-10-01 see list])&lt;br /&gt;
* '''81''' merged GitHub pull requests ([https://github.com/multitheftauto/mtasa-blue/pulls?q=is%3Apr+is%3Amerged+milestone%3A%221.6.1%22 see list])&lt;br /&gt;
* '''26''' closed GitHub pull requests ([https://github.com/multitheftauto/mtasa-blue/pulls?q=is%3Apr+is%3Aunmerged+closed%3A2023-06-16..2024-10-01 see list])&lt;br /&gt;
* '''2+''' contributors of which '''0+''' are new ([https://github.com/multitheftauto/mtasa-blue/graphs/contributors?from=2023-06-16&amp;amp;to=2024-10-01&amp;amp;type=c see list])&lt;br /&gt;
* '''100+''' total contributors ([https://github.com/multitheftauto/mtasa-blue/graphs/contributors see list])&lt;br /&gt;
* '''3''' vendor updates&lt;br /&gt;
&lt;br /&gt;
&amp;lt;sub&amp;gt;'''Note:''' Last update to these statistics was made {{date difference human friendly|2024|04|04}}.&amp;lt;/sub&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 86 New Features ==&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Added new ''special world properties'' to [[setWorldSpecialPropertyEnabled]] function&lt;br /&gt;
:* Added '''fireballdestruct''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
:* Added '''roadsignstext''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/4a746eca1b5a546a19344a76573a5108ff9d79e6 4a746ec] by '''FileEX''')&lt;br /&gt;
:* Added '''extendedwatercannons''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/13a53959f52c978b416c00b428938f82818b2312 13a5395] by '''FileEX''')&lt;br /&gt;
:* Added '''tunnelweatherblend''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/9a0790ec7fab1efb7817eead371744fcd47da5c5 9a0790e] by ''''gta191977649''')&lt;br /&gt;
:* Added '''ignorefirestate''' special world proeprty ([https://github.com/multitheftauto/mtasa-blue/commit/46f3580fbd8ea5cf48c14cf8fee0bd6eb6691854 46f3580] by '''FileEX''')&lt;br /&gt;
:* Added '''flyingcomponents''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/5ee641436821ae8a59484ac721a4ec929d5cc152 5ee6414] by '''FileEX''')&lt;br /&gt;
:* Added '''vehicleburnexplosions''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/88d303c0bbcc0ed4fee958df2d16ace562ce0108 88d303c] by '''samr46''')&lt;br /&gt;
:* Added '''vehicle_engine_autostart''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/8b3f3440f8bc485f90d466a3fe6f3e5819de9c2f 8b3f344] by '''samr46''')&lt;br /&gt;
&lt;br /&gt;
* Added new ''glitches'' to [[setGlitchEnabled]] function&lt;br /&gt;
:* Added '''vehicle_rapid_stop''' glitch ([https://github.com/multitheftauto/mtasa-blue/commit/3f5801e65d8a51d112b686485d4a2491151c3311 3f5801e], [https://github.com/multitheftauto/mtasa-blue/commit/ef792d6af62443f97014621334c7188dddb4ef29 ef792d6] by '''samr46''' and '''Merlin''')&lt;br /&gt;
&lt;br /&gt;
* New '''file''' functions&lt;br /&gt;
:* Added [[fileGetContents]] ([https://github.com/multitheftauto/mtasa-blue/commit/22930d854ce67d84a4a3b65a61b98a9ffd3f9e38 22930d8] by '''botder''')&lt;br /&gt;
:* Added [[fileGetHash]] ([https://github.com/multitheftauto/mtasa-blue/commit/94f944f508b99b5d7e84fbb0be07a483e10517a9 94f944f] by '''botder''')&lt;br /&gt;
&lt;br /&gt;
* New and updated [[object]] functions&lt;br /&gt;
:* '''[Updated]''' Added [[isObjectMoving]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/7c939adb892c08836462a78cd9b987884cdb49ee 7c939ad] by '''FileEX''')&lt;br /&gt;
:* '''[Updated]''' Added [[breakObject]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/aa1a7853f46fc796a94f38b7df2a5293fb941ba2 aa1a785] by '''FileEX''')&lt;br /&gt;
:* '''[Updated]''' Added [[respawnObject]] and [[toggleObjectRespawn]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/9d65bb673c4df16def27e97a4af74d3b0c7eedc9 9d65bb6] by '''FileEX''')&lt;br /&gt;
:* '''[New]''' Added [[isObjectRespawnable]] ([https://github.com/multitheftauto/mtasa-blue/commit/9d65bb673c4df16def27e97a4af74d3b0c7eedc9 9d65bb6] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New '''file-path''' functions&lt;br /&gt;
:* Added [[pathListDir]], [[pathIsFile]] and [[pathIsDirectory]] ([https://github.com/multitheftauto/mtasa-blue/commit/74781c6295b5b6dc81cd95d4cfab7900d88d7524 74781c6] by '''Tracer''')&lt;br /&gt;
&lt;br /&gt;
* New [[marker]] functions&lt;br /&gt;
:* Added [[setMarkerTargetArrowProperties]] and [[getMarkerTargetArrowProperties]] ([https://github.com/multitheftauto/mtasa-blue/commit/071378ec4326408a9520c79c96befca995d097f6 071378e] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[timer]] functions&lt;br /&gt;
:* Added [[setTimerPaused]] and [[isTimerPaused]] ([https://github.com/multitheftauto/mtasa-blue/commit/69aa420f21fde3ac56e3d3bbc62ef0f060295c0a 69aa420] by '''jvstns''')&lt;br /&gt;
&lt;br /&gt;
* New and updated '''world''' functions&lt;br /&gt;
:* '''[New]''' Added [[resetWorldProperties]] ([https://github.com/multitheftauto/mtasa-blue/commit/6df889e78328b80f8e4bdc02f8761472cf87c54c 6df889e] by '''FileEX''')&lt;br /&gt;
:* '''[Updated]''' Added [[isWorldSpecialPropertyEnabled]] and [[setWorldSpecialPropertyEnabled]] also to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
&lt;br /&gt;
* New and updated [[vehicle]] functions&lt;br /&gt;
:* '''[New]''' Added [[spawnVehicleFlyingComponent]] ([https://github.com/multitheftauto/mtasa-blue/commit/9f54cfcd7a584f413db731052ebed921acfc71ea 9f54cfc] by '''FileEX''')&lt;br /&gt;
:* '''[Upated]''' Added [[setVehicleNitroActivated]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/e9e5819c394987de2b9a5d581c4df9fd47057d9d#diff-49b4b89bf4463f38e70a325131b4da66457d783b1401dde0ffbad723624f8612R130 e9e5819] by '''Proxy-99''')&lt;br /&gt;
:* '''[Updated]''' Added [[addVehicleSirens]] and [[removeVehicleSirens]] to client-side ([https://github.com/multitheftauto/mtasa-blue/commit/682cdca3c37248a9e725b461ba322db413653f25 682cdca] by '''Proxy-99''')&lt;br /&gt;
&lt;br /&gt;
* Updated [[player]] functions&lt;br /&gt;
:* Added [[getPlayerScriptDebugLevel]] to client-side ([https://github.com/multitheftauto/mtasa-blue/commit/8403da54ecfd20d6b9740fb79d90ac936d316112 8403da5] by '''Nico834''')&lt;br /&gt;
&lt;br /&gt;
* Updated [[ped]] functions&lt;br /&gt;
:* Added [[isPedReloadingWeapon]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/e71f4828b46bb69b9622a11d0f700a79f986ee9b e71f482] by '''Nico834''')&lt;br /&gt;
&lt;br /&gt;
* New [[element]] functions&lt;br /&gt;
:* Added [[setElementOnFire]] and [[isElementOnFire]] ([https://github.com/multitheftauto/mtasa-blue/commit/7ad96e2e78fe41f8924d3f105b1683f7363c6fcb 7ad96e2] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
=== Client ===&lt;br /&gt;
====Functions====&lt;br /&gt;
* New '''engine''' functions &lt;br /&gt;
:* Added '''streaming''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/7ffc31243c1dbca8ed5e7b0f8c05da239aa918bd 7ffc312], [https://github.com/multitheftauto/mtasa-blue/commit/6c86ebbf0801c45d5e0bcbb9d9f2e8fd55525b15 6c86ebb], [https://github.com/multitheftauto/mtasa-blue/commit/3c44dc5dcde0a5f98ff470ce9bc64443d47de807 3c44dc5] by '''Pirulax''')&lt;br /&gt;
::* [[engineStreamingSetMemorySize]]&lt;br /&gt;
::* [[engineStreamingGetMemorySize]]&lt;br /&gt;
::* [[engineStreamingRestoreMemorySize]]&lt;br /&gt;
::* [[engineStreamingSetBufferSize]]&lt;br /&gt;
::* [[engineStreamingGetBufferSize]]&lt;br /&gt;
::* [[engineStreamingRestoreBufferSize]]&lt;br /&gt;
::* [[engineStreamingSetModelCacheLimits]]&lt;br /&gt;
:* Added '''model-streaming''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/008eaa7e36ae74bbab7c5bc9861d8f0f890eb945 008eaa7] by '''TheNormalnij''')&lt;br /&gt;
::* [[engineStreamingRequestModel]]&lt;br /&gt;
::* [[engineStreamingReleaseModel]]&lt;br /&gt;
::* [[engineStreamingGetModelLoadState]]&lt;br /&gt;
:* Added new '''TXD''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/3e9a3735a8022a0acabaa3041c8a3f8d91e547b7 3e9a373] by '''TheNormalnij''')&lt;br /&gt;
::* [[engineSetModelTXDID]]&lt;br /&gt;
::* [[engineResetModelTXDID]]&lt;br /&gt;
:* Added '''pools''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/bdf12215d1f6e73d87f5cb0881049aa224b46b65 bdf1221] by '''TheNormalnij''')&lt;br /&gt;
::* [[engineGetPoolCapacity]]&lt;br /&gt;
::* [[engineSetPoolCapacity]]&lt;br /&gt;
::* [[engineGetPoolDefaultCapacity]]&lt;br /&gt;
::* [[engineGetPoolUsedCapacity]]&lt;br /&gt;
:* Added [[enginePreloadWorldArea]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b72fb9d3c9e6813cdf56e53d1a1e72958abd3cf 5b72fb9] by '''MegadreamsBE''')&lt;br /&gt;
&lt;br /&gt;
* New functions for '''Discord RPC''' ([https://github.com/multitheftauto/mtasa-blue/commit/fdaa3aca3e233c7aba69d0fd5f85e78288a4401a fdaa3ac], [https://github.com/multitheftauto/mtasa-blue/commit/ef26810df4542283fee8edcc165bc9be22f2ca98 ef26810], [https://github.com/multitheftauto/mtasa-blue/commit/acfbd40df1ff1432ea1d6663c005d43fce22899c acfbd40] by '''znjvder''', '''tederis''', '''patrikjuvonen''' and '''Deihim007''')&lt;br /&gt;
:* [[setDiscordApplicationID]]&lt;br /&gt;
:* [[setDiscordRichPresenceDetails]]&lt;br /&gt;
:* [[setDiscordRichPresenceState]]&lt;br /&gt;
:* [[setDiscordRichPresenceAsset]]&lt;br /&gt;
:* [[setDiscordRichPresenceSmallAsset]]&lt;br /&gt;
:* [[setDiscordRichPresenceButton]]&lt;br /&gt;
:* [[resetDiscordRichPresenceData]]&lt;br /&gt;
:* [[isDiscordRichPresenceConnected]]&lt;br /&gt;
:* [[setDiscordRichPresencePartySize]]&lt;br /&gt;
:* [[setDiscordRichPresenceStartTime]]&lt;br /&gt;
:* [[setDiscordRichPresenceEndTime]]&lt;br /&gt;
:* [[getDiscordRichPresenceUserID]]&lt;br /&gt;
&lt;br /&gt;
* New [[building]] functions ([https://github.com/multitheftauto/mtasa-blue/commit/81242edb9295efbf4bf8b198b12d577a0877aec2 81242ed], [https://github.com/multitheftauto/mtasa-blue/commit/eb6b18a5d49a7f0f34bdbf42b15f933e42876cf8 eb6b18a] by '''TheNormalnij''')&lt;br /&gt;
:* [[createBuilding]]&lt;br /&gt;
:* '''[Deprecated]''' [[removeAllGameBuildings]] &lt;br /&gt;
:* '''[Deprecated]''' [[restoreAllGameBuildings]] &lt;br /&gt;
&lt;br /&gt;
* New '''world''' functions&lt;br /&gt;
:* Added [[processLineAgainstMesh]] ([https://github.com/multitheftauto/mtasa-blue/commit/acb80a3945d0d5e0230b8a41394a3fe3e70b8d0b acb80a3] by '''Pirulax''')&lt;br /&gt;
:* Added '''volumetric shadows''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/6c93a49c4c2381f4ce84df195d98d36372a47d37 6c93a49] by '''Proxy-99''')&lt;br /&gt;
:::* [[setVolumetricShadowsEnabled]]&lt;br /&gt;
:::* [[isVolumetricShadowsEnabled]]&lt;br /&gt;
:::* [[resetVolumetricShadows]]&lt;br /&gt;
:* Added [[testSphereAgainstWorld]] ([https://github.com/multitheftauto/mtasa-blue/commit/aa90aa5f31e59df455af33b49e3eee5e4f107bfd aa90aa5] by '''FileEX''')&lt;br /&gt;
:* Added [[removeGameWorld]] and [[restoreGameWorld]] ([https://github.com/multitheftauto/mtasa-blue/commit/d7adae68791ce237704acc06bf794b5fbda96f95 d7adae6] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
* New '''drawing''' functions&lt;br /&gt;
:* Added [[dxDrawModel3D]] ([https://github.com/multitheftauto/mtasa-blue/commit/f886a359dd4a680c080da7f132db0527116b5d7a f886a35], [https://github.com/multitheftauto/mtasa-blue/commit/04ef14bbf2182b356155f28d4ed972b0f293632f 04ef14b] by '''CrosRoad95''' and '''tederis''')&lt;br /&gt;
&lt;br /&gt;
* New '''effects/fx''' functions&lt;br /&gt;
:* Added [[fxCreateParticle]] ([https://github.com/multitheftauto/mtasa-blue/commit/8f2730d2e260c3319cb51101c6aedb45e22bbd89 8f2730d] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[ped]] functions&lt;br /&gt;
:* Added [[resetPedVoice]] ([https://github.com/multitheftauto/mtasa-blue/commit/18986a4542db5eb72f6d0dfffb80cb8bb6eb1442 18986a4] by '''Tracer''')&lt;br /&gt;
:* Added new animation features ([https://github.com/multitheftauto/mtasa-blue/commit/aa0591c6f7b529a27b4ed8667e1dc70e68bd9386 aa0591c] by '''Tracer''')&lt;br /&gt;
::* [[getPedAnimationProgress]]&lt;br /&gt;
::* [[getPedAnimationSpeed]]&lt;br /&gt;
::* [[getPedAnimationLength]]&lt;br /&gt;
:* Added [[killPedTask]] ([https://github.com/multitheftauto/mtasa-blue/commit/e4a502bc7619dc3913c70d169f6105ecfb0633ff e4a502b] by '''Proxy-99''')&lt;br /&gt;
:* Added ped shadow features ([https://github.com/multitheftauto/mtasa-blue/commit/26d18288730fd3a7a854152da60c9acd18ab6c6f 26d1828] by '''Proxy-99''')&lt;br /&gt;
::* [[setDynamicPedShadowsEnabled]]&lt;br /&gt;
::* [[isDynamicPedShadowsEnabled]]&lt;br /&gt;
::* [[resetDynamicPedShadows]]&lt;br /&gt;
:* Added [[playPedVoiceLine]] ([https://github.com/multitheftauto/mtasa-blue/commit/7067ac1a73bb0b8c5a1f37794504a00e9703332e 7067ac1] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[player]] functions&lt;br /&gt;
:* Added [[isPlayerCrosshairVisible]] ([https://github.com/multitheftauto/mtasa-blue/commit/03e851a2f5ff2d917ba3c7a1c7577fdb5b8d2a6f 03e851a], [https://github.com/multitheftauto/mtasa-blue/commit/5f21c32fb0725140d6d03476e08de330d429b55a 5f21c32] by '''FileEX''')&lt;br /&gt;
:* New '''HUD''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/5ea0e0fb23b21750207b23191db92562cf9b822c 5ea0e0f] by '''FileEX''')&lt;br /&gt;
::* [[setPlayerHudComponentProperty]]&lt;br /&gt;
::* [[getPlayerHudComponentProperty]]&lt;br /&gt;
::* [[resetPlayerHudComponentProperty]]&lt;br /&gt;
&lt;br /&gt;
* New [[vehicle]] functions&lt;br /&gt;
:* Added [[setVehicleWheelsRotation]] ([https://github.com/multitheftauto/mtasa-blue/commit/aeb113d269fffee7d9ac435ce87b51e905e9efa6 aeb113d] by '''gta191977649''')&lt;br /&gt;
:* Added [[getVehicleEntryPoints]] ([https://github.com/multitheftauto/mtasa-blue/commit/bf588c163cd5bc134771e3842a6585212f06307f bf588c1] by '''MegadreamsBE''')&lt;br /&gt;
:* Added [[setVehicleSmokeTrailEnabled]] and [[isVehicleSmokeTrailEnabled]] for planes ([https://github.com/multitheftauto/mtasa-blue/commit/a5dfc5223358127299511b618ab29da08ff23030 a5dfc52] by '''Proxy-99''')&lt;br /&gt;
:* Added [[setVehicleRotorState]] and [[getVehicleRotorState]] for planes and helicopters ([https://github.com/multitheftauto/mtasa-blue/commit/c7644f2773c37c4e3d40b00807f2e962daca83b6#diff-9a175949acc865a4deea435d73c2082716ab68c6811ef1a657783f3d420dc00fR165 c7644f2] by '''FileEX''')&lt;br /&gt;
:* Added '''vehicle audio''' functions: ([https://github.com/multitheftauto/mtasa-blue/commit/53ee579670ef4ecec28f44627ff99321bba48cbd 53ee579] by '''TheNormalnij''')&lt;br /&gt;
::* [[setVehicleModelAudioSetting]]&lt;br /&gt;
::* [[getVehicleModelAudioSettings]]&lt;br /&gt;
::* [[resetVehicleModelAudioSettings]]&lt;br /&gt;
::* [[setVehicleAudioSetting]]&lt;br /&gt;
::* [[getVehicleAudioSettings]]&lt;br /&gt;
::* [[resetVehicleAudioSettings]]&lt;br /&gt;
&lt;br /&gt;
* New '''camera''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/40ec398bb15e775d1552286eb86fe7aa0dffefa4 40ec398], [https://github.com/multitheftauto/mtasa-blue/commit/d9c2793de2a9f0782ec59cf0ef9907abf935d421 d9c2793] by '''Tracer''')&lt;br /&gt;
:* [[shakeCamera]]&lt;br /&gt;
:* [[resetShakeCamera]]&lt;br /&gt;
&lt;br /&gt;
* New '''game-time''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/b8b7ce555e2f0f0dd74425ac7c91786374513bee b8b7ce5] by '''Proxy-99''')&lt;br /&gt;
:* [[setTimeFrozen]]&lt;br /&gt;
:* [[isTimeFrozen]]&lt;br /&gt;
:* [[resetTimeFrozen]]&lt;br /&gt;
&lt;br /&gt;
* New [[element]] functions&lt;br /&gt;
:* Added [[setElementBoneQuaternion]] and [[getElementBoneQuaternion]] ([https://github.com/multitheftauto/mtasa-blue/commit/10098b0984bf5d5955ea1764e28f616c8a60714f 10098b0] by '''gownosatana''')&lt;br /&gt;
:* Added [[setElementLighting]] ([https://github.com/multitheftauto/mtasa-blue/commit/90fd98a6381991cfa926a9a65b9b934d0343e2b1 90fd98a] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[browser]] functions&lt;br /&gt;
:* Added [[isBrowserGPUEnabled]] ([https://github.com/multitheftauto/mtasa-blue/commit/bfdfdb5f44726df85626e6e3e06c2a319c0c8962 bfdfdb5] by '''Lpsd''')&lt;br /&gt;
&lt;br /&gt;
* New '''weapons''' functions&lt;br /&gt;
:* Added [[setWeaponRenderEnabled]] &amp;amp; [[isWeaponRenderEnabled]] ([https://github.com/multitheftauto/mtasa-blue/commit/efed59b7dc7b076219f1c8a868ef8aa028582127 efed59b] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
====Events====&lt;br /&gt;
* Added [[onClientCoreCommand]] ([https://github.com/multitheftauto/mtasa-blue/commit/b2cf02943924c4972d2a695cdbfd7c9873fc3cbb b2cf029] by '''Pieter-Dewachter''')&lt;br /&gt;
&lt;br /&gt;
* Added [[onClientBrowserConsoleMessage]] ([https://github.com/multitheftauto/mtasa-blue/pull/3676 #3676], [https://github.com/multitheftauto/mtasa-blue/commit/d296a653c5ce2ecfd4f7150d74391b703b773baf d296a65] by '''gownosatana''' and '''Tracer''')&lt;br /&gt;
&lt;br /&gt;
=== Server ===&lt;br /&gt;
====Functions====&lt;br /&gt;
* New [[ACL]] functions&lt;br /&gt;
:* Added [[aclObjectGetGroups]] ([https://github.com/multitheftauto/mtasa-blue/commit/cf46bd8487bdb2d0cafdab1f43936357f670fe10 cf46bd8] by '''Tracer''')&lt;br /&gt;
&lt;br /&gt;
* New '''acl-account''' functions&lt;br /&gt;
:* Added [[getAccountType]] ([https://github.com/multitheftauto/mtasa-blue/commit/545f54b6ae0bfc721abba12402ad3787ed9ae811 545f54b] by '''Tracer''')&lt;br /&gt;
:* Added [[setAccountSerial]] ([https://github.com/multitheftauto/mtasa-blue/commit/a0c2e410f225ebd245a7c5b8031812cf94360097 a0c2e41] by '''camargo2019''')&lt;br /&gt;
&lt;br /&gt;
* New [[vehicle]] functions&lt;br /&gt;
:* Added new vehicle respawn functions ([https://github.com/multitheftauto/mtasa-blue/commit/1ff7137fd4477626d7ef4abfb1c696872cdf0eab 1ff7137], [https://github.com/multitheftauto/mtasa-blue/commit/d93287de761e568400b3b555a277e4ead6546ca3 d93287d] by '''Tracer''')&lt;br /&gt;
::* [[isVehicleRespawnable]]&lt;br /&gt;
::* [[getVehicleRespawnDelay]]&lt;br /&gt;
::* [[getVehicleIdleRespawnDelay]]&lt;br /&gt;
&lt;br /&gt;
* Added [[createBuilding]] to server-side also ([https://github.com/multitheftauto/mtasa-blue/commit/6e221298f4998c576ebf5a783cd0761b89117a7a 6e22129] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
* Security improvements for element-data system ([https://github.com/multitheftauto/mtasa-blue/commit/750d09adb9fd35f4c1b7786966b7ca292e35c200 750d09a] by '''TheNormalnij''')&lt;br /&gt;
:* Added [[onPlayerChangesProtectedData]] event&lt;br /&gt;
:* Added '''elementdata_whitelisted''' tag to the '''mtaserver.conf'''&lt;br /&gt;
:* Added '''clientChangesPolicy''' argument to the [[setElementData]].&lt;br /&gt;
&lt;br /&gt;
* Added new [[Server_mtaserver.conf|mta_server.conf]] tags:&lt;br /&gt;
&amp;lt;!--:* Added object specific contact radius and limit contact check. This can be set in the [[server_mtaserver.conf#object_contact_sync_radius|mtaserver.conf]]([https://github.com/multitheftauto/mtasa-blue/commit/6085796cafd1008ed4a74eae614d651c6c734741 6085796] by '''MegadreamsBE''')--&amp;gt;&lt;br /&gt;
:* Added [[Server_mtaserver.conf#vehicle_contact_sync_radius#vehicle_contact_sync_radius|vehicle_contact_sync_radius]] tag ([https://github.com/multitheftauto/mtasa-blue/commit/e3338c2fbbdb500c4ce28dc0677ceadef1f1ca4c e3338c2] by '''MegadreamsBE''')&lt;br /&gt;
:* Added [[Server_mtaserver.conf#vehicle_contact_sync_radius#check_duplicate_serials|check_duplicate_serials]] tag ([https://github.com/multitheftauto/mtasa-blue/commit/e094942b75117a49cae8c35d6508f37d0cf511fe e094942] by '''Nico834''')&lt;br /&gt;
:* Added [[Server_mtaserver.conf#vehicle_contact_sync_radius#elementdata_whitelisted|elementdata_whitelisted]] tag [https://github.com/multitheftauto/mtasa-blue/commit/750d09adb9fd35f4c1b7786966b7ca292e35c200 750d09a] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
====Events====&lt;br /&gt;
* Added [[onExplosion]] event ([https://github.com/multitheftauto/mtasa-blue/commit/9edffc4997579583407e8c2910264b344cf626a3 9edffc4] by '''botder''')&lt;br /&gt;
* Added [[onPlayerProjectileCreation]] and [[onPlayerDetonateSatchels]] events ([https://github.com/multitheftauto/mtasa-blue/commit/bc404021f66228fb00f1f136a606425da6075daa bc40402] by '''Zangomangu''')&lt;br /&gt;
* Added [[onPlayerTriggerEventThreshold]] event ([https://github.com/multitheftauto/mtasa-blue/commit/eae47fe2f432d9053c425fd515ea27f963c254ec eae47fe] by '''Lpsd''')&lt;br /&gt;
* Added [[onResourceStateChange]] ([https://github.com/multitheftauto/mtasa-blue/commit/cfe9cd9d0006580e7e70dc9e93672e3d1d3b9836 cfe9cd9] by '''Tracer''')&lt;br /&gt;
* Added [[onPlayerTeamChange]] ([https://github.com/multitheftauto/mtasa-blue/commit/c4e18c618db299ea05f5395c798f2a7d6515f5ea c4e18c6] by '''esmail9900''')&lt;br /&gt;
* Added [[onAccountCreate]] and [[onAccountRemove]] ([https://github.com/multitheftauto/mtasa-blue/commit/545f54b6ae0bfc721abba12402ad3787ed9ae811 545f54b] by '''Tracer''')&lt;br /&gt;
* Added [[onPlayerTriggerInvalidEvent]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b4122d35f725e4d258b408253c93e7cbd2ec783 5b4122d] by '''Lpsd''')&lt;br /&gt;
* Added [[onPlayerChangesWorldSpecialProperty]] event ([https://github.com/multitheftauto/mtasa-blue/commit/bbf511d4c5a94fc42d4ead201446fcef8ae430ec bbf511d] by '''Nico834''')&lt;br /&gt;
* Added [[onPlayerChangesProtectedData]] event ([https://github.com/multitheftauto/mtasa-blue/commit/750d09adb9fd35f4c1b7786966b7ca292e35c200 750d09a] by '''TheNormalnij''')&lt;br /&gt;
* Added [[onShutdown]] ([https://github.com/multitheftauto/mtasa-blue/commit/aa20c7d279ac92f1f98c54e79fda7fe00de64e50 aa20c7d] by '''FileEX''')&lt;br /&gt;
* Added [[onPedWeaponReload]] and [[onPlayerWeaponReload]] ([https://github.com/multitheftauto/mtasa-blue/commit/e71f4828b46bb69b9622a11d0f700a79f986ee9b e71f482] by '''Nico834''')&lt;br /&gt;
* Added [[onPlayerTeleport]] ([https://github.com/multitheftauto/mtasa-blue/commit/4000ea4edb37d2d2caeb60a5977f7a38c8a22f06 a38e6ac] by '''imfelipedev''')&lt;br /&gt;
* Added [[onAccountNameChange]] ([https://github.com/multitheftauto/mtasa-blue/commit/078d46b13164c940f3a713039e1a1be6d52c6c76 078d46b] by '''Davis22d''')&lt;br /&gt;
&lt;br /&gt;
== 77 Changes and Bug Fixes ==&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Fixed random toggle of world special properties ([https://github.com/multitheftauto/mtasa-blue/commit/bf95b1d16e31f36899350e2acac4bb8adfad5cdd bf95b1d] by '''samr46''')&lt;br /&gt;
* Many debugscript fixes&lt;br /&gt;
:* Fixed [[onClientDebugMessage]]/[[onDebugMessage]] recognizing level 4 as 0 ([https://github.com/multitheftauto/mtasa-blue/commit/783971efbdfcae622dbc03fd7647c337c2a3a306 783971e] by '''Tracer''')&lt;br /&gt;
:* Fixed outputDebugString level 4 colors ([https://github.com/multitheftauto/mtasa-blue/commit/5d4d7df3b8ff703cf954f3af394c811c489dcb18 5d4d7df] by '''MegadreamsBE''')&lt;br /&gt;
:* Fixed [[outputDebugString]] level 4 not being logged ([https://github.com/multitheftauto/mtasa-blue/commit/1951a5e62d35b2cf4ec292d294f8c818b8463418 1951a5e] by '''MegadreamsBE''')&lt;br /&gt;
:* Fixed outputDebugString with level 4 not showing ([https://github.com/multitheftauto/mtasa-blue/commit/b459973f8ad00aff79042a338a70700a21b426dc b459973] by '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
* Ped sync improvements ([https://github.com/multitheftauto/mtasa-blue/commit/f5b599c9f45777f924f7980cadb2d3cc6431d8b8 f5b599c] by '''tederis''')&lt;br /&gt;
* Fixed &amp;quot;Using setElementHealth on a dead ped makes it invincible&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/836888379dc3e434752ad20c10a8d7d33ffc65a2 8368883] by '''FileEX''')&lt;br /&gt;
* Fixed setting player model resets their current weapon slot ([https://github.com/multitheftauto/mtasa-blue/commit/f7ce562b645cb05a18658df62d093b753b881bb9 f7ce562] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where ''&amp;quot;arrow&amp;quot;'' and ''&amp;quot;checkpoint&amp;quot;'' markers ignored the alpha color ([https://github.com/multitheftauto/mtasa-blue/commit/7988852cf3af9e78f662d76544dc00db408b5c87 7988852] by '''FileEX''')&lt;br /&gt;
* Fixed the goggle effect resetting after changing skin ([https://github.com/multitheftauto/mtasa-blue/commit/1dd291409f791891b54ccf6b1d1cebe08cff13c0 1dd2914] by '''Proxy-99''')&lt;br /&gt;
* Fixed satchels detaching after changing skin ([https://github.com/multitheftauto/mtasa-blue/commit/d93dbf2ca598bf3508364bc7c6337d82c3d9ccb2 d93dbf2] by '''FileEX''')&lt;br /&gt;
* Added '''resourceName''' global variable and added current resource as default argument for [[getResourceName]] ([https://github.com/multitheftauto/mtasa-blue/commit/49fb6c68a27ad85e5abcd563f4c4f8c568305fdb 49fb6c6] by '''Nico834''')&lt;br /&gt;
* Added new parameters '''animGroup''' &amp;amp; '''animID''' for wasted events [[onPlayerWasted]], [[onPedWasted]], [[onClientPlayerWasted]] ([https://github.com/multitheftauto/mtasa-blue/commit/ecd6ed98ca129e7f45bda14384a503bee09495a7 ecd6ed9] by '''Nico834''' and '''G-Moris''')&lt;br /&gt;
* Added optional '''ignoreAlphaLimits''' argument for [[createMarker]] to maintain backward compatibility after adding the ability to change alpha for arrow and checkpoint markers ([https://github.com/multitheftauto/mtasa-blue/commit/121048cb9a14c28dcefca9bf2d4e955ef920a087 121048c] by '''FileEX''')&lt;br /&gt;
* Added optional '''property''' argument for [[getVehicleHandling]] ([https://github.com/multitheftauto/mtasa-blue/commit/a08e38d6507fdc1c051c2b84727c83dd9c418649 a08e38d] by '''XJMLN''')&lt;br /&gt;
* Fixed health value issues ([https://github.com/multitheftauto/mtasa-blue/commit/612f9a6715059baa43182e891258d9c3ceb19591 612f9a6] by '''Tracer''')&lt;br /&gt;
* Fixed [[getTimerDetails]] negative remaining duration ([https://github.com/multitheftauto/mtasa-blue/commit/1c6cab5a94c8c6ff5cf9b1fc0c9bc04808c922f8 1c6cab5] by '''jvstns''')&lt;br /&gt;
* Fixed changing [[setElementCollisionsEnabled]] doesn't update contact element ([https://github.com/multitheftauto/mtasa-blue/commit/71c683f547aac34e876601d24c881227fe3ca05f 71c683f] by '''FileEX''')&lt;br /&gt;
* Removed ability to skip [[addDebugHook]] ([https://github.com/multitheftauto/mtasa-blue/commit/2fecd74fdd453efdcbdddfd8f3fa3c092640cf9f 2fecd74] by '''PlatinMTA''')&lt;br /&gt;
* Fixed hydraulics stopping working after using [[setVehicleHandling]] ([https://github.com/multitheftauto/mtasa-blue/commit/f96836397a075585d4d112eb7d0240f1abf361d4 f968363] by '''FileEX''')&lt;br /&gt;
* Fixed helicopter rotor unaffected by vehicle alpha ([https://github.com/multitheftauto/mtasa-blue/commit/55d39225254c0b9961c1423b0d5695beff20072b 55d3922] by '''FileEX''')&lt;br /&gt;
* Add '''spawnFlyingComponent &amp;amp; breakGlass''' arguments for [[setVehiclePanelState]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b69d700c848e36b2f427bbc6ba5b2c905592783 5b69d70] by '''FileEX''')&lt;br /&gt;
* Fixed armor synchronization ([https://github.com/multitheftauto/mtasa-blue/commit/583e675da976fbf90f45804ad834d8fe33c779a1 583e675] by '''Nico834''')&lt;br /&gt;
* Fixed jetpack disappearing after changing position and coming back after changing skin ([https://github.com/multitheftauto/mtasa-blue/commit/de26a9e98519350f0486290ce886595068c02470 de26a9e] by '''FileEX''')&lt;br /&gt;
* Added support for '''ZLIB''' compression to [[encodeString]] &amp;amp; [[decodeString]]. ([https://github.com/multitheftauto/mtasa-blue/commit/6230161f8d0c83b60aec3f4afa5be88dd213b88b 6230161] by '''samr46''')&lt;br /&gt;
* Fixed a bug where hex color codes were included in the chat message length. ([https://github.com/multitheftauto/mtasa-blue/commit/9a0b1d59233f7001e991262b4df9d1c17850dc08 9a0b1d5] by '''shadylua''')&lt;br /&gt;
&lt;br /&gt;
=== Client ===&lt;br /&gt;
* Update d3dcompiler_47.dll from CEF ([https://github.com/multitheftauto/mtasa-blue/commit/75a1a298113721343090a06d60394f63f64df9ca 75a1a29] and [https://github.com/multitheftauto/mtasa-blue/commit/6d8fd8cc2fe7377318583f70abf58dcdb7d09cb0 6d8fd8c] by '''patrikjuvonen''')&lt;br /&gt;
* Updated translations from Crowdin ([https://github.com/multitheftauto/mtasa-blue/commit/29baf29a0143706eb08ef76c4743a452a7f83600 29baf29] by '''patrikjuvonen''')&lt;br /&gt;
:* Added Azerbaijani to client languages&lt;br /&gt;
* Resolved cursor being invisible with main menu open in certain scenarios ([https://github.com/multitheftauto/mtasa-blue/commit/bb1f675e6fee0ca3967f05afb5d2592dec9459b2 bb1f675] by '''Lpsd''')&lt;br /&gt;
* Partially fixed screen flickering on high memory usage ([https://github.com/multitheftauto/mtasa-blue/commit/1a886460a9fab1041cfba38078ae544b0fa51240 1a88646] by '''Zangomangu''')&lt;br /&gt;
* Added ''texture hit info'' parameter to [[processLineOfSight]] ([https://github.com/multitheftauto/mtasa-blue/commit/86f3344d1371a9783c2c7b755b895160a03ff6cd 86f3344] by '''Pirulax''')&lt;br /&gt;
* Fixed CStreamingSA::GetUnusedStreamHandle ([https://github.com/multitheftauto/mtasa-blue/commit/38624a4c2d18f4b60064d49069d3bcd81fbb4385 38624a4] by '''tederis''')&lt;br /&gt;
* IMG count extension ([https://github.com/multitheftauto/mtasa-blue/commit/1a60f6094b6660d29cabae780e6fbea5f5f1abf2 1a60f60] by '''tederis''')&lt;br /&gt;
* Fixed a desync state after aborted carjacking ([https://github.com/multitheftauto/mtasa-blue/commit/3f510fcdc7722cdfcb2e09ea43990b56aa43162b 3f510fc] by '''Zangomangu''')&lt;br /&gt;
* Allowed allocating clump models ([https://github.com/multitheftauto/mtasa-blue/commit/428561f1ebab49b8370ef0f022510cd67e98ab59 428561f] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash in CEF init ([https://github.com/multitheftauto/mtasa-blue/commit/c782826c955dfbdbaa67852a245e1c601d6b9f2c c782826] by '''TheNormalnij''')&lt;br /&gt;
* Fixed &amp;quot;Changing vehicle model from doorless or &amp;quot;doorful&amp;quot; causes doors to fall off&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/d6659dae263e2883d9e479ca271f0e9c8e622f95 d6659da] by '''FileEX''')&lt;br /&gt;
* Fixed &amp;quot;Wheel visibility when using setVehicleWheelStates&amp;quot;  ([https://github.com/multitheftauto/mtasa-blue/commit/51c9257a427957642932a216bd76cb7de59fea1b 51c9257] by '''FileEX''')&lt;br /&gt;
* Added new world special property ''burnflippedcars'' ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
* Streaming buffer restore and fixes ([https://github.com/multitheftauto/mtasa-blue/commit/6c86ebbf0801c45d5e0bcbb9d9f2e8fd55525b15 6c86ebb] by '''Pirulax''')&lt;br /&gt;
* Fixed Unicode file path passed in CClientIMG ([https://github.com/multitheftauto/mtasa-blue/commit/c57f07bfad8b02953dbe7b2b6e9b9de08ba88226 c57f07b] by '''TheNormalnij''')&lt;br /&gt;
* Added new world special property ''fireballdestruct'' ([https://github.com/multitheftauto/mtasa-blue/commit/219ad73d600140724eefcf5ca4040ac417cdee12 219ad73] by '''samr46''')&lt;br /&gt;
* Fixed &amp;quot;Hide question box when hiding main menu&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/4beff0447f093c66594a5f32ad5e52c7d7188ce9 4beff04] by '''XJMLN''')&lt;br /&gt;
* Fixed engineFreeModel regression ([https://github.com/multitheftauto/mtasa-blue/commit/b52500e92fb2591c092a6e66121471f098a2e044 b52500e] by '''TheNormalnij''')&lt;br /&gt;
* Fixed assert when model info is missing ([https://github.com/multitheftauto/mtasa-blue/commit/d431e5e16120b63beafbfe69110da601d12a76bb d431e5e] by '''TheNormalnij''')&lt;br /&gt;
* Fixed engineFreeModel crashes ([https://github.com/multitheftauto/mtasa-blue/commit/c289c22fb9a13730b7fd793752d84adbf2b928ee c289c22] by '''TheNormalnij''')&lt;br /&gt;
* Filtered URLs in requestBrowserDomains with incorrect symbols ([https://github.com/multitheftauto/mtasa-blue/commit/74bbb068acc6757ff0e04d0c63b999236e51ce63 74bbb06] by '''TheNormalnij''')&lt;br /&gt;
* Fixed issues with ped shaders ([https://github.com/multitheftauto/mtasa-blue/commit/3bc1e6d98ab13a9e7db95cc616b4645dc761889b 3bc1e6d] by '''Merlin''')&lt;br /&gt;
* Fixed 3D primitives disappearing ([https://github.com/multitheftauto/mtasa-blue/commit/04a1e2ba9157e4a1a91297f91554b72a87bf0ed4 04a1e2b] by '''tederis''')&lt;br /&gt;
* Fixed [[svgSetSize]] issues ([https://github.com/multitheftauto/mtasa-blue/commit/721c2b6d0f0c4ab016be079f1d4e28dec0123a6d 721c2b6] by '''Nico834''')&lt;br /&gt;
* Fixed the marker flickering issue during water cannon effects ([https://github.com/multitheftauto/mtasa-blue/commit/e83f700ee24904c0411b4dad3e695b3c3e30d9e4 e83f700] by '''Merlin''')&lt;br /&gt;
* Fixed buildings removal ([https://github.com/multitheftauto/mtasa-blue/commit/1b40db7cb5b63966ee97d0cbe79190360e1d32a0 1b40db7] by '''tederis''')&lt;br /&gt;
* Fixed crashes caused by [[createBuilding]] with [[engineRequestModel]] ([https://github.com/multitheftauto/mtasa-blue/commit/6245a68f3d97fc222d78fbc66b67f422a13710bf 6245a68] by '''TheNormalnij''')&lt;br /&gt;
* Fixed wrong getModelMatrix result for buildings ([https://github.com/multitheftauto/mtasa-blue/commit/f691946bc2d3dac75bd27d31886cd6b66d55811d f691946] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crashes for ''timed-object'' in [[engineRequestModel]] ([https://github.com/multitheftauto/mtasa-blue/commit/229389a4bd1c4c02010ba27ce26a428b41b68560 229389a] by '''TheNormalnij''')&lt;br /&gt;
* Fixed incorrect colors for 3D draws ([https://github.com/multitheftauto/mtasa-blue/commit/1f2c6e75fb71b01f0053f151e766a232ed33692b 1f2c6e7] by '''Nico834''')&lt;br /&gt;
* Add missing definition GuiGridList::getColumnWidth ([https://github.com/multitheftauto/mtasa-blue/commit/b34b1d5362291bcf00c7a0a0b694f60e1dccb363 b34b1d5] by '''Lpsd''')&lt;br /&gt;
* Fixed [[resetPedVoice]] not working at all ([https://github.com/multitheftauto/mtasa-blue/commit/3d8bd504f009fc2aa66e1dc9d35427a889ccd6aa 3d8bd50] by '''Tracer''')&lt;br /&gt;
* Added LOD support for buildings ([https://github.com/multitheftauto/mtasa-blue/commit/77ab3e64a3c6dacdcee02a223b67aec6c5b97ec2 77ab3e6] by '''TheNormalnij''')&lt;br /&gt;
* Added render stages for 3D primitives (new ''stage'' parameter) ([https://github.com/multitheftauto/mtasa-blue/commit/841447684c2d1992656555f81d73da52b2ce5c4f 8414476] by '''tederis''')&lt;br /&gt;
* Added disable option for [[engineSetModelPhysicalPropertiesGroup]] ([https://github.com/multitheftauto/mtasa-blue/commit/b6216cad058582b0feb34e98e94531d4acbf7c5b b6216ca] by '''TheNormalnij''')&lt;br /&gt;
* Fixed return correct value for stuntDistance parameter ([https://github.com/multitheftauto/mtasa-blue/commit/1f464d61c8c5f1400faa5472ccb67d2436d52903 1f464d6] by '''XJMLN''')&lt;br /&gt;
* Fixed [[engineRestoreModelPhysicalPropertiesGroup]] restores incorrect group ([https://github.com/multitheftauto/mtasa-blue/commit/291dfb4bc9bd72307a4ba4b42ffcbfc03ded4e38 291dfb4] by '''TheNormalnij''')&lt;br /&gt;
* Fixed OGG sound files can't be played as RAW data ([https://github.com/multitheftauto/mtasa-blue/commit/2764b7983c4e1bde20b894ebcfef5f230b149030 2764b79] by '''FileEX''')&lt;br /&gt;
* Implement [[getElementBoundingBox]] for buildings ([https://github.com/multitheftauto/mtasa-blue/commit/7b228daea3e0dc22d808abcf0eb568d99efcf63d 7b228da] by '''TheNormalnij''')&lt;br /&gt;
* Fixed streaming size check after [[engineAddImage]] ([https://github.com/multitheftauto/mtasa-blue/commit/5cdc04d6d61f40e89a5da3d27ae9575f4a419a08 5cdc04d] by '''TheNormalnij''')&lt;br /&gt;
* Fixed [[removeWorldModel]] crash ([https://github.com/multitheftauto/mtasa-blue/commit/ae98b04753b54208961759b295bef44f0ffafe43 ae98b04] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash when using [[extinguishFire]] in [[onClientVehicleDamage]] event ([https://github.com/multitheftauto/mtasa-blue/commit/d6ae4e9e24b0b7de704a3cbeec25dfd661b4a3fc d6ae4e9] by '''FileEX''')&lt;br /&gt;
* Fixed weapon models being invisible when using the jetpack with [[setJetpackWeaponEnabled]] ([https://github.com/multitheftauto/mtasa-blue/commit/a68c2c4232c28c6ba5595a814b89be976c4fa9c3 a68c2c4] by '''FileEX''')&lt;br /&gt;
* Fixed animations validation to avoid crashes ([https://github.com/multitheftauto/mtasa-blue/commit/27a24b551d86c6fbf9ee308603f24b011e941399 27a24b5] by '''G-Moris''')&lt;br /&gt;
* Fixed a bug where the &amp;quot;attacker&amp;quot; parameter is always nil in the [[onClientObjectBreak]] event if the object is glass ([https://github.com/multitheftauto/mtasa-blue/commit/dca5e2065af4a0195526541f9a8285db0401616e dca5e20] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where the [[onClientObjectBreak]] event was not triggered if the glass was broken by an explosion ([https://github.com/multitheftauto/mtasa-blue/commit/dca5e2065af4a0195526541f9a8285db0401616e dca5e20] by '''FileEX''')&lt;br /&gt;
* Fixed a bug that prevented players from switching weapons with an active jetpack ([https://github.com/multitheftauto/mtasa-blue/commit/180fbc0b5fdba95450e7a519f78f7588849349bf 180fbc0] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where hitElement in the [[onClientVehicleCollision]] event was always nil for projectiles ([https://github.com/multitheftauto/mtasa-blue/commit/43cc7b3e34eb4680120eb8ebf40d31d845850df2 43cc7b3] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where hydra flares did not work with [[createProjectile]] ([https://github.com/multitheftauto/mtasa-blue/commit/2bdac16d1d868f396786fbfdcfa2595004e1fff5 2bdac16] by '''FileEX''')&lt;br /&gt;
* Fixed inconsistent extra component names ([https://github.com/multitheftauto/mtasa-blue/commit/d4f884935626c638dca0f7f45c71cfb22c4e2d72 d4f8849] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where after changing the key in the bind settings, only the key for the &amp;quot;down&amp;quot; status changed, while the &amp;quot;up&amp;quot; key remained unchanged.([https://github.com/multitheftauto/mtasa-blue/commit/3ebefc37951e24cbfb25035d99045d67571b5324 3ebefc3] by '''FileEX''')&lt;br /&gt;
* Maked frame graph scale accordingly to resolution ([https://github.com/multitheftauto/mtasa-blue/commit/e431474c676a253004a26d86fc9e1a6100d329d4 e431474] by '''ffsPLASMA''')&lt;br /&gt;
* Fixed old [[setElementModel]] memory leak ([https://github.com/multitheftauto/mtasa-blue/commit/4e7afa2586c6992a75ac5312378c1096d87148ae 4e7afa2] by '''tederis''')&lt;br /&gt;
* Fixed [[getObjectProperty]] returns invalid ''air_ressistance'' property ([https://github.com/multitheftauto/mtasa-blue/commit/b51e1116283e9ec453881d3c48229b96c6198d5a b51e111] by '''FileEX''')&lt;br /&gt;
* Fixed missing states in [[getPedControlState]] ([https://github.com/multitheftauto/mtasa-blue/commit/3333a115f1a14f00378161681aeba609b4e993c0 3333a11] by '''FileEX''')&lt;br /&gt;
* Fixed for randomly bright objects after weapon change  ([https://github.com/multitheftauto/mtasa-blue/commit/9b9120c73ec97bf1b2f24703889a62fc19326f1f 9b9120c] by '''FileEX''')&lt;br /&gt;
* Fixed some small problems with Device Selection Dialog ([https://github.com/multitheftauto/mtasa-blue/commit/6f90880bee4d9169d4eda5f6afc63f4ed1bf652f 6f90880] by '''forkerer''')&lt;br /&gt;
* Allow dynamic models to be created as buildings ([https://github.com/multitheftauto/mtasa-blue/commit/642438ec1302daba50b6f6069844e96cbaa31818 642438e] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash when disconnecting from server after creating projectiles ([https://github.com/multitheftauto/mtasa-blue/commit/9ab6104d9c1ec246fde29ae6bf303ae5848bbbe1 9ab6104] by '''TheNormalnij''')&lt;br /&gt;
* Allow client peds to enter/exit client vehicles ([https://github.com/multitheftauto/mtasa-blue/pull/3678 #3678], [https://github.com/multitheftauto/mtasa-blue/commit/67beec77b06897552dc2c756c15283bfdc19b143 67beec7] by '''gownosatana''' and '''Tracer''')&lt;br /&gt;
* Use immersive dark mode on game window ([https://github.com/multitheftauto/mtasa-blue/commit/fd9520498919ae191c718c49b2a5c742bbbf8239 fd95204] by '''FileEX''')&lt;br /&gt;
* Added damageable objects support for [[engineRequestModel]] ([https://github.com/multitheftauto/mtasa-blue/commit/21593b9239765343ad5a4975c9f8424e571a036d 21593b9] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash with [[setElementHealth]] in [[onClientPedDamage]] event ([https://github.com/multitheftauto/mtasa-blue/commit/2d3397df56827f7c218689873f8b4741ea9af44e 2d3397d] by '''FileEX''')&lt;br /&gt;
* Fixed [[setPedControlState]] is aborted when ped created/player join ([https://github.com/multitheftauto/mtasa-blue/commit/8117ebcb95d3e3c35c400ee073a6ebab81e3f9fb 8117ebc] by '''FileEX''')&lt;br /&gt;
* Added '''buildings''' support to [[engineApplyShaderToWorldTexture]] ([https://github.com/multitheftauto/mtasa-blue/commit/fe1dd063170aef6a866bc241c305278a73200fdd fe1dd06] by '''TheNormalnij''')&lt;br /&gt;
* Fixed unintended behavior for ped control states ([https://github.com/multitheftauto/mtasa-blue/commit/a38e6acaf5c0fd83b5627660439f36d380cd26e6 a38e6ac] by '''Nico834''')&lt;br /&gt;
* Fixed SVG colors bug ([https://github.com/multitheftauto/mtasa-blue/commit/04f297b7b1aecb3753c8fbfa19fa9627abf422b4 04f297b] by '''TheNormalnij''')&lt;br /&gt;
* Fixed &amp;quot;CEF Launcher&amp;quot; process remaining after closing MTA ([https://github.com/multitheftauto/mtasa-blue/commit/a6c00278a5329e3b2b870b298d78565b14a7bed2 a6c0027] by '''botder''')&lt;br /&gt;
* Removed ''login'' cmd from chat history ([https://github.com/multitheftauto/mtasa-blue/commit/4639aea8a5544bfa4460bfcc8bba1d5b032e931a 4639aea] by '''PlatinMTA''')&lt;br /&gt;
* Fixed in-game updater dialog incorrectly showing 0% progress ([https://github.com/multitheftauto/mtasa-blue/commit/40d9ac11a9864d4f26c9eb1979e3a30ec0624061 40d9ac1] by '''Dutchman101''')&lt;br /&gt;
* Fixed invalid references counter to TXD after [[engineSetModelTXDID]] (top 1 crash according to players crash stats) ([https://github.com/multitheftauto/mtasa-blue/commit/1b7e9e82997fb4ac2eec5722d9134299902a16e6 1b7e9e8] by '''TheNormalnij''')&lt;br /&gt;
* Fixed server cache memory leak on connecting to another server ([https://github.com/multitheftauto/mtasa-blue/commit/e3476592fc46dc28f9da98f525797ae94ebf3ec3 e347659] by '''Lpsd''')&lt;br /&gt;
* Added the ability to set CPU affinity (CPU 0) in the '''advanced''' tab in the settings ([https://github.com/multitheftauto/mtasa-blue/commit/d04c92b24e7b85f6015fa93192ddda06e9023c85 d04c92b] by '''FileEX''')&lt;br /&gt;
* Fixed crash in ''CClientDisplayManager'' (top 2 crash according to players crash stats) ([https://github.com/multitheftauto/mtasa-blue/commit/0df0a4b40f7aea7c16473d0844a03fcece888420 0df0a4b] by '''Lpsd''')&lt;br /&gt;
* Set main menu FPS limit to current display refresh rate ([https://github.com/multitheftauto/mtasa-blue/commit/acbcc8e03ba8ac677a9c2c8182fb6f24868cae46 acbcc8e] by '''samr46''')&lt;br /&gt;
* [[setSoundEffectParameter]] and [[getSoundEffectParameters]] can be now used also on players! ([https://github.com/multitheftauto/mtasa-blue/commit/20851ecf7d69cc42fc00a62446a87d7e99c1e19d 20851ec] by '''tederis''')&lt;br /&gt;
* Fixed elements sometimes being visible from other dimensions in the current dimension ([https://github.com/multitheftauto/mtasa-blue/commit/9af03b3263a5a320e2f92140f6caa6c94b9fe9a5 9af03b3], [https://github.com/multitheftauto/mtasa-blue/commit/1dff560099459bc1b8248ef50643886158b0d731 1dff560] by '''FileEX''' &amp;amp; '''tederis''')&lt;br /&gt;
* Fixed bug &amp;quot;Copying text from CEF Browser shows Chinese characters in console&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/892beb0457b461d5afd5d91e86763181bdb972d3 892beb0] by '''ColombuxMaximus''')&lt;br /&gt;
* Fixed a bug where hidden vehicle components became visible after changing the variant or handling ([https://github.com/multitheftauto/mtasa-blue/commit/1d81347ee7e2614cd94e4b1807947d2c98b3305f 1d81347] by '''ColombuxMaximus''')&lt;br /&gt;
* Fixed persian characters in main menu &amp;amp; CEGUI ([https://github.com/multitheftauto/mtasa-blue/commit/efb2edfa853aa9a95f39ed9a843c3230b2e627cf efb2edf] by '''tzwer''')&lt;br /&gt;
* Added new movement states to [[getPedMoveState]] and fixed incorrect returning of &amp;quot;fall&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/c43c1b98b8ec0b7253d98c65b405ead482a765d8 c43c1b9], [https://github.com/multitheftauto/mtasa-blue/commit/797331fadbca4367f6cfd43633e48af44a99a115 797331f] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where friendly fire did not prevent fire damage ([https://github.com/multitheftauto/mtasa-blue/commit/9c4397707dd2a94d8a6124d6b502d39793f0d2ba 9c43977] by '''FileEX''')&lt;br /&gt;
* Fixed [[engineReplaceModel]] memory leak &amp;amp; potential crash ([https://github.com/multitheftauto/mtasa-blue/commit/1dbbfd025c5ff791f31e1ef4f255514198f88d0c 1dbbfd0] by '''FileEX''')&lt;br /&gt;
* Fixed '''ALT + F4''' not working ([https://github.com/multitheftauto/mtasa-blue/commit/93963a98f24fdb5e8374baaddaa6d99260be967e 93963a9] by '''lopezloo''')&lt;br /&gt;
* Fixed [[setPedOnFire]] doesn't cancel '''TASK_SIMPLE_PLAYER_ON_FIRE''' ([https://github.com/multitheftauto/mtasa-blue/commit/2a2f31bccd9d90adfc2b03f1f63248b9d016c725 2a2f31b] by '''FileEX''')&lt;br /&gt;
* Fixed crash related to buildings ([https://github.com/multitheftauto/mtasa-blue/commit/4bcded5c89caffd005b266021d3c1bbd83a554cb 4bcded5] by '''tederis''')&lt;br /&gt;
* Fixed client freeze in some locations on the map ([https://github.com/multitheftauto/mtasa-blue/commit/3a376e479201b30b27488a5a674d7d816397e79a 3a376e4] by '''tederis''')&lt;br /&gt;
* Added disconnect warning when using quick connect while connected to server ([https://github.com/multitheftauto/mtasa-blue/commit/be395665c0f5094793b923e9f4fb94056ccff961 be39566] by '''omar-o22''')&lt;br /&gt;
* Added missing trashcan in help section ([https://github.com/multitheftauto/mtasa-blue/commit/853a7d54a25bc09ee421ac837f22201882ece1b7 853a7d5] by '''omar-o22''')&lt;br /&gt;
* Fixed [[getElementsWithinRange]] not working with building element type ([https://github.com/multitheftauto/mtasa-blue/commit/5ad35b46004f4e758348a1a0c0b1024d4becb3c4 5ad35b4], [https://github.com/multitheftauto/mtasa-blue/commit/24bd2187c099a60881cabb001fbb6bb326044c81 24bd218] by '''PlatinMTA''' and '''omar-o22''')&lt;br /&gt;
* Fixed [[getElementDistanceFromCentreOfMassToBaseOfModel]] not working with building element type ([https://github.com/multitheftauto/mtasa-blue/commit/20d36cd3ef687108acf99f97b02965fa5dd6003b 20d36cd] by '''omar-o22''')&lt;br /&gt;
* Added ability to remove all domains from whitelist and blacklist ([https://github.com/multitheftauto/mtasa-blue/commit/280b6cd9917eb8e624fa037f3783eb958123a7a2 280b6cd] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
=== Server ===&lt;br /&gt;
* Fixed bullet sync check in CBulletsyncPacket by verifying total ammo instead of clip ammo ([https://github.com/multitheftauto/mtasa-blue/commit/ca06762413833e1c7f8d17970334607763414a45 ca06762] by '''shadylua''')&lt;br /&gt;
* Check deprecated account name length on [[banPlayer]] to fix all players getting kicked ([https://github.com/multitheftauto/mtasa-blue/commit/b5e2332ca5857f3e984467ca0cb8163ec998ea06 b5e2332] by '''patrikjuvonen''')&lt;br /&gt;
* Fixed a crash in CHandlingManager ([https://github.com/multitheftauto/mtasa-blue/commit/b6867a0d2ed0b4ab12a4461c3f1ca7d667bdedbc b6867a0] by '''Olya-Marinova''')&lt;br /&gt;
* Removed min-version lua function from old MTA versions ([https://github.com/multitheftauto/mtasa-blue/commit/222b2720c93f29977fffb722f8d42ea3fb5f790d 222b272] by '''Olya-Marinova''')&lt;br /&gt;
* Disallow loadstring by default ([https://github.com/multitheftauto/mtasa-blue/commit/89e2d375d12deb026ee91fedc5e1ced04dc9a723 89e2d37] by '''srslyyyy''')&lt;br /&gt;
* Added valid values for 'donotbroadcastlan' setting ([https://github.com/multitheftauto/mtasa-blue/commit/f8d4422ad75c0d7f21894f9f868aa37ec6993a35 f8d4422] by '''Dark-Dragon''')&lt;br /&gt;
* Fixed &amp;quot;ped revives when syncer changes&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/af604ae7dfec742661206fb809f149140ce3a960 af604ae] by '''Zangomangu''')&lt;br /&gt;
* Fixed files not unloading after renaming ([https://github.com/multitheftauto/mtasa-blue/commit/2846e2794af1d9d441b7b988f49af521bd765fb0 2846e27] by '''W3lac3''')&lt;br /&gt;
* Added ability to limit client triggered events via [[triggerServerEvent]] ([https://github.com/multitheftauto/mtasa-blue/commit/eae47fe2f432d9053c425fd515ea27f963c254ec eae47fe] by '''Lpsd''')&lt;br /&gt;
* Added FileExists check to CMainConfig::AddMissingSettings ([https://github.com/multitheftauto/mtasa-blue/commit/1ebaa28e0381fb114b946f2f5a4d4bc5834ebd03 1ebaa28] by '''Lpsd''')&lt;br /&gt;
* Added server side weapon related checks ([https://github.com/multitheftauto/mtasa-blue/commit/86448ea52c7ee13e554a907c424aa3c891e51e31 86448ea] by '''NanoBob''')&lt;br /&gt;
* Added [[dbConnect]] option for MySQL ''&amp;quot;use_ssl=0&amp;quot;'' ([https://github.com/multitheftauto/mtasa-blue/commit/e6476767a9b6848467f0d123830dd2f90bd4442d e647676] by '''Lpsd''')&lt;br /&gt;
* Added ''content'' parameter to [[onPlayerPrivateMessage]] event ([https://github.com/multitheftauto/mtasa-blue/commit/79f8ed6a374d62e5cf1ec707b2ba25e3a959f509 79f8ed6] by '''FileEX''')&lt;br /&gt;
* Fix ability to move server-side vehicles that are far away from the player. New parameter can be set in the [[Server_mtaserver.conf#vehicle_contact_sync_radius|mtaserver.conf]] ([https://github.com/multitheftauto/mtasa-blue/commit/e3338c2fbbdb500c4ce28dc0677ceadef1f1ca4c e3338c2] by '''MegadreamsBE''')&lt;br /&gt;
* Added ''sync'' parameter for vehicles ([https://github.com/multitheftauto/mtasa-blue/commit/f88d31306d3c7fadfbc1542c85922612fd00b131 f88d313] by '''znvjder''')&lt;br /&gt;
* Fixed server-side pickup collision size ([https://github.com/multitheftauto/mtasa-blue/commit/49d97513e1eb2e0c96c5aa5a1d542d14131edd76 49d9751] by '''Proxy-99''') &lt;br /&gt;
* Fixed ''CSimBulletsyncPacket'' crash ([https://github.com/multitheftauto/mtasa-blue/commit/ee8bc92907a112a5584844329dbb07cc82326ad1 ee8bc92] by '''G-Moris''')&lt;br /&gt;
* Fixed onVehicleExit doesn't trigger if pulled out ([https://github.com/multitheftauto/mtasa-blue/commit/af4f7facca73bb68238437e6eff3504bd6f1cfe0 af4f7fa] by '''Proxy-99''')&lt;br /&gt;
* Fixed arguments in [[setPedAnimation]] being ignored when nil was passed ([https://github.com/multitheftauto/mtasa-blue/commit/f6f544e6b54054a06497fdf94cd077b862af8055 f6f544e] by '''FileEX''')&lt;br /&gt;
* Fixed Sirens not removed correctly ([https://github.com/multitheftauto/mtasa-blue/commit/9e419620069ec8ad5828c50295c1901685166cf9 9e41962] by '''Proxy-99''')&lt;br /&gt;
* Fixed a bug where [[setPedWeaponSlot]] did not update data in [[getPedWeapon]] and [[getPedWeaponSlot]] ([https://github.com/multitheftauto/mtasa-blue/commit/9615523faf84f584179412fb8e0cc04f9f4ee48f 9615523] by '''FileEX''')&lt;br /&gt;
* Added '''player''' parameter to [[onVehicleExplode]] ([https://github.com/multitheftauto/mtasa-blue/commit/1ec1f5be69d3ef99bd2e26fd3d008a7cecd0a5ad 1ec1f5b] by '''FileEX''')&lt;br /&gt;
* Excluded '''meta.xml''' from glob patterns for security reasons ([https://github.com/multitheftauto/mtasa-blue/commit/78f6d669adc97c51a825250dd4dbf1a4a4a0ff15 78f6d66] by '''FileEX''')&lt;br /&gt;
* Fixed the bug where changing a vehicle to one with a different number of seats caused passengers to experience network trouble ([https://github.com/multitheftauto/mtasa-blue/commit/1fcd732ca9031060602c8e2425e40ce602d35253 1fcd732] by '''FileEX''')&lt;br /&gt;
* Glob patterns added to meta.xml for HTML files ([https://github.com/multitheftauto/mtasa-blue/commit/7e6b4d02ec113b7ce3a6fd9937a6e8ad0a1ad9cb 7e6b4d0] by '''FileEX''')&lt;br /&gt;
* Fixed console not maintaining position &amp;amp; size when GUI skin changed ([https://github.com/multitheftauto/mtasa-blue/commit/30d8e6dbfe75db47cf396aa909f43c24c4dbe127] by '''NanoBob''')&lt;br /&gt;
* Added '''includeCustom''' argument for [[getValidPedModels]] clientside ([https://github.com/multitheftauto/mtasa-blue/commit/889567a7a0ecb8a8b8d938826d2395ef9f43a76b] by '''Fernando-A-Rocha''')&lt;br /&gt;
* Fixed '''min_mta_version''' tag for server ([https://github.com/multitheftauto/mtasa-blue/commit/8c0a01bac62ecc3e9510133dee9f8d6700065f03 8c0a01b] by '''Fernando-A-Rocha''')&lt;br /&gt;
* Allowed user to pass multiple resource names to start/stop/restart ([https://github.com/multitheftauto/mtasa-blue/commit/6f5fb9c65ee93a5c1692b0d3516a483dcea48f08 6f5fb9c] by '''botder''')&lt;br /&gt;
* Added sync peds/players animations for new players ([https://github.com/multitheftauto/mtasa-blue/commit/b32eafc70816ece8ad995d98d380d8f6e9950475 b32eafc] by '''FileEX''')&lt;br /&gt;
* Optimized processing big files by server ([https://github.com/multitheftauto/mtasa-blue/commit/cb90339aad461d3ee8c1008f2da10934afc38a4c cb90339] by '''AlexTMjugador''')&lt;br /&gt;
* Separate icon for ''mta-server.exe'' ([https://github.com/multitheftauto/mtasa-blue/commit/6cb9d3edf9686749e524f136985cefb53772898e 6cb9d3e] by '''Nico834''')&lt;br /&gt;
* Fixed a bug that caused warnings in debugscript when using depracated function names as variable names ([https://github.com/multitheftauto/mtasa-blue/commit/f23e39521b7e35ad5389e467360fbc525c099887 f23e395] by '''YelehaUwU''')&lt;br /&gt;
* [[onVehicleExplode]] can now be cancelled! ([https://github.com/multitheftauto/mtasa-blue/commit/fcb5b038981066f561f3792c2ae3d97d76d9d0fe fcb5b03] by '''Nico834''')&lt;br /&gt;
* Added '''eventName''' parameter to [[onPlayerTriggerEventThreshold]] ([https://github.com/multitheftauto/mtasa-blue/commit/76d7764c7ec408b77eb7b12379e88882e014527f 76d7764] by '''ColombuxMaximus''')&lt;br /&gt;
&lt;br /&gt;
=== More Technical Changes and Bug Fixes ===&lt;br /&gt;
&amp;lt;section show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
:* Updated CLuaFunctionParser.h ([https://github.com/multitheftauto/mtasa-blue/commit/55647f4023c78a846870f7c96069fab411cff5c5 55647f4] by '''Xenius97''')&lt;br /&gt;
:* Fixed build after above update ([https://github.com/multitheftauto/mtasa-blue/commit/9dcc651d42ae78b7b04257e7612c5b594cb0fffd 9dcc651] by '''Pirulax''')&lt;br /&gt;
:* Fixed std::unordered_map&amp;lt;std::string, std::string&amp;gt; parsing ([https://github.com/multitheftauto/mtasa-blue/commit/005592417b42de63c3d8ba9c572a81cdc8f96164 0055924] by '''tederis''')&lt;br /&gt;
:* Addendum to [https://github.com/multitheftauto/mtasa-blue/pull/3251 #3251] ([https://github.com/multitheftauto/mtasa-blue/commit/9544a34a28d3b4e766d7d07a44d63a8fe45dc506 9544a34] by '''Lpsd''')&lt;br /&gt;
:* Fixes for [https://github.com/multitheftauto/mtasa-blue/pull/3251 #3251] ([https://github.com/multitheftauto/mtasa-blue/commit/07013d24766a6259f4115bd0349a86f790dbf5d0 07013d2] by '''Lpsd''')&lt;br /&gt;
:* Fixed SetStreamingBufferSize possibly accessing memory out-of-bounds ([https://github.com/multitheftauto/mtasa-blue/commit/e08b84fbfe6ad0431605b31c2ba5a50a8f116dc9 e08b84f] by '''Pirulax''')&lt;br /&gt;
:* Added a check to verify itemList validity ([https://github.com/multitheftauto/mtasa-blue/commit/668073787fa6b952d0f1520e8ccae0999dbdba13 6680737] by '''R4ven47''')&lt;br /&gt;
:* Various code clean ups and refactors&lt;br /&gt;
::* Removed COffsetsMP and EU addresses ([https://github.com/multitheftauto/mtasa-blue/commit/52b0115a2d9157b7a153b5f24316ff6fd053e79b 52b0115] by '''Merlin''')&lt;br /&gt;
::* Removed COffsets and EU addresses ([https://github.com/multitheftauto/mtasa-blue/commit/959141de324126245d2b5ebf029c924302ff64e9 959141d] by '''Merlin''')&lt;br /&gt;
::* Clean ups ''multiplayer_sa'' code ([https://github.com/multitheftauto/mtasa-blue/commit/38982043978dd1ec72230569a6d534792e7c18bd 3898204] by '''CrosRoad95''')&lt;br /&gt;
::* Removed old easter-egg &amp;amp; debug code ([https://github.com/multitheftauto/mtasa-blue/commit/b26f80c3d72d628d63807529b408be4b61a5be60 b26f80c], [https://github.com/multitheftauto/mtasa-blue/commit/530212f34fc44e95599ca5e39e608583ecdbb5cc 530212f] by '''botder''' and '''Merlin''')&lt;br /&gt;
::* Refactored entity hierarchy &amp;lt;!-- Fixed accepting possible malicious packets --&amp;gt; ([https://github.com/multitheftauto/mtasa-blue/commit/fdaced046a9421a39de87b81eaf0f7de7c234c4b fdaced0] by '''Tracer''')&lt;br /&gt;
::* Removed unused symbol from ''CConsole'' class ([https://github.com/multitheftauto/mtasa-blue/commit/4fe9084a2e5c5eeed4b0a9a30a07607c812e923b 4fe9084] by '''Nico834''')&lt;br /&gt;
::* Refactored ''CLuaBlipDefs'' ([https://github.com/multitheftauto/mtasa-blue/commit/d05d09be8b9bd1327e37631411fa1e3b16c4dbb7 d05d09b], [https://github.com/multitheftauto/mtasa-blue/commit/c278c12debfd346377354017992543fc7cf6397b c278c12] by '''FileEX''')&lt;br /&gt;
::* Refactored ''CLuaTeamDefs'' ([https://github.com/multitheftauto/mtasa-blue/commit/74ffa1d0138ab3d848b0e081ca265f18ae6c7bd8 74ffa1d], [https://github.com/multitheftauto/mtasa-blue/commit/f37bbada1381370eeadabd4f4dde2a024ec48f5f f37bbad] by '''Nico834''')&lt;br /&gt;
::* Removed dead ''CAnimManagerSA'' code ([https://github.com/multitheftauto/mtasa-blue/commit/d18d7d35fb50fdeea3f70ad688a5857b29867185 d18d7d3] by '''G-Moris''')&lt;br /&gt;
::* Refactored class hierarchy and removed VTBL hacks ([https://github.com/multitheftauto/mtasa-blue/commit/61d1caffb5bfa9c620c08d43280150906dd172d5 61d1caf] by '''TheNormalnij''')&lt;br /&gt;
::* Refactored ''CWeaponSA'' and ''CPedSA'' classes ([https://github.com/multitheftauto/mtasa-blue/commit/a3b7c8519d0d167c66e70c8c7ed5d2f810b7ae39 a3b7c85], [https://github.com/multitheftauto/mtasa-blue/commit/2526a7dd6cde545e600792dcac3ab1b8ece0edec 2526a7d] by '''FileEX''')&lt;br /&gt;
::* Cleaning up client Common.h and moving enums to separate files ([https://github.com/multitheftauto/mtasa-blue/commit/1e56571479217f787b6444d48770f8aa69f14387 1e56571] by '''FileEX''')&lt;br /&gt;
:* Addd Comments to Frame Rate Fixes in CMultiplayerSA_FrameRateFixes.cpp ([https://github.com/multitheftauto/mtasa-blue/commit/e4e6d1b5a9609cb093a191db405c61339d4280d2 e4e6d1b] by '''Merlin''')&lt;br /&gt;
:* Fixed build after CEF update ([https://github.com/multitheftauto/mtasa-blue/commit/9980252446a6869609b1afa1ae1168282a99cb17 9980252] by '''TheNormalnij''')&lt;br /&gt;
:* Bump chromedriver from 114.0.2 to 119.0.1 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/5d8d3756d98b0272687b87c30adca2961eee86c8 5d8d375])&lt;br /&gt;
:* Bump axios from 1.4.0 to 1.6.1 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/ba018013085058905aa789c4fa3f39c4ed32fc69 ba01801])&lt;br /&gt;
:* Fixed file lock after img:destroy ([https://github.com/multitheftauto/mtasa-blue/commit/c2ccfd2c648a2d3f33ead2169262c30533f79bac c2ccfd2] by '''TheNormalnij''')&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
:* Bump follow-redirects from 1.15.2 to 1.15.6 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/437dbcd8024c5217c22ef0e38719f93f33f47ce5 437dbcd])&lt;br /&gt;
:* Fix permission check in File.create method ([https://github.com/multitheftauto/mtasa-blue/commit/92144a4d7383af09dfa05b7bcd3db09fa487e6fd 92144a4] by '''theSarrum''')&lt;br /&gt;
:* mbedTLS fix for cURL 8.8.0 ([https://github.com/multitheftauto/mtasa-blue/commit/4f7e0d87ec04e44d2e47f5b869c2d7c765817c0f 4f7e0d8] by '''Lpsd''')&lt;br /&gt;
:* Discord RPC Tweaks ([https://github.com/multitheftauto/mtasa-blue/commit/8ef351eabe46fd50da096247d8b6fc74508cb911 8ef351e] by '''theSarrum''')&lt;br /&gt;
:* Fixed small overhead in argument parser for strings ([https://github.com/multitheftauto/mtasa-blue/commit/d20582d770dfd2a1677d9981005b3b6d28fb8e4e d20582d] by '''TheNormalnij''')&lt;br /&gt;
:* Bump ws from 8.13.0 to 8.17.1 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/cc172fcae7654ead0d3530a4819c71f76205a175 cc172fc])&lt;br /&gt;
:* Generic exception type for argument parser instead of std::invalid_argument ([https://github.com/multitheftauto/mtasa-blue/commit/2043acfdb210a8f1158501e2fbb431b625bbf74d 2043acf] by '''tederis''')&lt;br /&gt;
:* Added comments for hooks in CMultiplayerSA_CrashFixHacks.cpp ([https://github.com/multitheftauto/mtasa-blue/commit/0327cb1bef9b234451f8a22ece9c6c70fdc9adb0 0327cb1] by '''FileEX''')&lt;br /&gt;
:* Optimization handling ([https://github.com/multitheftauto/mtasa-blue/commit/e3a8bd96d4eccb30e439ba8bd4a2029d01586154 e3a8bd9], [https://github.com/multitheftauto/mtasa-blue/commit/5ac6c8adad9c9ffd4a1c299c7cd548713e485bd6 5ac6c8a] by '''G-Moris''')&lt;br /&gt;
:* Added ability to use varargs in ArgumentParser functions ([https://github.com/multitheftauto/mtasa-blue/commit/8c2f95a5ffade0e7fb212b62282e69d7f433d36f 8c2f95a] by '''Tracer''')&lt;br /&gt;
:* Fixed google-breakpad in newer GCC versions ([https://github.com/multitheftauto/mtasa-blue/commit/5508c7e4058ad9d29cacc9964f8e84df2c60d14f 5508c7e] by '''Tracer''')&lt;br /&gt;
:* Validate serial on player join ([https://github.com/multitheftauto/mtasa-blue/commit/84437e49e6ebca758e1e87d93e7846f9aa99a673 84437e4] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Extract TXD class ([https://github.com/multitheftauto/mtasa-blue/commit/733683d70dc037fdcbb256fb17d86e93b fedd239] by '''TheNormalnij''')&lt;br /&gt;
:* Fixed a bug with desynchronization of the values of some fields of the ''CTickRateSettings'' structure ([https://github.com/multitheftauto/mtasa-blue/commit/af5b6968e0a28dbde7d92f3828dead0f1a936eec af5b696], [https://github.com/multitheftauto/mtasa-blue/commit/514a3b36d09906f09bb32e900c39dc09b1c29d10 514a3b3] by '''nweb''')&lt;br /&gt;
:* Fixed ''MinClientReqCheck'' and improve resource upgrade ([https://github.com/multitheftauto/mtasa-blue/commit/f0954109c0644c551ae3ec1df4474d1857e4bed8 f095410] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Refactored and improved player map (F11) ([https://github.com/multitheftauto/mtasa-blue/commit/2c5cf3226a573637b91d8b255d57113b7043dc28 2c5cf32] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Fixed ''CVector'' optional arguments ([https://github.com/multitheftauto/mtasa-blue/commit/6a70cf7def14db86980a499d0fdf4c63565915e1 6a70cf7] by '''Tracer''')&lt;br /&gt;
:* Fixed memory overwriting by ''EnumToString'' &amp;amp; ''StringToEnum'' ([https://github.com/multitheftauto/mtasa-blue/commit/3ab068ba213abca718ace47ac3bb8df9e4b1c3fc 3ab068b] by '''FileEX''')&lt;br /&gt;
:* Allow using ''std::variant'' with several pointers ([https://github.com/multitheftauto/mtasa-blue/commit/9d776c8bfc2680fc28857fc0a5dc4a4e40d4c3bf 9d776c8] by '''tederis''')&lt;br /&gt;
:* Fixed argument parser not distinguishing arrays from maps ([https://github.com/multitheftauto/mtasa-blue/commit/d4388a2452f4427bd56c3d93b80d4ea74c05b6e5 d4388a2] by '''FileEX''')&lt;br /&gt;
:* Fixed crash with nested arrays/maps in new argument parser ([https://github.com/multitheftauto/mtasa-blue/commit/ca877d33471fabbe970cf03d9d6d9b3413b6daa1 ca877d3] by '''tederis''')&lt;br /&gt;
&lt;br /&gt;
== 13 Vendor Updates ==&lt;br /&gt;
=== Client ===&lt;br /&gt;
* Updated libpng to 1.6.50 ([https://github.com/multitheftauto/mtasa-blue/commit/c24b39d41fd768337c3d336a944588d53dfaba44] by '''Nico834''')&lt;br /&gt;
* Updatee CEF to 127.3.5+g114ea2a+chromium-127.0.6533.120 ([https://github.com/multitheftauto/mtasa-blue/commit/bca4dff8dc490328000d7653a9166704d859b7e5 bca4dff] by '''Dutchman101''')&lt;br /&gt;
* Updated Unifont to 15.1.05 ([https://github.com/multitheftauto/mtasa-blue/commit/02115a5c00e2480bbb3b829b655869e7436de955 02115a5] by '''Dutchman101''')&lt;br /&gt;
&lt;br /&gt;
=== Server ===&lt;br /&gt;
* Updated cURL to 8.14.1 ([https://github.com/multitheftauto/mtasa-blue/commit/7c27c20da7503c68234cde0b726f10a3dcdf85e3] by '''Nico834''')&lt;br /&gt;
* Updated MySQL to 8.4.0 &amp;amp; OpenSSL to 3.3.1 ([https://github.com/multitheftauto/mtasa-blue/commit/a44d673bb8731506418fdbaa6690b339a98d82c1 a44d673] by '''botder''')&lt;br /&gt;
* Updated SQLite to 3.46.0 ([https://github.com/multitheftauto/mtasa-blue/commit/30e31af2ca1ae96e03386670a9df6db70336b968 30e31af] by '''Dutchman101''')&lt;br /&gt;
&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Updated mbedTLS to 3.6.4 ([https://github.com/multitheftauto/mtasa-blue/commit/45955dad5471f49e2784e37cbafd1b92196abe96] by '''Nico834''')&lt;br /&gt;
* Updated 7-Zip Standalone plugins to 24.07 (24.7.0.0) ([https://github.com/multitheftauto/mtasa-blue/commit/9b979b2d5c7f4b885046a85d9895e58416563890 9b979b2] by '''Dutchman101''')&lt;br /&gt;
* Updated freetype to freetype-37cefe3 (freetype/freetype@37cefe3) ([https://github.com/multitheftauto/mtasa-blue/commit/89e022cb8586aba5bdacd7b56c7d45c9b7b95f97 89e022c] by '''Dutchman101''')&lt;br /&gt;
* Updated nvapi from r550 to r555 ([https://github.com/multitheftauto/mtasa-blue/commit/5fdcada80a18af530381b04f54c3c69b6988f479 5fdcada] by '''Dutchman101''')&lt;br /&gt;
* Updated unrar to 7.0.9 ([https://github.com/multitheftauto/mtasa-blue/commit/ab9461be5777427261bc3a330acb4c0f5cdc2c8b ab9461b] by '''Dutchman101''')&lt;br /&gt;
* Updated FreeType to 2.13.2 ([https://github.com/multitheftauto/mtasa-blue/commit/a783e994264d4e954489e31459505c53759ca7f1 a783e99] by '''Dutchman101''')&lt;br /&gt;
* Updated zlib from 1.2.13 to 1.3 ([https://github.com/multitheftauto/mtasa-blue/commit/0f37ac0b18845e9f035d0ca45bbb41b9cd1aa979 0f37ac0] by '''Dutchman101''')&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
=== 46+ Changes and Bug Fixes ===&lt;br /&gt;
&lt;br /&gt;
'''admin'''&lt;br /&gt;
:* Removed execute code functionality for safety reasons ([https://github.com/multitheftauto/mtasa-resources/commit/507a04937524997410e450a6d4292974fa801bf8 507a049] by '''srslyyyy''')&lt;br /&gt;
:* Updated skins.xml ([https://github.com/multitheftauto/mtasa-resources/commit/b5306484a789cc59b05f4182505ac07df3d90e07 b530648] by '''shadylua''')&lt;br /&gt;
:* Fixed warnings ([https://github.com/multitheftauto/mtasa-resources/commit/d7b02022fa8168fc300dd562118100265cf0688b d7b0202] by '''jlillis''')&lt;br /&gt;
:* Making the admin window focused ([https://github.com/multitheftauto/mtasa-resources/commit/33f7cc938d243687fa36fa300ec588b2d057d02c 33f7cc9] by '''Proxy-99''')&lt;br /&gt;
:* Resource settings button is only displayed if there are settings ([https://github.com/multitheftauto/mtasa-resources/commit/0224ef52c699f27bd6e0e6364fbc81ecd0ec345f 0224ef5] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed nil index error and removed invalid characters causing syntax errors ([https://github.com/multitheftauto/mtasa-resources/commit/79857393ddb42f52ee05cf5758d5fdc8c2ff845c 7985739] by '''rad3sh''')&lt;br /&gt;
:* Allow disabling/enabling default reporting system ([https://github.com/multitheftauto/mtasa-resources/commit/0dbb83df7d3e9a20a2c897612db778bf4e395c92 0dbb83d] by '''Viude''')&lt;br /&gt;
:* Updated clientcheckban setting to ban serial instead of IP ([https://github.com/multitheftauto/mtasa-resources/commit/fa5beb96e10d9f30d9565ca212fe901f88e413a5 fa5beb9] by '''Viude''')&lt;br /&gt;
:* Fixed that double clicking on a resource without setting opened the GUI settings window ([https://github.com/multitheftauto/mtasa-resources/commit/82d5b835b503594101a99041498501e19a433a79 82d5b83] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed gridlist bug in weapons/vehicles ([https://github.com/multitheftauto/mtasa-resources/commit/6ba5a88b8a5da4a9df67f20347056754ea5a2c87 6ba5a88] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''admin2'''&lt;br /&gt;
:* Forward-ported permissions widget from admin1 and minor fixes ([https://github.com/multitheftauto/mtasa-resources/commit/25dcc4c655de26de0a2d0eb1b55ef7f3b3f6725e 25dcc4c] by '''Dark-Dragon''')&lt;br /&gt;
:* Fixed /report message viewer widget and minor fixes ([https://github.com/multitheftauto/mtasa-resources/commit/6dbdf2cf90d0e447879bea86942e01caf949b8f5 6dbdf2c] by '''Dark-Dragon''')&lt;br /&gt;
:* Refactored bans functionality ([https://github.com/multitheftauto/mtasa-resources/commit/d8c35b0a38a295d119054c4328a892c4e26be358 d8c35b0] by '''jlillis''')&lt;br /&gt;
:* Fixed messagebox not showing ([https://github.com/multitheftauto/mtasa-resources/commit/5afe0247e6ca44c5754a2d9a6a0af7bc8b57f967 5afe024] by '''FileEX''')&lt;br /&gt;
:* Added missing glitches and world properties ([https://github.com/multitheftauto/mtasa-resources/commit/6856aa075c8e5674379c2a89f355d8b167ab6fdb 6856aa0] by '''FileEX''')&lt;br /&gt;
:* Added content for &amp;quot;Users&amp;quot; sub-tab in the &amp;quot;Rights&amp;quot; tab ([https://github.com/multitheftauto/mtasa-resources/commit/3f8ecca953cc3dfa84e4d1b38b6b4c41f323688b 3f8ecca] by '''FileEX''')&lt;br /&gt;
:* Removed execute code functionality for safety reasons ([https://github.com/multitheftauto/mtasa-resources/commit/c4bc73a2b088b98116ece27065cc7f5a1dced15b c4bc73a] by '''jlillis''')&lt;br /&gt;
:* Replaced checkboxes with a gridlist for glitches and special world properties ([https://github.com/multitheftauto/mtasa-resources/commit/1dcb2953757c6741c93b9c63db33c032183047bc 1dcb295] by '''FileEX''')&lt;br /&gt;
:* Added ability to change server configuration settings ([https://github.com/multitheftauto/mtasa-resources/commit/118d58e383f631f111fe3f2463480182235c71d1 118d58e] by '''FileEX''')&lt;br /&gt;
:* Added content for &amp;quot;Resources&amp;quot; sub-tab in the &amp;quot;Rights&amp;quot; tab ([https://github.com/multitheftauto/mtasa-resources/commit/f16577e24ca9125eac5f2e96621077ad0d213b69 f16577e] by '''FileEX''')&lt;br /&gt;
:* Making the admin window focused ([https://github.com/multitheftauto/mtasa-resources/commit/33f7cc938d243687fa36fa300ec588b2d057d02c 33f7cc9] by '''Proxy-99''')&lt;br /&gt;
:* Fixed panel bind bug after reconnect ([https://github.com/multitheftauto/mtasa-resources/commit/c96bdd5297cf180f947596c1eded8929b4982e6c c96bdd5] by '''ricksterhd123''')&lt;br /&gt;
:* Added the new world special ([https://github.com/multitheftauto/mtasa-resources/commit/08ef1d07ee44540d1f74737e4871288568222331 08ef1d0] by '''omar-o22''')&lt;br /&gt;
:* Updated add ban GUI style ([https://github.com/multitheftauto/mtasa-resources/commit/52aec17bda8b63be70f02385400cf649952ac3ea 52aec17] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''chatmanager'''&lt;br /&gt;
:* Added a new resource for chat handling and management ([https://github.com/multitheftauto/mtasa-resources/commit/4e45cb75a8780b0c191031091a4fcd2d76442aa7 4e45cb7], [https://github.com/multitheftauto/mtasa-resources/commit/3f0f0d09a640178e01de71fa9e9b2caa9c21bcfa 3f0f0d0] by '''omar-o22''' and '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
'''defaultstats'''&lt;br /&gt;
:* Don't re-apply stats on every respawn ([https://github.com/multitheftauto/mtasa-resources/commit/9fde199ec5025052468df0255bf5c5011ef29718 9fde199] by '''Dutchman101''')&lt;br /&gt;
:* Fixed issue where defaultstats did not set player stats correctly ([https://github.com/multitheftauto/mtasa-resources/commit/567d10c552305dae3f57d5c422a34c25f22fdc12 567d10c] by '''MittellBuurman''')&lt;br /&gt;
&lt;br /&gt;
'''editor'''&lt;br /&gt;
:* Various fixes for local spawned or invalid elements ([https://github.com/multitheftauto/mtasa-resources/commit/4e3c57941cd789cff8d9ce240e99edca871a345d 4e3c579] by '''chris1384''')&lt;br /&gt;
:* Various bug fixes and improvements ([https://github.com/multitheftauto/mtasa-resources/commit/4674fa9c6dbff7a1073fb949cac44588c65df3fb 4674fa9] by '''IIYAMA12''')&lt;br /&gt;
:* Fixed rotation issues ([https://github.com/multitheftauto/mtasa-resources/commit/679c01b93132050548a86dba25ead7feaf9d5a1f 679c01b] by '''Nico834''')&lt;br /&gt;
:* Toggleable rotation mechanic and improve threshold ([https://github.com/multitheftauto/mtasa-resources/commit/83e2c79cbd959aa54c55d4220a5b4d38747e8353 83e2c79] by '''chris1384''')&lt;br /&gt;
:* Added missing objects and collisions ([https://github.com/multitheftauto/mtasa-resources/commit/4e83755d51345c0dc8e2e0f2ddf61588bf854641 4e83755] by '''THEGizmoOfficial''')&lt;br /&gt;
&lt;br /&gt;
'''edf'''&lt;br /&gt;
:* Fixed massive lag after stopping ''editor'' resource ([https://github.com/multitheftauto/mtasa-resources/commit/4674fa9c6dbff7a1073fb949cac44588c65df3fb 4674fa9] by '''IIYAMA12''')&lt;br /&gt;
&lt;br /&gt;
'''editor_main'''&lt;br /&gt;
:* Improvements ([https://github.com/multitheftauto/mtasa-resources/commit/5bf553f85cb9c53027814fe666268cb24ed66b2e 5bf553f], [https://github.com/multitheftauto/mtasa-resources/commit/e9b75fd615922c7d70f4e435a05fa933dcb9d2a5 e9b75fd] by '''q8X''')&lt;br /&gt;
:* Add xmlns namespace when saving map ([https://github.com/multitheftauto/mtasa-resources/commit/23fa3f38f71c2f3d28780df1b3ce163ab2eaae84 23fa3f3] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''editor_gui'''&lt;br /&gt;
:* Fixed test panel issues ([https://github.com/multitheftauto/mtasa-resources/commit/e558c846e8b0589997f342f431b36fdc371da000 e558c84] by '''chris1384''')&lt;br /&gt;
&lt;br /&gt;
'''fallout'''&lt;br /&gt;
:* Refactor &amp;amp; many improvements ([https://github.com/multitheftauto/mtasa-resources/commit/c733b69a735d004235ba61b1201ac1412acc6482 c733b69] by '''IIYAMA12''')&lt;br /&gt;
&lt;br /&gt;
'''freeroam'''&lt;br /&gt;
:* Updated skins.xml ([https://github.com/multitheftauto/mtasa-resources/commit/cacbe40a805402dec3a62180b987d4b777817ea6 cacbe40] by '''shadylua''')&lt;br /&gt;
:* Added Walk styles ([https://github.com/multitheftauto/mtasa-resources/commit/4a18d7585a2fa45eaed18d4b4796744a235a23c5 4a18d75] by '''shadylua''')&lt;br /&gt;
:* Security improvements ([https://github.com/multitheftauto/mtasa-resources/commit/2ec92132036d0dc073279dda3c88d71f578d651f 2ec9213] by '''IIYAMA12''')&lt;br /&gt;
:* Fixed freezetime flickering ([https://github.com/multitheftauto/mtasa-resources/commit/b40f27be0274b641c2cddd4c75a6f86f73ea4941 b40f27b], [https://github.com/multitheftauto/mtasa-resources/commit/817aa1ea9130fbccb1a23b7410309af2f8a21ddc 817aa1e] by '''ricksterhd123''' and '''jlillis''')&lt;br /&gt;
:* Fixed map key bind interferes with race editor help ([https://github.com/multitheftauto/mtasa-resources/commit/e62bc5471433b347b16c15709d469209cf202390 e62bc54] by '''MittellBuurman''')&lt;br /&gt;
:* Fixed player blips staying visible after closing spawn map with F1 ([https://github.com/multitheftauto/mtasa-resources/commit/aaf2dd7ed7a0b6b6c6609a4ee5d8319101e8a674 1a5031c] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''hedit'''&lt;br /&gt;
:* Added German localization [[File:Flag_de.png|x14px]] ([https://github.com/multitheftauto/mtasa-resources/pull/568/commits/c58df8666fbccfb0be73f27c52aa680dae2f0c1a bc33634] by '''shadylua''')&lt;br /&gt;
:* Added Brazilian Portuguese localization [[File:Flag_br.png|x14px]] ([https://github.com/multitheftauto/mtasa-resources/commit/d1b85d7dda45293ce497cf03f21eea2f59100b89 d1b85d7] by '''ricksterhd123''')&lt;br /&gt;
:* Added Hungarian localization [[File:Flag_hu.png|x18px]] ([https://github.com/multitheftauto/mtasa-resources/commit/53050dd0bf73a164969480c9277fc3c6b0601b7e 53050dd] by '''Nico834''')&lt;br /&gt;
:* Updated Turkish localization [[File:Tr.gif]] ([https://github.com/multitheftauto/mtasa-resources/commit/3044d00a796488870556b19b088ac505c332952c 3044d00] by '''mahlukat5''')&lt;br /&gt;
:* Updated Spanish localization [[File:Flag_es.png|x18px]] ([https://github.com/multitheftauto/mtasa-resources/commit/b74c2393cc15e403d4588ebb671659c16cc36269 b74c239] by '''kxndrick0''')&lt;br /&gt;
&lt;br /&gt;
'''internetradio'''&lt;br /&gt;
:* Fixed that the GUI window of the resource &amp;quot;internetradio&amp;quot; collides with the GUI window of the resource &amp;quot;helpmanager&amp;quot; ([https://github.com/multitheftauto/mtasa-resources/commit/313f3dde6b7cdb389f11f1a62a6d3e8c093c159f 313f3dd] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Improvements ([https://github.com/multitheftauto/mtasa-resources/commit/a3c9e17cf6b85374b5f9b5881937aee97da94745 a3c9e17] by '''srslyyyy''')&lt;br /&gt;
:* Added attaching to vehicles ([https://github.com/multitheftauto/mtasa-resources/commit/3dd5cbd32f092337707277fbecc5ee54988e07fc 3dd5cbd] by '''ds1-e''')&lt;br /&gt;
:* Added admin commands ([https://github.com/multitheftauto/mtasa-resources/commit/5c160212e190f74461d65fac1668cda07a2d0b11 https://github.com/multitheftauto/mtasa-resources/commit/5c160212e190f74461d65fac1668cda07a2d0b11] by '''ds1-e''')&lt;br /&gt;
:* Added ability to show speaker owner ([https://github.com/multitheftauto/mtasa-resources/commit/6189fc1eefce29c8467c5a1093eaa8bfd8ed97f0 6189fc1] by '''ds1-e''')&lt;br /&gt;
:* Fixed playSound3D and track name showing in other dimensions ([https://github.com/multitheftauto/mtasa-resources/commit/d4c04db009cdd68913fdb47bbc73acd91e63f981 d4c04db] by '''mateo-14'''&lt;br /&gt;
:* Added ability to edit the volume ([https://github.com/multitheftauto/mtasa-resources/commit/73ecb610fdc096926291e8c24c56eea7c43bb4d6 73ecb61], [https://github.com/multitheftauto/mtasa-resources/commit/254700cffdf5c6b054e8f6e17afb4b7342593a85 254700c] by '''omar-o22''' and '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
'''ip2c'''&lt;br /&gt;
:* Added missing fetchRemote aclrequest ([https://github.com/multitheftauto/mtasa-resources/commit/e1364c3ebcc956dbf7f61e2d89741837776edec2 e1364c3] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Added backed up file and .gitignore to ignore the real one (auto-updated) ([https://github.com/multitheftauto/mtasa-resources/commit/e182291a53c3c76a2cf45834ba313aa9d18c16f4 e182291] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''ipb'''&lt;br /&gt;
:* Replaced the onClientResource start event with the onPlayerResourceStart event ([https://github.com/multitheftauto/mtasa-resources/commit/cca3a05adf7fc940b913453a5fad5d5f3c8e3518 cca3a05] by '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
'''parachute'''&lt;br /&gt;
:* Fixed warnings about min_mta_version ([https://github.com/multitheftauto/mtasa-resources/commit/b4119cca4665d63a3043f14c1624ce9c96700b96 b4119cc] by '''NetroX1993''')&lt;br /&gt;
&lt;br /&gt;
'''playerblips'''&lt;br /&gt;
:* Fixed that the resource &amp;quot;playercolors&amp;quot; should be activated for teams ([https://github.com/multitheftauto/mtasa-resources/commit/2cd28db5fa891f361c5af07a491532378a820b83 2cd28db] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Real-time update of settings ([https://github.com/multitheftauto/mtasa-resources/commit/9505b181fe7fc2bab53142746f73bc64a8fd984d 9505b18] by '''Nico834''')&lt;br /&gt;
:* Improved debug messages ([https://github.com/multitheftauto/mtasa-resources/commit/4084e5d369907d3ededd1b2eb19c916983680154 4084e5d] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed that when a player changed or joined teams the color of the blip was not updated ([https://github.com/multitheftauto/mtasa-resources/commit/ff80005f114a3d010624f7d54510ffde47dddb00 ff80005] by '''T-MaxWiese-T''')&lt;br /&gt;
&lt;br /&gt;
'''playercolors'''&lt;br /&gt;
:* Player nametag color should revert to team color when the resource is stopped ([https://github.com/multitheftauto/mtasa-resources/commit/d45d2d0cd963186639d76ab1cb27ef6a042cd0bd d45d2d0] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed chat messages sent twice ([https://github.com/multitheftauto/mtasa-resources/commit/0547cf72514a7dc7efc987f47903c35b310a3b22 0547cf7] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''performancebrowser'''&lt;br /&gt;
:* Fixed player names not being reinitialized on change ([https://github.com/multitheftauto/mtasa-resources/commit/3e0166dc7fa9c11c596a7958b02423b6aeff8410 3e0166d] by '''YelehaUwU''')&lt;br /&gt;
&lt;br /&gt;
'''runcode'''&lt;br /&gt;
:* Added aclrequest for loadstring function ([https://github.com/multitheftauto/mtasa-resources/commit/c40b8095f054b6e87b46e1d53d9b6ec77cf943c7 c40b809] by '''IIYAMA12 ''')&lt;br /&gt;
&lt;br /&gt;
'''scoreboard'''&lt;br /&gt;
:* Replaced drawing arrow from path to texture ([https://github.com/multitheftauto/mtasa-resources/commit/128f26952810804df6acb233ca9476853caa1286 128f269] by '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
'''speedometer'''&lt;br /&gt;
:* Display at resource start ([https://github.com/multitheftauto/mtasa-resources/commit/31a5ac4013c3633647178e695474da6632eb38b8 31a5ac4] by '''Nico834''')&lt;br /&gt;
:* Preventing pointer overflow ([https://github.com/multitheftauto/mtasa-resources/commit/8689cdc247a3fd16125524aac04eb054c398084c 8689cdc] by '''Nico834''')&lt;br /&gt;
&lt;br /&gt;
'''superman'''&lt;br /&gt;
:* Fixes and improvements ([https://github.com/multitheftauto/mtasa-resources/commit/2b3bc102225b2f1c3144cffe290175e9a2c71728 2b3bc10], [https://github.com/multitheftauto/mtasa-resources/commit/e1c06c3c2581c16a6e05401381263a47dd6ac5f0 e1c06c3], [https://github.com/multitheftauto/mtasa-resources/commit/1e4319d180be0f482d42f2f32fbf2c1e5cd440cc 1e4319d] by '''ds1-e''')&lt;br /&gt;
:* Fixed a bug where you couldn't move after death while Superman is active ([https://github.com/multitheftauto/mtasa-resources/commit/715ee57664287083f7ecb299f534bc3093f796a0 715ee57] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''votemanager'''&lt;br /&gt;
:* Fixed lint error ([https://github.com/multitheftauto/mtasa-resources/commit/c8630075317123e510645464a3bf56ebb244573b c863007] by '''Dark-Dragon''')&lt;br /&gt;
&lt;br /&gt;
'''mapfixes'''&lt;br /&gt;
:* A new resource has been added that fixes many holes and bugs in the default map ([https://github.com/multitheftauto/mtasa-resources/commit/23f6bd94370440af5ed79a47bda1ff0caf92fa8e 23f6bd9] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''gps'''&lt;br /&gt;
:* Added export functions for custom logic ([https://github.com/multitheftauto/mtasa-resources/commit/537d92d11b357cf9e795a7bb3ec87c13fa62c7bc 537d92d] by '''T-MaxWiese-T''')&lt;br /&gt;
&lt;br /&gt;
'''deathmatch'''&lt;br /&gt;
:* Improvements and update ([https://github.com/multitheftauto/mtasa-resources/commit/a01ec8a86e636ca61f25a03d4ee30bd898754cbd a01ec8a], [https://github.com/multitheftauto/mtasa-resources/commit/b94ffddfd5b230544d54e5eca8c9c5d87dc69128 b94ffdd] by '''jlillis'''&lt;br /&gt;
&lt;br /&gt;
'''race'''&lt;br /&gt;
:* Fixed automatic nextid assignment breaking ([https://github.com/multitheftauto/mtasa-resources/commit/2c695a9e793825a8cafd2ee3be490d2d8e9ad318 2c695a9] by '''lotsofs''')&lt;br /&gt;
&lt;br /&gt;
'''voice_local'''&lt;br /&gt;
:* Improvements ([https://github.com/multitheftauto/mtasa-resources/commit/53cf63d83169018e0de9f45ecb565958855d717d 53cf63d] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''Others / Uncategorized'''&lt;br /&gt;
:* Refactor of resources meta.xml ([https://github.com/multitheftauto/mtasa-resources/commit/6713b07a459739c06112ac3e608776f3f0696144 6713b07] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
== Extra information ==&lt;br /&gt;
''More detailed information available on our GitHub repositories:&lt;br /&gt;
* [https://github.com/multitheftauto/mtasa-blue MTA:SA Blue]&lt;br /&gt;
* [https://github.com/multitheftauto/mtasa-resources MTA:SA Official Resources]&lt;br /&gt;
&lt;br /&gt;
[[Category:Changelog]]&lt;br /&gt;
[[Category:Incomplete]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Template:Client_PostFX_functions&amp;diff=82633</id>
		<title>Template:Client PostFX functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Template:Client_PostFX_functions&amp;diff=82633"/>
		<updated>2025-12-03T11:12:02Z</updated>

		<summary type="html">&lt;p&gt;O22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;ul&amp;gt;&lt;br /&gt;
{{New feature/item|3.0161|1.6|23644|&lt;br /&gt;
&amp;lt;li&amp;gt;[[getPostFXValue]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getPostFXMode]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[isPostFXEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Client_Scripting_Functions&amp;diff=82632</id>
		<title>Client Scripting Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Client_Scripting_Functions&amp;diff=82632"/>
		<updated>2025-12-03T11:09:37Z</updated>

		<summary type="html">&lt;p&gt;O22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pageclass class=&amp;quot;client&amp;quot;&amp;gt;&amp;lt;/pageclass&amp;gt;&lt;br /&gt;
{{Adding_Pages_to_Categories_and_Templates}}&lt;br /&gt;
This page lists all the '''client-side''' scripting functions that have been implemented and are available as native functions from the Deathmatch mod. To request a function, create an issue in [https://github.com/multitheftauto/mtasa-blue/issues our GitHub repository.]&lt;br /&gt;
 &lt;br /&gt;
For more functions, check the [[Useful_Functions|useful functions page]].&lt;br /&gt;
__TOC__&lt;br /&gt;
 &lt;br /&gt;
==Audio functions==&lt;br /&gt;
{{Audio functions|client}}&lt;br /&gt;
&lt;br /&gt;
==Blip functions==&lt;br /&gt;
'''Shared'''&lt;br /&gt;
{{Blip_functions}}&lt;br /&gt;
&lt;br /&gt;
==Browser functions==&lt;br /&gt;
{{CEF_functions}}&lt;br /&gt;
&lt;br /&gt;
==Building functions==&lt;br /&gt;
{{Building_functions}}&lt;br /&gt;
 &lt;br /&gt;
==Camera functions==&lt;br /&gt;
{{Camera_functions|client}}&lt;br /&gt;
 &lt;br /&gt;
==Clothes and body functions==&lt;br /&gt;
'''Shared'''&lt;br /&gt;
{{Clothes_and_body_functions}}&lt;br /&gt;
&lt;br /&gt;
==Collision shape functions==&lt;br /&gt;
'''Shared'''&lt;br /&gt;
{{Collision_shape_functions}}&lt;br /&gt;
&lt;br /&gt;
==Cursor functions==&lt;br /&gt;
{{Cursor_functions|client}}&lt;br /&gt;
&lt;br /&gt;
==Drawing functions==&lt;br /&gt;
{{Drawing_functions}}&lt;br /&gt;
&lt;br /&gt;
==Discord functions==&lt;br /&gt;
{{Client_Discord_functions}}&lt;br /&gt;
 &lt;br /&gt;
==Effects functions==&lt;br /&gt;
{{Client_Effects_functions}}&lt;br /&gt;
 &lt;br /&gt;
==Element functions==&lt;br /&gt;
{{Element_functions|client}}&lt;br /&gt;
&lt;br /&gt;
==Engine functions==&lt;br /&gt;
{{Engine_functions}}&lt;br /&gt;
 &lt;br /&gt;
==Event functions==&lt;br /&gt;
{{Event_functions|client}}&lt;br /&gt;
&lt;br /&gt;
==Explosion functions==&lt;br /&gt;
'''Shared'''&lt;br /&gt;
{{Explosion_functions}}&lt;br /&gt;
&lt;br /&gt;
==File functions==&lt;br /&gt;
'''Shared'''&lt;br /&gt;
{{File_functions|client}}&lt;br /&gt;
&lt;br /&gt;
==Fire functions==&lt;br /&gt;
{{Fire_functions|client}}&lt;br /&gt;
&lt;br /&gt;
==GUI functions==&lt;br /&gt;
{{GUI_functions}}&lt;br /&gt;
 &lt;br /&gt;
==Input functions==&lt;br /&gt;
{{Input_functions|client}}&lt;br /&gt;
&lt;br /&gt;
==Light functions==&lt;br /&gt;
{{Client_light_functions}}&lt;br /&gt;
 &lt;br /&gt;
==Marker functions==&lt;br /&gt;
{{Marker functions|client}}&lt;br /&gt;
&lt;br /&gt;
==Matrix functions==&lt;br /&gt;
'''Shared'''&lt;br /&gt;
{{Matrix functions}}&lt;br /&gt;
&lt;br /&gt;
==Object functions==&lt;br /&gt;
{{Object functions|client}}&lt;br /&gt;
&lt;br /&gt;
==Output functions==&lt;br /&gt;
{{Output functions|client}}&lt;br /&gt;
&lt;br /&gt;
==Ped functions==&lt;br /&gt;
{{Ped functions|client}}&lt;br /&gt;
&lt;br /&gt;
==Pickup functions==&lt;br /&gt;
'''Shared'''&lt;br /&gt;
{{Pickup_functions}}&lt;br /&gt;
&lt;br /&gt;
==Player functions==&lt;br /&gt;
{{Player_functions|client}}&lt;br /&gt;
&lt;br /&gt;
==Projectile functions==&lt;br /&gt;
{{Projectile_functions|client}}&lt;br /&gt;
&lt;br /&gt;
==Postfx functions==&lt;br /&gt;
{{Client_PostFX_functions}}&lt;br /&gt;
&lt;br /&gt;
==Radar area functions==&lt;br /&gt;
'''Shared'''&lt;br /&gt;
{{Radar functions}}&lt;br /&gt;
&lt;br /&gt;
==Resource functions==&lt;br /&gt;
{{Resource_functions|client}}&lt;br /&gt;
&lt;br /&gt;
==Searchlight functions==&lt;br /&gt;
{{Client_searchlight_functions}}&lt;br /&gt;
 &lt;br /&gt;
==SVG functions==&lt;br /&gt;
{{SVG_functions}}&lt;br /&gt;
 &lt;br /&gt;
==Team functions==&lt;br /&gt;
'''Shared'''&lt;br /&gt;
{{Team_functions}}&lt;br /&gt;
&lt;br /&gt;
==Utility functions==&lt;br /&gt;
{{Utility_functions|client}}&lt;br /&gt;
&lt;br /&gt;
==UTF8 Library==&lt;br /&gt;
'''Shared'''&lt;br /&gt;
{{UTF8_functions}}&lt;br /&gt;
&lt;br /&gt;
==Vehicle functions==&lt;br /&gt;
{{Vehicle_functions|client}}&lt;br /&gt;
&lt;br /&gt;
==Water functions==&lt;br /&gt;
{{Water_functions|client}}&lt;br /&gt;
&lt;br /&gt;
==Weapon functions==&lt;br /&gt;
{{Client_weapon_functions}}&lt;br /&gt;
&lt;br /&gt;
==Weapon creation functions==&lt;br /&gt;
{{Client_weapon_creation_functions}}&lt;br /&gt;
 &lt;br /&gt;
==World functions==&lt;br /&gt;
{{World_functions|client}}&lt;br /&gt;
&lt;br /&gt;
==XML functions==&lt;br /&gt;
'''Shared'''&lt;br /&gt;
{{XML functions}}&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=IsPostFXEnabled&amp;diff=82631</id>
		<title>IsPostFXEnabled</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=IsPostFXEnabled&amp;diff=82631"/>
		<updated>2025-12-03T11:08:22Z</updated>

		<summary type="html">&lt;p&gt;O22: Created page with &amp;quot;__NOTOC__  {{Client function}} {{New feature/item|3.0161|1.6|23644	| Checks whether a specific PostFX effect is currently enabled. }}  ==Syntax==  &amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt; bool IsPostFXEnabled ( string fxType ) &amp;lt;/syntaxhighlight&amp;gt;  ===Required arguments=== *'''fxType''': An string of the PostFX. Possible values are: **'''Gamma''' **'''Brightness''' **'''Contrast''' **'''Saturation'''  ===Returns=== Returns '''true''' if the selected type is enabled, otherwise '''false...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ &lt;br /&gt;
{{Client function}}&lt;br /&gt;
{{New feature/item|3.0161|1.6|23644	|&lt;br /&gt;
Checks whether a specific PostFX effect is currently enabled.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Syntax== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
bool IsPostFXEnabled ( string fxType )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Required arguments===&lt;br /&gt;
*'''fxType''': An string of the PostFX. Possible values are:&lt;br /&gt;
**'''Gamma'''&lt;br /&gt;
**'''Brightness'''&lt;br /&gt;
**'''Contrast'''&lt;br /&gt;
**'''Saturation'''&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns '''true''' if the selected type is enabled, otherwise '''false'''&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
This example gets whether the gamma PostFX is enabled and displays it in the chat.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
addCommandHandler(&amp;quot;isGammaEnabled&amp;quot;, &lt;br /&gt;
    function()&lt;br /&gt;
        local isEnabled = isPostFXEnabled(&amp;quot;Gamma&amp;quot;)&lt;br /&gt;
        outputChatBox(&amp;quot;Your gamma mode is: &amp;quot;..(isEnabled and &amp;quot;Enabled&amp;quot; or &amp;quot;Disabled&amp;quot;))&lt;br /&gt;
    end, false, false&lt;br /&gt;
)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Client_PostFX_functions}}&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=GetPostFXValue&amp;diff=82630</id>
		<title>GetPostFXValue</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=GetPostFXValue&amp;diff=82630"/>
		<updated>2025-12-03T11:06:32Z</updated>

		<summary type="html">&lt;p&gt;O22: Created page with &amp;quot;__NOTOC__  {{Client function}} {{New feature/item|3.0161|1.6|23644| Gets the current float value of the selected PostFX type. }}  ==Syntax==  &amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt; float getPostFXValue ( string fxType ) &amp;lt;/syntaxhighlight&amp;gt;  ===Required arguments=== *'''fxType''': An string of the PostFX. Possible values are: **'''Gamma''' **'''Brightness''' **'''Contrast''' **'''Saturation'''  ===Returns=== Returns the current value of the specified PostFX parameter.  ==Example== T...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ &lt;br /&gt;
{{Client function}}&lt;br /&gt;
{{New feature/item|3.0161|1.6|23644|&lt;br /&gt;
Gets the current float value of the selected PostFX type.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Syntax== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
float getPostFXValue ( string fxType )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Required arguments===&lt;br /&gt;
*'''fxType''': An string of the PostFX. Possible values are:&lt;br /&gt;
**'''Gamma'''&lt;br /&gt;
**'''Brightness'''&lt;br /&gt;
**'''Contrast'''&lt;br /&gt;
**'''Saturation'''&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns the current value of the specified PostFX parameter.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
This example gets the current gamma PostFX value and display it in the chat.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
addCommandHandler(&amp;quot;getGammaValue&amp;quot;, &lt;br /&gt;
    function()&lt;br /&gt;
        local gammaValue = getPostFXValue(&amp;quot;Gamma&amp;quot;)&lt;br /&gt;
        outputChatBox(&amp;quot;Your gamma value is: &amp;quot;..tostring(gammaValue))&lt;br /&gt;
    end, false, false&lt;br /&gt;
)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Client_PostFX_functions}}&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=GetPostFXMode&amp;diff=82629</id>
		<title>GetPostFXMode</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=GetPostFXMode&amp;diff=82629"/>
		<updated>2025-12-03T11:05:40Z</updated>

		<summary type="html">&lt;p&gt;O22: Created page with &amp;quot;__NOTOC__  {{Client function}} {{New feature/item|3.0161|1.6|23644| Gets the current mode of PostFX. }}  ==Syntax==  &amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt; int getPostFXMode ( ) &amp;lt;/syntaxhighlight&amp;gt;  ===Returns=== An integer for the current PostFX mode: * 0: Disabled * 1: Enabled in fullscreen mode * 2: Enabled in windowed/borderless mode  ==Example== This example gets the current PostFX mode and displays it in the chat. &amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt; local modes = {     [0] = &amp;quot;Disabl...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ &lt;br /&gt;
{{Client function}}&lt;br /&gt;
{{New feature/item|3.0161|1.6|23644|&lt;br /&gt;
Gets the current mode of PostFX.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Syntax== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
int getPostFXMode ( )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
An integer for the current PostFX mode:&lt;br /&gt;
* 0: Disabled&lt;br /&gt;
* 1: Enabled in fullscreen mode&lt;br /&gt;
* 2: Enabled in windowed/borderless mode&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
This example gets the current PostFX mode and displays it in the chat.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
local modes = {&lt;br /&gt;
    [0] = &amp;quot;Disabled&amp;quot;,&lt;br /&gt;
    [1] = &amp;quot;Enabled in fullscreen mode&amp;quot;,&lt;br /&gt;
    [2] = &amp;quot;Enabled in windowed/borderless mode&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
addCommandHandler(&amp;quot;getMyMode&amp;quot;, &lt;br /&gt;
    function()&lt;br /&gt;
        local currentMode = getPostFXMode()&lt;br /&gt;
        outputChatBox(&amp;quot;Your PostFX mode is: &amp;quot;..modes[currentMode])&lt;br /&gt;
    end, false, false&lt;br /&gt;
)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Client_PostFX_functions}}&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Template:Client_PostFX_functions&amp;diff=82628</id>
		<title>Template:Client PostFX functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Template:Client_PostFX_functions&amp;diff=82628"/>
		<updated>2025-12-02T21:47:42Z</updated>

		<summary type="html">&lt;p&gt;O22: Created page with &amp;quot;&amp;lt;ul&amp;gt; &amp;lt;li&amp;gt;getPostFXValue&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt;getPostFXMode&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt;isPostFXEnabled&amp;lt;/li&amp;gt; &amp;lt;/ul&amp;gt;&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getPostFXValue]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getPostFXMode]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[isPostFXEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Template:Useful_Functions&amp;diff=82627</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=82627"/>
		<updated>2025-12-01T19:06:36Z</updated>

		<summary type="html">&lt;p&gt;O22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
=== Table functions ===&lt;br /&gt;
*[[addTableChangeHandler]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function monitors the changes of a table.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[pairsByKeys]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function sort pairs table.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[rangeToTable]] &amp;lt;span style=&amp;quot;color:gray; 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-size:smaller;&amp;quot;&amp;gt;» This function protects a table and makes it read-only.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[setTableToSql]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function is used to save the table in the database (sql).&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[Sort_Functions]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» These functions are able to sort your tables by a key.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getKeyFromValueInTable]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[getTableFromSql]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This functionality is used to obtain saved tables using the function ([https://wiki.multitheftauto.com/wiki/SetTableToSql SetTableToSql ]).&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isValueInTable]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns true if the value exists in the table, false if the value does not exist in the table.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[table.compare]] &amp;lt;span style=&amp;quot;color:gray; 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.copy]] &amp;lt;span style=&amp;quot;color:gray; 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.deepmerge]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function deep merges two tables. Every nested table will be correspondingly merged.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[table.element]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns a new table with only userdata content.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[table.flip]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns the table from the last value to the first value, such as reflection.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[table.getRandomRows]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns random rows from table.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[table.map]] &amp;lt;span style=&amp;quot;color:gray; 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-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-size:smaller;&amp;quot;&amp;gt;» This function retrieves a random value from a table.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[table.removeValue]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function removes a specified value from a table.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[table.size]] &amp;lt;span style=&amp;quot;color:gray; 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.flatten]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function converts a nested table into a flattened table with concatenated keys.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== ACL functions ===&lt;br /&gt;
*[[aclGroupClone]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function clone a group to another group with/without ACLs and/or objects.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[renameAclGroup]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[getPlayersInACLGroup]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns all players in an ACL group.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isPlayerInACL]] &amp;lt;span style=&amp;quot;color:gray; 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;
&lt;br /&gt;
=== Account functions ===&lt;br /&gt;
*[[getPlayerFromAccountName]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function is used to obtain a player by the name of his account.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isPlayerAccount]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function checks if the account is a valid player account (account exists and is not a guest account)&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-size:smaller;&amp;quot;&amp;gt;» This function allows you to create a cinematic camera flight.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[sCamera]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» The function creates a speed camera in-game, fines speeding vehicles, and notifies the driver and take money from player based on vehicle speed.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Colshape functions ===&lt;br /&gt;
*[[createGarageColShape]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function creates a collision shape from the specified garage.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Cursor functions ===&lt;br /&gt;
*[[getCursorMovedOn]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[setCursorCenteredOnRectangle]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This functions will center the cursor inside a rectangle.&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-size:smaller;&amp;quot;&amp;gt;» This function draws an animated 2D window on the screen.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawBorderedRectangle]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This is a function that will create a bordered rectangle.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawBorderedText]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This is a function that will create a bordered text.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawDashedLine]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function draws a line with dashes.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawEditbox]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function draws a edit box across the screen - rendered for one frame. This should be used in conjunction with '''onClientRender''' in order to display continuously.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawGifImage]] &amp;lt;span style=&amp;quot;color:gray; 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-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-size:smaller;&amp;quot;&amp;gt;» This function draws an image on any element.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawLinedRectangle]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[dxDrawLoading]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function draws a loading bar on the screen.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawOctagon3D]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function creates a 3D Octagon&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawPolygon]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function draws a custom polygon on the screen.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawProgressBar]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function simulates a progress bar drawed using DirectDraw.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawRectangle3D]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function draws a 3D rectangle in GTA world.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawRectangleOnPlayer]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function draws a 3D rectangle above the player.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawRing]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function draws a ring with dx lines.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawRombo]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function creates a Rhombus.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawSprite]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function draw a sprite in the 3D world.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawTextOnElement]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function draws a text on any element.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawTextOnRectangle]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» Esta funcion crea un rectangle con un texto dentro.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawTriangle]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[dxDrawBordered3DLine]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;»This function creates a bordered area with 3D dx lines.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxFade]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function fade-in or fade-out any dxDraw by gradually changing its alpha value.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxGetFontSizeFromHeight]] &amp;lt;span style=&amp;quot;color:gray; 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-size:smaller;&amp;quot;&amp;gt;» This function calculates the height of a font.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[wordWrap]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function breaks a long string into a table of separate lines limited to a specific length in pixels, for drawing separately.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[CreateRectangle3D]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This is a function that will create a 3d rectangle on the player screen.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getScreenStartPositionFromBox]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function helps with getting the correct position for your dx-effects.&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-size:smaller;&amp;quot;&amp;gt;» This function allows you attach an effect to an element.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[setScreenFlash]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function will make the screen flash(like a screenshot).&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Element functions === &lt;br /&gt;
*[[autoAttach]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function attaches one element into another at the same position and rotation they are.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[attachElementToBone]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to attach an element to ped bone accurately using new bone functions.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getElementDirectionCardialPoint]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns the direction of the element according to the ''wind rose''.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getElementSpeed]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[getElementUsingData]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns table elements that contains the elements data with the given key and value.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getElementZoneFullName]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to retrieve the zone full name of a element.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getElementsInDimension]] &amp;lt;span style=&amp;quot;color:gray; 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-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;
*[[getNearestElement]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns the nearest element (of a specific type) to a player.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getPositionInFrontOfElement]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns position in provided distance away from element, including element's rotation.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isElementInAir]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function checks if an element is in air or not.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isElementInPhotograph]] &amp;lt;span style=&amp;quot;color:gray; 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-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-size:smaller;&amp;quot;&amp;gt;» This function checks if an element is moving.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isElementPlayer]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function checks whether the element is a player or not.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isElementWithinAColShape]] &amp;lt;span style=&amp;quot;color:gray; 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-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-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;
*[[getElementResourceName]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns the name of the resource that created an element.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Events ===&lt;br /&gt;
*[[onClientPlayerTimeChange]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This code implements an event that is triggered when the player's real time change.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[onPlayerZoneChange]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This code implements an event that is triggered when the player enters a new area on the map.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[onVehicleWeaponFire]] &amp;lt;span style=&amp;quot;color:gray; 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-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;
*[[unbindControlKeys]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[getBoundControls]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[isCommandHandlerAdded]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to check if a command is added or not in the respective resource.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Data functions === &lt;br /&gt;
*[[levenshtein]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function can be used to calculate the Levenshtein distance between two strings.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[gregorianToJalali]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function converts gregorian date to jalali/shamsi date.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[byte2human]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function converts an integer (number of bytes) into a human-readable unit.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[capitalize]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function capitalizes a given string.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[convertDate]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function converts date to another look.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[convertServerTickToTimeStamp]] &amp;lt;span style=&amp;quot;color:gray; 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-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;
*[[findRotation3D]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function takes two sets of XYZ coordinates. It returns the 3D direction from point A to point B.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[findRotation]] &amp;lt;span style=&amp;quot;color:gray; 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-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;
*[[formatNumber]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function formats large numbers by adding commas.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[generateRandomASCIIString]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[generateString]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function generates a random string with any characters.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getAge]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function calculates the age of a given birthday.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getDistanceBetweenElements]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» Returns the distance between two elements.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getDistanceBetweenPointAndSegment2D]] &amp;lt;span style=&amp;quot;color:gray; 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-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;
*[[getElementRelatedAngle]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns the related angle between one element to another. This is useful to check which side an element is to another.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getFreeDimension]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function get free dimension.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getOffsetFromXYZ]] &amp;lt;span style=&amp;quot;color:gray; 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-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;
*[[getRealMonth]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns the current month name&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-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-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;
*[[getServerAveragePing]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function gets average players ping.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[gradientString]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function transforms a string in a new coloured gradient string.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[hex2rgb]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function convert hex to rgb.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[hexColorToRGB]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function convert hex string/number to RGBA values.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isLeapYear]] &amp;lt;span style=&amp;quot;color:gray; 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-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-size:smaller;&amp;quot;&amp;gt;» This function is used to remove hexadecimal numbers (colors, for example) from strings.&lt;br /&gt;
*[[RGBToHex]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[RGBToHSV]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function convert RGB to HSV color space.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[RGBToDecimal]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function convert RGB to Decimal color.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[secondsToTimeDesc]] &amp;lt;span style=&amp;quot;color:gray; 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-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-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;
*[[string.insert]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function inserts a string within another string at a given position.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[splitMultiple]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function improves the split function so that multiple characters can be used as the split at character.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[switch]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[tocolor2rgba]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function convert tocolor to rgba.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[toHex]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[var dump]] &amp;lt;span style=&amp;quot;color:gray; 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-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;
*[[fixPersianString]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns a fixed sorted bilingual RTL for strings consisting of Farsi/Arabic and English.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getColorName]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function retrieves the nearest color name for a given RGB value using an online API.&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-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;
*[[isMouseOnGUICloseButton]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to check whether the mouse cursor/pointer is within a gui-window's native close button.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isMouseOnGuiElement]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to check whether or not your mouse is over a specific gui element, this is especially useful if the gui element has a parent. &amp;lt;/span&amp;gt;&lt;br /&gt;
*[[guiMoveElement]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function moves guiElement by/like using moveObject.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[guiSetStaticImageMovable]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to move a static image like a gui window.&amp;lt;/span&amp;gt;&lt;br /&gt;
=====Comboboxes=====&lt;br /&gt;
*[[guiComboBoxAdjustHeight]] &amp;lt;span style=&amp;quot;color:gray; 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;
&lt;br /&gt;
=====Gridlists=====&lt;br /&gt;
*[[convertGridListToText]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function converts grid list contents to text.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getGridListRowIndexFromText]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[guiGridListAddPlayers]] &amp;lt;span style=&amp;quot;color:gray; 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-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;
*[[guiGridListGetColumnIDFromTitle]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function gets a gridlist's column ID from the column title.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[guiGridListGetSelectedText]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[guiGridListSetColumnNonSortable]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function makes a gridlist column become non-sortable.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=====Labels=====&lt;br /&gt;
*[[guiLabelAddEffect]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function add an effects to the gui-label like (shadow, outline).&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Marker functions ===&lt;br /&gt;
*[[createMarkerAttachedTo]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function creates a marker that is attached to an element.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Math functions ===&lt;br /&gt;
*[[reMap]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» Re-maps a number from one range to another.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[math.clamp]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns the number between range of numbers or it's minimum or maximum.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[math.getBezierPoint]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» Get N-th order bezier point.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[math.hypot]] &amp;lt;span style=&amp;quot;color:gray; 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.isPointInPolygon]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» Check if point is inside polygon or not.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[math.lerp]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» Get val between two integer.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[math.percent]] &amp;lt;span style=&amp;quot;color:gray; 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.polygonArea]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» Compute area of any polygon.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[math.randomDiff]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» Generates a pseudo-random integer that's always different from the last random number generated.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[math.rotVecToEulerAngle]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» Rotation Vector To Euler Angle&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[math.round]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[mathNumber]] &amp;lt;span style=&amp;quot;color:gray; 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.percentProgress|math.percentProgress]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» Returns a percentage progress from two specific values.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[math.average]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns the simple arithmetic mean of multiple numbers.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[math.absin]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns a formula representing the just positive half of a sine wave.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Map functions ===&lt;br /&gt;
*[[assignLod]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function lets you conveniently generate and apply a LOD model to a mapping object.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getWorldPositionFromMapPosition]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function converts an F11 map position to world position.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getClosestPoint]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function finds the closest point from a given element to a list of points in 2D space.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Ped functions ===&lt;br /&gt;
*[[getAlivePlayersInTeam]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[getGuestPlayers]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[getOnlineAdmins]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[getPedEyesPosition]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to get peds eyes position.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getPedGender]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to get peds their gender.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getPedMaxHealth]] &amp;lt;span style=&amp;quot;color:gray; 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-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;
*[[getPedWeaponSkill]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns a ped's corresponding weapon skill level name.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getPedHitBone]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function gets the approximate number of the bone where the ped is hit.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getPlayerFromNamePart]] &amp;lt;span style=&amp;quot;color:gray; 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-size:smaller;&amp;quot;&amp;gt;» This function returns a player from their serial.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getPlayersByData]] &amp;lt;span style=&amp;quot;color:gray; 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-size:smaller;&amp;quot;&amp;gt;» This function returns a table of all players in photograph.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getPlayersInVehicles]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns a table of the players insides vehicles from a specified dimension.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getPlayerNameFromID]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function will get the player name from the ID element data.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isPedAiming]]&amp;lt;span style=&amp;quot;color:gray; 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;
*[[isPedAimingNearPed]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[isPedDiving]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This feature checks that pedestrian is diving in the water.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isPedDrivingVehicle]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[isPedNearbyWall]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function checks if player/ped is nearby a objects like buildings or walls.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isPlayerInTeam]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[setPedAttack]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function will make a ped attack a specified target.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[setPedFollow]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function will make a ped follow a specified target.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isPedFalling]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function checks if the player/ped is falling from a high place.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Player functions ===&lt;br /&gt;
*[[countPlayersInRange]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns the number of players that are within a certain range of the specified coordinates.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getPlayerPreviousAndNextWeapon]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns the player previous and next weapon.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getPlayersInRange]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function make a table of players within certain range.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isPlayerActuallyInVehicle]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function checks if a player is actually in a vehicle instead of just in the process of entering.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isPlayerHitByVehicle]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function cancels event when a element is hit by a vehicle.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[toggleAllVehicleControls]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function toggles all vehicle controls for a player on or off based on the provided boolean value.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isPlayerNameRandomized]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function Checks whether the given player name looks like an automatically-generated random nickname.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Resource functions ===&lt;br /&gt;
*[[getResourceScripts]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns a table of the resource scripts.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getResourceSettings]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns a table of the resource settings.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getResourceSize]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns the size of a specified resource in kB(kilobyte)&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[refreshResource]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function refreshes your resource if you changed any of the files&lt;br /&gt;
*[[setResourcePriority]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function set resource download priority group.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Sound functions ===&lt;br /&gt;
*[[isSoundFinished]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function checks if a sound element has finished.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[stopSoundSlowly]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function stop your sound element slowly.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Browser functions ===&lt;br /&gt;
*[[playVideo]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function plays a video on the screen.&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-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-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 functions ===&lt;br /&gt;
*[[findEmptyCarSeat]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function finds you the first empty seat in a vehicle.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getNearestVehicle]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function gets the nearest vehicle to the specified player in a specified distance.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getRandomVehicle]] &amp;lt;span style=&amp;quot;color:gray; 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-size:smaller;&amp;quot;&amp;gt;» This function returns a table of all valid vehicle models.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getVehiclesCountByType]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[getVehicleTurnVelocityCenterOfMass]]&amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function gets a vehicle's turn velocity relative to the vehicle's center or mass.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isVehicleDoubleExhaust]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function checks is exhaust vehicle double.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isVehicleEmpty]] &amp;lt;span style=&amp;quot;color:gray; 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-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-size:smaller;&amp;quot;&amp;gt;» This function checks whether vehicle is on roof.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isVehicleOnFire]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function checks if the vehicle is on fire or not.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isVehicleReversing]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function checks if a specified vehicle is moving backwards.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isVehicleUpgraded]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function checks is vehicle upgraded by upgrade ID.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[setVehicleGravityPoint]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[setVehicleTurnVelocityCenterOfMass]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function sets a vehicle's turn velocity relative to the vehicle's center or mass.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[setVehicleHandlingFromText]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function sets a vehicle's handling from text.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[setVehicleWheelModel]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function changes the wheel model of the informed vehicle.&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-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;
=== Object functions ===&lt;br /&gt;
*[[getDynamicDoorObjectOpenRatio]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function tells you how open a dynamic door is in a range from 0 to 1.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isElementObject]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function tells you if an element is an object or no.&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-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;
=== Engine functions ===&lt;br /&gt;
*[[engineGetCOLsFromLibrary]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function gets the collision data from the col library.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[engineLoadIMGContainer]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function loads the IMG container.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Utility ===&lt;br /&gt;
*[[animate]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to use interpolateBetween without render event and easily used.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[callClientFunction]] &amp;lt;span style=&amp;quot;color:gray; 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-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;
*[[check]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[checkPassiveTimer]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to use passive timers in your conditions. For example you want to prevent players repeatedly using a command.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[coroutine.resume]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[compact]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function create table containing variables and their values.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[createDirectory]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function creates a directory in the resource's file system.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getBanBySerial]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns the ban if the serial is banned.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getBanFromName]] &amp;lt;span style=&amp;quot;color:gray; 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-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;
*[[getSkinNameFromID]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns the name of the skin from the given id.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[IfElse]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[isLastExecuteInTimer]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function check if the execute is the last execute in the timer.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isMouseInCircle]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function checks if a cursor position is in circular area or not.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isMouseInPosition]] &amp;lt;span style=&amp;quot;color:gray; 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-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;
*[[PlotTrajectoryAtTime]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» Calculate projectile/water trajectory.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[preprocessor]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function allow you to use gcc macros.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[vector3:compare]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This method checks whether two vectors match, with optional precision.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[svgCreateRoundedRectangle]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function creates a rectangle with rounded edges.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[debounce]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function is removing unwanted input noise.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[listAllFiles]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function lists all files and subdirectories within a given directory and its subdirectories.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dumpdelete]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function recursively deletes elements inside a table, destroying elements like vehicles, peds, or killing timers.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isEventHandlerAdded]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function checks whether a specific event handler has already been added to an element.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===String functions===&lt;br /&gt;
*[[string.endsWith]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function checks if a string ends with other string.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[string.startsWith]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function checks if a string starts with other string.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[string.repetition]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function repeats a substring n times.&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Useful Functions]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=IsPlayerNameRandomized&amp;diff=82626</id>
		<title>IsPlayerNameRandomized</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=IsPlayerNameRandomized&amp;diff=82626"/>
		<updated>2025-12-01T19:04:39Z</updated>

		<summary type="html">&lt;p&gt;O22: Created page with &amp;quot;{{Useful Function}} __NOTOC__ Checks whether the given player name looks like an automatically-generated random nickname.  ==Syntax== &amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;bool isPlayerNameRandomized ( string name )&amp;lt;/syntaxhighlight&amp;gt;  ===Required Arguments=== * '''name''': The player name to check.  ===Returns=== Returns '''true''' if the given name is an auto-generated random nickname, or '''false''' otherwise.  ==Code== &amp;lt;section name=&amp;quot;Shared&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt; &amp;lt;syntaxhig...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Useful Function}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
Checks whether the given player name looks like an automatically-generated random nickname.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;bool isPlayerNameRandomized ( string name )&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Required Arguments===&lt;br /&gt;
* '''name''': The player name to check.&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns '''true''' if the given name is an auto-generated random nickname, or '''false''' otherwise.&lt;br /&gt;
&lt;br /&gt;
==Code==&lt;br /&gt;
&amp;lt;section name=&amp;quot;Shared&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
local firstName, secondName = {&lt;br /&gt;
    &amp;quot;Aback&amp;quot;,      &amp;quot;Abaft&amp;quot;,      &amp;quot;Abandoned&amp;quot;,  &amp;quot;Abashed&amp;quot;,    &amp;quot;Aberrant&amp;quot;,   &amp;quot;Abhorrent&amp;quot;,  &amp;quot;Abiding&amp;quot;,    &amp;quot;Abject&amp;quot;,     &amp;quot;Ablaze&amp;quot;,     &amp;quot;Able&amp;quot;,       &amp;quot;Abnormal&amp;quot;,&lt;br /&gt;
    &amp;quot;Aboard&amp;quot;,     &amp;quot;Aboriginal&amp;quot;, &amp;quot;Abortive&amp;quot;,   &amp;quot;Abounding&amp;quot;,  &amp;quot;Abrasive&amp;quot;,   &amp;quot;Abrupt&amp;quot;,     &amp;quot;Absent&amp;quot;,     &amp;quot;Absorbed&amp;quot;,   &amp;quot;Absorbing&amp;quot;,  &amp;quot;Abstracted&amp;quot;, &amp;quot;Absurd&amp;quot;,&lt;br /&gt;
    &amp;quot;Abundant&amp;quot;,   &amp;quot;Abusive&amp;quot;,    &amp;quot;Acceptable&amp;quot;, &amp;quot;Accessible&amp;quot;, &amp;quot;Accidental&amp;quot;, &amp;quot;Accurate&amp;quot;,   &amp;quot;Acid&amp;quot;,       &amp;quot;Acidic&amp;quot;,     &amp;quot;Acoustic&amp;quot;,   &amp;quot;Acrid&amp;quot;,      &amp;quot;Actually&amp;quot;,&lt;br /&gt;
    &amp;quot;Adhoc&amp;quot;,      &amp;quot;Adamant&amp;quot;,    &amp;quot;Adaptable&amp;quot;,  &amp;quot;Addicted&amp;quot;,   &amp;quot;Adhesive&amp;quot;,   &amp;quot;Adjoining&amp;quot;,  &amp;quot;Adorable&amp;quot;,   &amp;quot;Afraid&amp;quot;,     &amp;quot;Aggressive&amp;quot;, &amp;quot;Agonizing&amp;quot;,  &amp;quot;Agreeable&amp;quot;,&lt;br /&gt;
    &amp;quot;Ahead&amp;quot;,      &amp;quot;Ajar&amp;quot;,       &amp;quot;Alcoholic&amp;quot;,  &amp;quot;Alert&amp;quot;,      &amp;quot;Alike&amp;quot;,      &amp;quot;Alive&amp;quot;,      &amp;quot;Alleged&amp;quot;,    &amp;quot;Alluring&amp;quot;,   &amp;quot;Aloof&amp;quot;,      &amp;quot;Amazing&amp;quot;,    &amp;quot;Ambiguous&amp;quot;,&lt;br /&gt;
    &amp;quot;Ambitious&amp;quot;,  &amp;quot;Amuck&amp;quot;,      &amp;quot;Amused&amp;quot;,     &amp;quot;Amusing&amp;quot;,    &amp;quot;Ancient&amp;quot;,    &amp;quot;Angry&amp;quot;,      &amp;quot;Animated&amp;quot;,   &amp;quot;Annoyed&amp;quot;,    &amp;quot;Annoying&amp;quot;,   &amp;quot;Anxious&amp;quot;,    &amp;quot;Apathetic&amp;quot;,&lt;br /&gt;
    &amp;quot;Aquatic&amp;quot;,    &amp;quot;Aromatic&amp;quot;,   &amp;quot;Arrogant&amp;quot;,   &amp;quot;Ashamed&amp;quot;,    &amp;quot;Aspiring&amp;quot;,   &amp;quot;Assorted&amp;quot;,   &amp;quot;Attractive&amp;quot;, &amp;quot;Auspicious&amp;quot;, &amp;quot;Automatic&amp;quot;,  &amp;quot;Available&amp;quot;,  &amp;quot;Average&amp;quot;,&lt;br /&gt;
    &amp;quot;Awake&amp;quot;,      &amp;quot;Aware&amp;quot;,      &amp;quot;Awesome&amp;quot;,    &amp;quot;Awful&amp;quot;,      &amp;quot;Axiomatic&amp;quot;,  &amp;quot;Bad&amp;quot;,        &amp;quot;Barbarous&amp;quot;,  &amp;quot;Bashful&amp;quot;,    &amp;quot;Bawdy&amp;quot;,      &amp;quot;Beautiful&amp;quot;,  &amp;quot;Befitting&amp;quot;,&lt;br /&gt;
    &amp;quot;Beneficial&amp;quot;, &amp;quot;Bent&amp;quot;,       &amp;quot;Berserk&amp;quot;,    &amp;quot;Best&amp;quot;,       &amp;quot;Better&amp;quot;,     &amp;quot;Bewildered&amp;quot;, &amp;quot;Big&amp;quot;,        &amp;quot;Billowy&amp;quot;,    &amp;quot;Bite-sized&amp;quot;, &amp;quot;Bitter&amp;quot;,     &amp;quot;Bizarre&amp;quot;,&lt;br /&gt;
    &amp;quot;Black&amp;quot;,      &amp;quot;Bloody&amp;quot;,     &amp;quot;Blue&amp;quot;,       &amp;quot;Blue-eyed&amp;quot;,  &amp;quot;Blushing&amp;quot;,   &amp;quot;Boiling&amp;quot;,    &amp;quot;Boorish&amp;quot;,    &amp;quot;Bored&amp;quot;,      &amp;quot;Boring&amp;quot;,     &amp;quot;Bouncy&amp;quot;,     &amp;quot;Boundless&amp;quot;,&lt;br /&gt;
    &amp;quot;Brainy&amp;quot;,     &amp;quot;Brash&amp;quot;,      &amp;quot;Brave&amp;quot;,      &amp;quot;Brawny&amp;quot;,     &amp;quot;Breakable&amp;quot;,  &amp;quot;Breezy&amp;quot;,     &amp;quot;Brief&amp;quot;,      &amp;quot;Bright&amp;quot;,     &amp;quot;Broad&amp;quot;,      &amp;quot;Broken&amp;quot;,     &amp;quot;Brown&amp;quot;,&lt;br /&gt;
    &amp;quot;Bumpy&amp;quot;,      &amp;quot;Burly&amp;quot;,      &amp;quot;Bustling&amp;quot;,   &amp;quot;Busy&amp;quot;,       &amp;quot;Cagey&amp;quot;,      &amp;quot;Callous&amp;quot;,    &amp;quot;Calm&amp;quot;,       &amp;quot;Capable&amp;quot;,    &amp;quot;Capricious&amp;quot;, &amp;quot;Careful&amp;quot;,    &amp;quot;Careless&amp;quot;,&lt;br /&gt;
    &amp;quot;Caring&amp;quot;,     &amp;quot;Cautious&amp;quot;,   &amp;quot;Ceaseless&amp;quot;,  &amp;quot;Certain&amp;quot;,    &amp;quot;Changeable&amp;quot;, &amp;quot;Charming&amp;quot;,   &amp;quot;Cheap&amp;quot;,      &amp;quot;Cheerful&amp;quot;,   &amp;quot;Chemical&amp;quot;,   &amp;quot;Chief&amp;quot;,      &amp;quot;Childlike&amp;quot;,&lt;br /&gt;
    &amp;quot;Chilly&amp;quot;,     &amp;quot;Chivalrous&amp;quot;, &amp;quot;Chubby&amp;quot;,     &amp;quot;Chunky&amp;quot;,     &amp;quot;Clammy&amp;quot;,     &amp;quot;Classy&amp;quot;,     &amp;quot;Clean&amp;quot;,      &amp;quot;Clear&amp;quot;,      &amp;quot;Clever&amp;quot;,     &amp;quot;Cloistered&amp;quot;, &amp;quot;Cloudy&amp;quot;,&lt;br /&gt;
    &amp;quot;Closed&amp;quot;,     &amp;quot;Clumsy&amp;quot;,     &amp;quot;Cluttered&amp;quot;,  &amp;quot;Coherent&amp;quot;,   &amp;quot;Cold&amp;quot;,       &amp;quot;Colorful&amp;quot;,   &amp;quot;Colossal&amp;quot;,   &amp;quot;Combative&amp;quot;,  &amp;quot;Common&amp;quot;,     &amp;quot;Complete&amp;quot;,   &amp;quot;Complex&amp;quot;,&lt;br /&gt;
    &amp;quot;Concerned&amp;quot;,  &amp;quot;Condemned&amp;quot;,  &amp;quot;Confused&amp;quot;,   &amp;quot;Conscious&amp;quot;,  &amp;quot;Cooing&amp;quot;,     &amp;quot;Cool&amp;quot;,       &amp;quot;Courageous&amp;quot;, &amp;quot;Cowardly&amp;quot;,   &amp;quot;Crabby&amp;quot;,     &amp;quot;Craven&amp;quot;,     &amp;quot;Crazy&amp;quot;,&lt;br /&gt;
    &amp;quot;Creepy&amp;quot;,     &amp;quot;Crooked&amp;quot;,    &amp;quot;Crowded&amp;quot;,    &amp;quot;Cruel&amp;quot;,      &amp;quot;Cuddly&amp;quot;,     &amp;quot;Cultured&amp;quot;,   &amp;quot;Cumbersome&amp;quot;, &amp;quot;Curious&amp;quot;,    &amp;quot;Curly&amp;quot;,      &amp;quot;Curved&amp;quot;,     &amp;quot;Curvy&amp;quot;,&lt;br /&gt;
    &amp;quot;Cut&amp;quot;,        &amp;quot;Cute&amp;quot;,       &amp;quot;Cynical&amp;quot;,    &amp;quot;Daffy&amp;quot;,      &amp;quot;Daily&amp;quot;,      &amp;quot;Damaged&amp;quot;,    &amp;quot;Damaging&amp;quot;,   &amp;quot;Damp&amp;quot;,       &amp;quot;Dangerous&amp;quot;,  &amp;quot;Dapper&amp;quot;,     &amp;quot;Dark&amp;quot;,&lt;br /&gt;
    &amp;quot;Dashing&amp;quot;,    &amp;quot;Dazzling&amp;quot;,   &amp;quot;Dead&amp;quot;,       &amp;quot;Deadpan&amp;quot;,    &amp;quot;Deafening&amp;quot;,  &amp;quot;Dear&amp;quot;,       &amp;quot;Debonair&amp;quot;,   &amp;quot;Decisive&amp;quot;,   &amp;quot;Decorous&amp;quot;,   &amp;quot;Deep&amp;quot;,       &amp;quot;Deeply&amp;quot;,&lt;br /&gt;
    &amp;quot;Defeated&amp;quot;,   &amp;quot;Defective&amp;quot;,  &amp;quot;Defiant&amp;quot;,    &amp;quot;Delicate&amp;quot;,   &amp;quot;Delicious&amp;quot;,  &amp;quot;Delightful&amp;quot;, &amp;quot;Demonic&amp;quot;,    &amp;quot;Delirious&amp;quot;,  &amp;quot;Dependent&amp;quot;,  &amp;quot;Depressed&amp;quot;,  &amp;quot;Deranged&amp;quot;,&lt;br /&gt;
    &amp;quot;Deserted&amp;quot;,   &amp;quot;Detailed&amp;quot;,   &amp;quot;Determined&amp;quot;, &amp;quot;Devilish&amp;quot;,   &amp;quot;Didactic&amp;quot;,   &amp;quot;Different&amp;quot;,  &amp;quot;Difficult&amp;quot;,  &amp;quot;Diligent&amp;quot;,   &amp;quot;Direful&amp;quot;,    &amp;quot;Dirty&amp;quot;,      &amp;quot;Disastrous&amp;quot;,&lt;br /&gt;
    &amp;quot;Discreet&amp;quot;,   &amp;quot;Disgusted&amp;quot;,  &amp;quot;Disgusting&amp;quot;, &amp;quot;Distinct&amp;quot;,   &amp;quot;Disturbed&amp;quot;,  &amp;quot;Divergent&amp;quot;,  &amp;quot;Dizzy&amp;quot;,      &amp;quot;Doubtful&amp;quot;,   &amp;quot;Drab&amp;quot;,       &amp;quot;Draconian&amp;quot;,  &amp;quot;Dramatic&amp;quot;,&lt;br /&gt;
    &amp;quot;Dreary&amp;quot;,     &amp;quot;Drunk&amp;quot;,      &amp;quot;Dry&amp;quot;,        &amp;quot;Dull&amp;quot;,       &amp;quot;Dusty&amp;quot;,      &amp;quot;Dynamic&amp;quot;,    &amp;quot;Eager&amp;quot;,      &amp;quot;Early&amp;quot;,      &amp;quot;Earthy&amp;quot;,     &amp;quot;Easy&amp;quot;,       &amp;quot;Eatable&amp;quot;,&lt;br /&gt;
    &amp;quot;Economic&amp;quot;,   &amp;quot;Educated&amp;quot;,   &amp;quot;Efficient&amp;quot;,  &amp;quot;Eight&amp;quot;,      &amp;quot;Elastic&amp;quot;,    &amp;quot;Elated&amp;quot;,     &amp;quot;Elderly&amp;quot;,    &amp;quot;Electric&amp;quot;,   &amp;quot;Elegant&amp;quot;,    &amp;quot;Elfin&amp;quot;,      &amp;quot;Elite&amp;quot;,&lt;br /&gt;
    &amp;quot;Eminent&amp;quot;,    &amp;quot;Empty&amp;quot;,      &amp;quot;Enchanted&amp;quot;,  &amp;quot;Enchanting&amp;quot;, &amp;quot;Endurable&amp;quot;,  &amp;quot;Energetic&amp;quot;,  &amp;quot;Enormous&amp;quot;,   &amp;quot;Envious&amp;quot;,    &amp;quot;Equable&amp;quot;,    &amp;quot;Equal&amp;quot;,      &amp;quot;Erect&amp;quot;,&lt;br /&gt;
    &amp;quot;Erratic&amp;quot;,    &amp;quot;Ethereal&amp;quot;,   &amp;quot;Evanescent&amp;quot;, &amp;quot;Evasive&amp;quot;,    &amp;quot;Even&amp;quot;,       &amp;quot;Excellent&amp;quot;,  &amp;quot;Excited&amp;quot;,    &amp;quot;Exciting&amp;quot;,   &amp;quot;Exclusive&amp;quot;,  &amp;quot;Exotic&amp;quot;,     &amp;quot;Expensive&amp;quot;,&lt;br /&gt;
    &amp;quot;Exuberant&amp;quot;,  &amp;quot;Exultant&amp;quot;,   &amp;quot;Fabulous&amp;quot;,   &amp;quot;Faded&amp;quot;,      &amp;quot;Faint&amp;quot;,      &amp;quot;Fair&amp;quot;,       &amp;quot;Faithful&amp;quot;,   &amp;quot;Fallacious&amp;quot;, &amp;quot;False&amp;quot;,      &amp;quot;Familiar&amp;quot;,   &amp;quot;Famous&amp;quot;,&lt;br /&gt;
    &amp;quot;Fanatical&amp;quot;,  &amp;quot;Fancy&amp;quot;,      &amp;quot;Fantastic&amp;quot;,  &amp;quot;Far&amp;quot;,        &amp;quot;Far-flung&amp;quot;,  &amp;quot;Fascinated&amp;quot;, &amp;quot;Fast&amp;quot;,       &amp;quot;Fat&amp;quot;,        &amp;quot;Faulty&amp;quot;,     &amp;quot;Fearful&amp;quot;,    &amp;quot;Fearless&amp;quot;,&lt;br /&gt;
    &amp;quot;Feeble&amp;quot;,     &amp;quot;Feigned&amp;quot;,    &amp;quot;Female&amp;quot;,     &amp;quot;Fertile&amp;quot;,    &amp;quot;Festive&amp;quot;,    &amp;quot;Few&amp;quot;,        &amp;quot;Fierce&amp;quot;,     &amp;quot;Filthy&amp;quot;,     &amp;quot;Fine&amp;quot;,       &amp;quot;Finicky&amp;quot;,    &amp;quot;First&amp;quot;,&lt;br /&gt;
    &amp;quot;Five&amp;quot;,       &amp;quot;Fixed&amp;quot;,      &amp;quot;Flagrant&amp;quot;,   &amp;quot;Flaky&amp;quot;,      &amp;quot;Flashy&amp;quot;,     &amp;quot;Flat&amp;quot;,       &amp;quot;Flawless&amp;quot;,   &amp;quot;Flimsy&amp;quot;,     &amp;quot;Flippant&amp;quot;,   &amp;quot;Flowery&amp;quot;,    &amp;quot;Fluffy&amp;quot;,&lt;br /&gt;
    &amp;quot;Fluttering&amp;quot;, &amp;quot;Foamy&amp;quot;,      &amp;quot;Foolish&amp;quot;,    &amp;quot;Foregoing&amp;quot;,  &amp;quot;Forgetful&amp;quot;,  &amp;quot;Fortunate&amp;quot;,  &amp;quot;Four&amp;quot;,       &amp;quot;Frail&amp;quot;,      &amp;quot;Fragile&amp;quot;,    &amp;quot;Frantic&amp;quot;,    &amp;quot;Free&amp;quot;,&lt;br /&gt;
    &amp;quot;Freezing&amp;quot;,   &amp;quot;Frequent&amp;quot;,   &amp;quot;Fresh&amp;quot;,      &amp;quot;Fretful&amp;quot;,    &amp;quot;Friendly&amp;quot;,   &amp;quot;Frightened&amp;quot;, &amp;quot;Full&amp;quot;,       &amp;quot;Fumbling&amp;quot;,   &amp;quot;Functional&amp;quot;, &amp;quot;Funny&amp;quot;,      &amp;quot;Furry&amp;quot;,&lt;br /&gt;
    &amp;quot;Furtive&amp;quot;,    &amp;quot;Future&amp;quot;,     &amp;quot;Futuristic&amp;quot;, &amp;quot;Fuzzy&amp;quot;,      &amp;quot;Gabby&amp;quot;,      &amp;quot;Gainful&amp;quot;,    &amp;quot;Gamy&amp;quot;,       &amp;quot;Gaping&amp;quot;,     &amp;quot;Garrulous&amp;quot;,  &amp;quot;Gaudy&amp;quot;,      &amp;quot;General&amp;quot;,&lt;br /&gt;
    &amp;quot;Gentle&amp;quot;,     &amp;quot;Giant&amp;quot;,      &amp;quot;Giddy&amp;quot;,      &amp;quot;Gifted&amp;quot;,     &amp;quot;Gigantic&amp;quot;,   &amp;quot;Glamorous&amp;quot;,  &amp;quot;Gleaming&amp;quot;,   &amp;quot;Glib&amp;quot;,       &amp;quot;Glistening&amp;quot;, &amp;quot;Glorious&amp;quot;,   &amp;quot;Glossy&amp;quot;,&lt;br /&gt;
    &amp;quot;Godly&amp;quot;,      &amp;quot;Good&amp;quot;,       &amp;quot;Goofy&amp;quot;,      &amp;quot;Gorgeous&amp;quot;,   &amp;quot;Graceful&amp;quot;,   &amp;quot;Grandiose&amp;quot;,  &amp;quot;Grateful&amp;quot;,   &amp;quot;Gratis&amp;quot;,     &amp;quot;Gray&amp;quot;,       &amp;quot;Greasy&amp;quot;,     &amp;quot;Great&amp;quot;,&lt;br /&gt;
    &amp;quot;Greedy&amp;quot;,     &amp;quot;Green&amp;quot;,      &amp;quot;Grey&amp;quot;,       &amp;quot;Grieving&amp;quot;,   &amp;quot;Groovy&amp;quot;,     &amp;quot;Grotesque&amp;quot;,  &amp;quot;Grouchy&amp;quot;,    &amp;quot;Grubby&amp;quot;,     &amp;quot;Gruesome&amp;quot;,   &amp;quot;Grumpy&amp;quot;,     &amp;quot;Guarded&amp;quot;,&lt;br /&gt;
    &amp;quot;Guiltless&amp;quot;,  &amp;quot;Gullible&amp;quot;,   &amp;quot;Gusty&amp;quot;,      &amp;quot;Guttural&amp;quot;,   &amp;quot;Habitual&amp;quot;,   &amp;quot;Half&amp;quot;,       &amp;quot;Hallowed&amp;quot;,   &amp;quot;Halting&amp;quot;,    &amp;quot;Handsome&amp;quot;,   &amp;quot;Handsomely&amp;quot;, &amp;quot;Handy&amp;quot;,&lt;br /&gt;
    &amp;quot;Hanging&amp;quot;,    &amp;quot;Hapless&amp;quot;,    &amp;quot;Happy&amp;quot;,      &amp;quot;Hard&amp;quot;,       &amp;quot;Harmonious&amp;quot;, &amp;quot;Harsh&amp;quot;,      &amp;quot;Hateful&amp;quot;,    &amp;quot;Heady&amp;quot;,      &amp;quot;Healthy&amp;quot;,    &amp;quot;Heavenly&amp;quot;,   &amp;quot;Heavy&amp;quot;,&lt;br /&gt;
    &amp;quot;Hellish&amp;quot;,    &amp;quot;Helpful&amp;quot;,    &amp;quot;Helpless&amp;quot;,   &amp;quot;Hesitant&amp;quot;,   &amp;quot;Hideous&amp;quot;,    &amp;quot;High&amp;quot;,       &amp;quot;Hilarious&amp;quot;,  &amp;quot;Hissing&amp;quot;,    &amp;quot;Historical&amp;quot;, &amp;quot;Holistic&amp;quot;,   &amp;quot;Hollow&amp;quot;,&lt;br /&gt;
    &amp;quot;Homeless&amp;quot;,   &amp;quot;Homely&amp;quot;,     &amp;quot;Honorable&amp;quot;,  &amp;quot;Horrible&amp;quot;,   &amp;quot;Hospitable&amp;quot;, &amp;quot;Hot&amp;quot;,        &amp;quot;Huge&amp;quot;,       &amp;quot;Hulking&amp;quot;,    &amp;quot;Humdrum&amp;quot;,    &amp;quot;Humorous&amp;quot;,   &amp;quot;Hungry&amp;quot;,&lt;br /&gt;
    &amp;quot;Hurried&amp;quot;,    &amp;quot;Hurt&amp;quot;,       &amp;quot;Hushed&amp;quot;,     &amp;quot;Husky&amp;quot;,      &amp;quot;Hypnotic&amp;quot;,   &amp;quot;Hysterical&amp;quot;, &amp;quot;Icky&amp;quot;,       &amp;quot;Icy&amp;quot;,        &amp;quot;Idiotic&amp;quot;,    &amp;quot;Ignorant&amp;quot;,   &amp;quot;Ill&amp;quot;,&lt;br /&gt;
    &amp;quot;Illegal&amp;quot;,    &amp;quot;Ill-fated&amp;quot;,  &amp;quot;Imaginary&amp;quot;,  &amp;quot;Immense&amp;quot;,    &amp;quot;Imminent&amp;quot;,   &amp;quot;Impartial&amp;quot;,  &amp;quot;Imperfect&amp;quot;,  &amp;quot;Impolite&amp;quot;,   &amp;quot;Important&amp;quot;,  &amp;quot;Imported&amp;quot;,   &amp;quot;Impossible&amp;quot;,&lt;br /&gt;
    &amp;quot;Incredible&amp;quot;, &amp;quot;Infamous&amp;quot;,   &amp;quot;Innate&amp;quot;,     &amp;quot;Innocent&amp;quot;,   &amp;quot;Insidious&amp;quot;,  &amp;quot;Internal&amp;quot;,   &amp;quot;Invincible&amp;quot;, &amp;quot;Irate&amp;quot;,      &amp;quot;Irritating&amp;quot;, &amp;quot;Itchy&amp;quot;,      &amp;quot;Jaded&amp;quot;,&lt;br /&gt;
    &amp;quot;Jagged&amp;quot;,     &amp;quot;Jazzy&amp;quot;,      &amp;quot;Jealous&amp;quot;,    &amp;quot;Jittery&amp;quot;,    &amp;quot;Jobless&amp;quot;,    &amp;quot;Jolly&amp;quot;,      &amp;quot;Joyous&amp;quot;,     &amp;quot;Judicious&amp;quot;,  &amp;quot;Juicy&amp;quot;,      &amp;quot;Jumbled&amp;quot;,    &amp;quot;Jumpy&amp;quot;,&lt;br /&gt;
    &amp;quot;Juvenile&amp;quot;,   &amp;quot;Kaput&amp;quot;,      &amp;quot;Keen&amp;quot;,       &amp;quot;Kind&amp;quot;,       &amp;quot;Kindly&amp;quot;,     &amp;quot;Knotty&amp;quot;,     &amp;quot;Knowing&amp;quot;,    &amp;quot;Known&amp;quot;,      &amp;quot;Labored&amp;quot;,    &amp;quot;Lacking&amp;quot;,    &amp;quot;Lame&amp;quot;,&lt;br /&gt;
    &amp;quot;Lamentable&amp;quot;, &amp;quot;Languid&amp;quot;,    &amp;quot;Large&amp;quot;,      &amp;quot;Last&amp;quot;,       &amp;quot;Late&amp;quot;,       &amp;quot;Laughable&amp;quot;,  &amp;quot;Lavish&amp;quot;,     &amp;quot;Lazy&amp;quot;,       &amp;quot;Lean&amp;quot;,       &amp;quot;Learned&amp;quot;,    &amp;quot;Left&amp;quot;,&lt;br /&gt;
    &amp;quot;Legal&amp;quot;,      &amp;quot;Lethal&amp;quot;,     &amp;quot;Level&amp;quot;,      &amp;quot;Lewd&amp;quot;,       &amp;quot;Light&amp;quot;,      &amp;quot;Like&amp;quot;,       &amp;quot;Likeable&amp;quot;,   &amp;quot;Limping&amp;quot;,    &amp;quot;Literate&amp;quot;,   &amp;quot;Little&amp;quot;,     &amp;quot;Lively&amp;quot;,&lt;br /&gt;
    &amp;quot;Living&amp;quot;,     &amp;quot;Lonely&amp;quot;,     &amp;quot;Long&amp;quot;,       &amp;quot;Longing&amp;quot;,    &amp;quot;Long-term&amp;quot;,  &amp;quot;Loose&amp;quot;,      &amp;quot;Lopsided&amp;quot;,   &amp;quot;Loud&amp;quot;,       &amp;quot;Loutish&amp;quot;,    &amp;quot;Lovely&amp;quot;,     &amp;quot;Loving&amp;quot;,&lt;br /&gt;
    &amp;quot;Low&amp;quot;,        &amp;quot;Lowly&amp;quot;,      &amp;quot;Lucky&amp;quot;,      &amp;quot;Ludicrous&amp;quot;,  &amp;quot;Lumpy&amp;quot;,      &amp;quot;Lush&amp;quot;,       &amp;quot;Luxuriant&amp;quot;,  &amp;quot;Lying&amp;quot;,      &amp;quot;Lyrical&amp;quot;,    &amp;quot;Macabre&amp;quot;,    &amp;quot;Macho&amp;quot;,&lt;br /&gt;
    &amp;quot;Maddening&amp;quot;,  &amp;quot;Madly&amp;quot;,      &amp;quot;Magenta&amp;quot;,    &amp;quot;Magical&amp;quot;,    &amp;quot;Majestic&amp;quot;,   &amp;quot;Makeshift&amp;quot;,  &amp;quot;Male&amp;quot;,       &amp;quot;Malicious&amp;quot;,  &amp;quot;Mammoth&amp;quot;,    &amp;quot;Maniacal&amp;quot;,   &amp;quot;Many&amp;quot;,&lt;br /&gt;
    &amp;quot;Marked&amp;quot;,     &amp;quot;Massive&amp;quot;,    &amp;quot;Married&amp;quot;,    &amp;quot;Marvelous&amp;quot;,  &amp;quot;Material&amp;quot;,   &amp;quot;Mature&amp;quot;,     &amp;quot;Mean&amp;quot;,       &amp;quot;Measly&amp;quot;,     &amp;quot;Meaty&amp;quot;,      &amp;quot;Medical&amp;quot;,    &amp;quot;Meek&amp;quot;,&lt;br /&gt;
    &amp;quot;Mellow&amp;quot;,     &amp;quot;Melodic&amp;quot;,    &amp;quot;Melted&amp;quot;,     &amp;quot;Merciful&amp;quot;,   &amp;quot;Mere&amp;quot;,       &amp;quot;Messy&amp;quot;,      &amp;quot;Mighty&amp;quot;,     &amp;quot;Military&amp;quot;,   &amp;quot;Milky&amp;quot;,      &amp;quot;Mindless&amp;quot;,   &amp;quot;Miniature&amp;quot;,&lt;br /&gt;
    &amp;quot;Minor&amp;quot;,      &amp;quot;Miscreant&amp;quot;,  &amp;quot;Misty&amp;quot;,      &amp;quot;Mixed&amp;quot;,      &amp;quot;Moaning&amp;quot;,    &amp;quot;Modern&amp;quot;,     &amp;quot;Moldy&amp;quot;,      &amp;quot;Momentous&amp;quot;,  &amp;quot;Motionless&amp;quot;, &amp;quot;Muddled&amp;quot;,    &amp;quot;Mundane&amp;quot;,&lt;br /&gt;
    &amp;quot;Murky&amp;quot;,      &amp;quot;Mushy&amp;quot;,      &amp;quot;Mute&amp;quot;,       &amp;quot;Mysterious&amp;quot;, &amp;quot;Naive&amp;quot;,      &amp;quot;Nappy&amp;quot;,      &amp;quot;Narrow&amp;quot;,     &amp;quot;Nasty&amp;quot;,      &amp;quot;Natural&amp;quot;,    &amp;quot;Naughty&amp;quot;,    &amp;quot;Nauseating&amp;quot;,&lt;br /&gt;
    &amp;quot;Near&amp;quot;,       &amp;quot;Neat&amp;quot;,       &amp;quot;Nebulous&amp;quot;,   &amp;quot;Necessary&amp;quot;,  &amp;quot;Needless&amp;quot;,   &amp;quot;Needy&amp;quot;,      &amp;quot;Neighborly&amp;quot;, &amp;quot;Nervous&amp;quot;,    &amp;quot;New&amp;quot;,        &amp;quot;Next&amp;quot;,       &amp;quot;Nice&amp;quot;,&lt;br /&gt;
    &amp;quot;Nifty&amp;quot;,      &amp;quot;Nimble&amp;quot;,     &amp;quot;Nine&amp;quot;,       &amp;quot;Nippy&amp;quot;,      &amp;quot;Noiseless&amp;quot;,  &amp;quot;Noisy&amp;quot;,      &amp;quot;Nonchalant&amp;quot;, &amp;quot;Nonstop&amp;quot;,    &amp;quot;Normal&amp;quot;,     &amp;quot;Nostalgic&amp;quot;,  &amp;quot;Nosy&amp;quot;,&lt;br /&gt;
    &amp;quot;Noxious&amp;quot;,    &amp;quot;Null&amp;quot;,       &amp;quot;Numberless&amp;quot;, &amp;quot;Numerous&amp;quot;,   &amp;quot;Nutritious&amp;quot;, &amp;quot;Nutty&amp;quot;,      &amp;quot;Oafish&amp;quot;,     &amp;quot;Obedient&amp;quot;,   &amp;quot;Obeisant&amp;quot;,   &amp;quot;Obese&amp;quot;,      &amp;quot;Obnoxious&amp;quot;,&lt;br /&gt;
    &amp;quot;Obscene&amp;quot;,    &amp;quot;Obsequious&amp;quot;, &amp;quot;Observant&amp;quot;,  &amp;quot;Obsolete&amp;quot;,   &amp;quot;Obtainable&amp;quot;, &amp;quot;Oceanic&amp;quot;,    &amp;quot;Odd&amp;quot;,        &amp;quot;Offbeat&amp;quot;,    &amp;quot;Old&amp;quot;,        &amp;quot;Omniscient&amp;quot;, &amp;quot;One&amp;quot;,&lt;br /&gt;
    &amp;quot;Onerous&amp;quot;,    &amp;quot;Open&amp;quot;,       &amp;quot;Opposite&amp;quot;,   &amp;quot;Optimal&amp;quot;,    &amp;quot;Orange&amp;quot;,     &amp;quot;Ordinary&amp;quot;,   &amp;quot;Organic&amp;quot;,    &amp;quot;Ossified&amp;quot;,   &amp;quot;Outgoing&amp;quot;,   &amp;quot;Outrageous&amp;quot;, &amp;quot;Oval&amp;quot;,&lt;br /&gt;
    &amp;quot;Overjoyed&amp;quot;,  &amp;quot;Overrated&amp;quot;,  &amp;quot;Overt&amp;quot;,      &amp;quot;Painful&amp;quot;,    &amp;quot;Pale&amp;quot;,       &amp;quot;Paltry&amp;quot;,     &amp;quot;Panicky&amp;quot;,    &amp;quot;Panoramic&amp;quot;,  &amp;quot;Parallel&amp;quot;,   &amp;quot;Parched&amp;quot;,    &amp;quot;Past&amp;quot;,&lt;br /&gt;
    &amp;quot;Pastoral&amp;quot;,   &amp;quot;Pathetic&amp;quot;,   &amp;quot;Peaceful&amp;quot;,   &amp;quot;Penitent&amp;quot;,   &amp;quot;Perfect&amp;quot;,    &amp;quot;Periodic&amp;quot;,   &amp;quot;Perpetual&amp;quot;,  &amp;quot;Petite&amp;quot;,     &amp;quot;Phobic&amp;quot;,     &amp;quot;Physical&amp;quot;,   &amp;quot;Picayune&amp;quot;,&lt;br /&gt;
    &amp;quot;Pink&amp;quot;,       &amp;quot;Piquant&amp;quot;,    &amp;quot;Placid&amp;quot;,     &amp;quot;Plain&amp;quot;,      &amp;quot;Plant&amp;quot;,      &amp;quot;Plastic&amp;quot;,    &amp;quot;Plausible&amp;quot;,  &amp;quot;Pleasant&amp;quot;,   &amp;quot;Plucky&amp;quot;,     &amp;quot;Pointless&amp;quot;,  &amp;quot;Poised&amp;quot;,&lt;br /&gt;
    &amp;quot;Polite&amp;quot;,     &amp;quot;Political&amp;quot;,  &amp;quot;Poor&amp;quot;,       &amp;quot;Possessive&amp;quot;, &amp;quot;Possible&amp;quot;,   &amp;quot;Powerful&amp;quot;,   &amp;quot;Precious&amp;quot;,   &amp;quot;Premium&amp;quot;,    &amp;quot;Present&amp;quot;,    &amp;quot;Pretty&amp;quot;,     &amp;quot;Previous&amp;quot;,&lt;br /&gt;
    &amp;quot;Pricey&amp;quot;,     &amp;quot;Prickly&amp;quot;,    &amp;quot;Private&amp;quot;,    &amp;quot;Probable&amp;quot;,   &amp;quot;Productive&amp;quot;, &amp;quot;Profuse&amp;quot;,    &amp;quot;Protective&amp;quot;, &amp;quot;Proud&amp;quot;,      &amp;quot;Psychotic&amp;quot;,  &amp;quot;Public&amp;quot;,     &amp;quot;Puffy&amp;quot;,&lt;br /&gt;
    &amp;quot;Pumped&amp;quot;,     &amp;quot;Puny&amp;quot;,       &amp;quot;Purple&amp;quot;,     &amp;quot;Purring&amp;quot;,    &amp;quot;Pushy&amp;quot;,      &amp;quot;Puzzled&amp;quot;,    &amp;quot;Puzzling&amp;quot;,   &amp;quot;Quack&amp;quot;,      &amp;quot;Quaint&amp;quot;,     &amp;quot;Quick&amp;quot;,      &amp;quot;Quickest&amp;quot;,&lt;br /&gt;
    &amp;quot;Quiet&amp;quot;,      &amp;quot;Quirky&amp;quot;,     &amp;quot;Quixotic&amp;quot;,   &amp;quot;Quizzical&amp;quot;,  &amp;quot;Rabid&amp;quot;,      &amp;quot;Racial&amp;quot;,     &amp;quot;Ragged&amp;quot;,     &amp;quot;Rainy&amp;quot;,      &amp;quot;Rampant&amp;quot;,    &amp;quot;Rapid&amp;quot;,      &amp;quot;Rare&amp;quot;,&lt;br /&gt;
    &amp;quot;Raspy&amp;quot;,      &amp;quot;Ratty&amp;quot;,      &amp;quot;Ready&amp;quot;,      &amp;quot;Real&amp;quot;,       &amp;quot;Rebel&amp;quot;,      &amp;quot;Receptive&amp;quot;,  &amp;quot;Recondite&amp;quot;,  &amp;quot;Red&amp;quot;,        &amp;quot;Redundant&amp;quot;,  &amp;quot;Reflective&amp;quot;, &amp;quot;Regular&amp;quot;,&lt;br /&gt;
    &amp;quot;Relieved&amp;quot;,   &amp;quot;Remarkable&amp;quot;, &amp;quot;Repulsive&amp;quot;,  &amp;quot;Resolute&amp;quot;,   &amp;quot;Resonant&amp;quot;,   &amp;quot;Rhetorical&amp;quot;, &amp;quot;Rich&amp;quot;,       &amp;quot;Right&amp;quot;,      &amp;quot;Righteous&amp;quot;,  &amp;quot;Rightful&amp;quot;,   &amp;quot;Rigid&amp;quot;,&lt;br /&gt;
    &amp;quot;Ripe&amp;quot;,       &amp;quot;Ritzy&amp;quot;,      &amp;quot;Roasted&amp;quot;,    &amp;quot;Robust&amp;quot;,     &amp;quot;Romantic&amp;quot;,   &amp;quot;Roomy&amp;quot;,      &amp;quot;Rotten&amp;quot;,     &amp;quot;Rough&amp;quot;,      &amp;quot;Round&amp;quot;,      &amp;quot;Royal&amp;quot;,      &amp;quot;Ruddy&amp;quot;,&lt;br /&gt;
    &amp;quot;Rude&amp;quot;,       &amp;quot;Rural&amp;quot;,      &amp;quot;Rustic&amp;quot;,     &amp;quot;Ruthless&amp;quot;,   &amp;quot;Sable&amp;quot;,      &amp;quot;Sad&amp;quot;,        &amp;quot;Safe&amp;quot;,       &amp;quot;Salty&amp;quot;,      &amp;quot;Same&amp;quot;,       &amp;quot;Sassy&amp;quot;,      &amp;quot;Satisfying&amp;quot;,&lt;br /&gt;
    &amp;quot;Savory&amp;quot;,     &amp;quot;Scandalous&amp;quot;, &amp;quot;Scarce&amp;quot;,     &amp;quot;Scared&amp;quot;,     &amp;quot;Scary&amp;quot;,      &amp;quot;Scattered&amp;quot;,  &amp;quot;Scientific&amp;quot;, &amp;quot;Scrawny&amp;quot;,    &amp;quot;Screeching&amp;quot;, &amp;quot;Second&amp;quot;,     &amp;quot;Secret&amp;quot;,&lt;br /&gt;
    &amp;quot;Secretive&amp;quot;,  &amp;quot;Sedate&amp;quot;,     &amp;quot;Seemly&amp;quot;,     &amp;quot;Selective&amp;quot;,  &amp;quot;Selfish&amp;quot;,    &amp;quot;Separate&amp;quot;,   &amp;quot;Serious&amp;quot;,    &amp;quot;Shaggy&amp;quot;,     &amp;quot;Shaky&amp;quot;,      &amp;quot;Shallow&amp;quot;,    &amp;quot;Sharp&amp;quot;,&lt;br /&gt;
    &amp;quot;Shiny&amp;quot;,      &amp;quot;Shivering&amp;quot;,  &amp;quot;Shocking&amp;quot;,   &amp;quot;Short&amp;quot;,      &amp;quot;Shrill&amp;quot;,     &amp;quot;Shut&amp;quot;,       &amp;quot;Shy&amp;quot;,        &amp;quot;Sick&amp;quot;,       &amp;quot;Silent&amp;quot;,     &amp;quot;Silky&amp;quot;,      &amp;quot;Silly&amp;quot;,&lt;br /&gt;
    &amp;quot;Simple&amp;quot;,     &amp;quot;Simplistic&amp;quot;, &amp;quot;Sincere&amp;quot;,    &amp;quot;Six&amp;quot;,        &amp;quot;Skillful&amp;quot;,   &amp;quot;Skinny&amp;quot;,     &amp;quot;Sleepy&amp;quot;,     &amp;quot;Slim&amp;quot;,       &amp;quot;Slimy&amp;quot;,      &amp;quot;Slippery&amp;quot;,   &amp;quot;Sloppy&amp;quot;,&lt;br /&gt;
    &amp;quot;Slow&amp;quot;,       &amp;quot;Small&amp;quot;,      &amp;quot;Smart&amp;quot;,      &amp;quot;Smelly&amp;quot;,     &amp;quot;Smiling&amp;quot;,    &amp;quot;Smoggy&amp;quot;,     &amp;quot;Smooth&amp;quot;,     &amp;quot;Sneaky&amp;quot;,     &amp;quot;Snobbish&amp;quot;,   &amp;quot;Snotty&amp;quot;,     &amp;quot;Soft&amp;quot;,&lt;br /&gt;
    &amp;quot;Soggy&amp;quot;,      &amp;quot;Solid&amp;quot;,      &amp;quot;Somber&amp;quot;,     &amp;quot;Sordid&amp;quot;,     &amp;quot;Sore&amp;quot;,       &amp;quot;Sour&amp;quot;,       &amp;quot;Sparkling&amp;quot;,  &amp;quot;Special&amp;quot;,    &amp;quot;Spicy&amp;quot;,      &amp;quot;Spiffy&amp;quot;,     &amp;quot;Spiky&amp;quot;,&lt;br /&gt;
    &amp;quot;Spiritual&amp;quot;,  &amp;quot;Spiteful&amp;quot;,   &amp;quot;Splendid&amp;quot;,   &amp;quot;Spooky&amp;quot;,     &amp;quot;Spotless&amp;quot;,   &amp;quot;Spotted&amp;quot;,    &amp;quot;Spotty&amp;quot;,     &amp;quot;Spurious&amp;quot;,   &amp;quot;Squalid&amp;quot;,    &amp;quot;Square&amp;quot;,     &amp;quot;Squealing&amp;quot;,&lt;br /&gt;
    &amp;quot;Squeamish&amp;quot;,  &amp;quot;Staking&amp;quot;,    &amp;quot;Stale&amp;quot;,      &amp;quot;Standing&amp;quot;,   &amp;quot;Statuesque&amp;quot;, &amp;quot;Steadfast&amp;quot;,  &amp;quot;Steady&amp;quot;,     &amp;quot;Stealthy&amp;quot;,   &amp;quot;Steep&amp;quot;,      &amp;quot;Sticky&amp;quot;,     &amp;quot;Stiff&amp;quot;,&lt;br /&gt;
    &amp;quot;Stingy&amp;quot;,     &amp;quot;Stormy&amp;quot;,     &amp;quot;Straight&amp;quot;,   &amp;quot;Strange&amp;quot;,    &amp;quot;Striped&amp;quot;,    &amp;quot;Strong&amp;quot;,     &amp;quot;Stupendous&amp;quot;, &amp;quot;Stupid&amp;quot;,     &amp;quot;Sturdy&amp;quot;,     &amp;quot;Subdued&amp;quot;,    &amp;quot;Subsequent&amp;quot;,&lt;br /&gt;
    &amp;quot;Successful&amp;quot;, &amp;quot;Succinct&amp;quot;,   &amp;quot;Sudden&amp;quot;,     &amp;quot;Sulky&amp;quot;,      &amp;quot;Super&amp;quot;,      &amp;quot;Superb&amp;quot;,     &amp;quot;Supreme&amp;quot;,    &amp;quot;Swanky&amp;quot;,     &amp;quot;Sweet&amp;quot;,      &amp;quot;Sweltering&amp;quot;, &amp;quot;Swift&amp;quot;,&lt;br /&gt;
    &amp;quot;Synonymous&amp;quot;, &amp;quot;Taboo&amp;quot;,      &amp;quot;Tacit&amp;quot;,      &amp;quot;Tacky&amp;quot;,      &amp;quot;Talented&amp;quot;,   &amp;quot;Tall&amp;quot;,       &amp;quot;Tame&amp;quot;,       &amp;quot;Tan&amp;quot;,        &amp;quot;Tangible&amp;quot;,   &amp;quot;Tangy&amp;quot;,      &amp;quot;Tart&amp;quot;,&lt;br /&gt;
    &amp;quot;Tasteful&amp;quot;,   &amp;quot;Tasteless&amp;quot;,  &amp;quot;Tasty&amp;quot;,      &amp;quot;Tawdry&amp;quot;,     &amp;quot;Tearful&amp;quot;,    &amp;quot;Tedious&amp;quot;,    &amp;quot;Teeny&amp;quot;,      &amp;quot;Teeny-tiny&amp;quot;, &amp;quot;Telling&amp;quot;,    &amp;quot;Temporary&amp;quot;,  &amp;quot;Ten&amp;quot;,&lt;br /&gt;
    &amp;quot;Tender&amp;quot;,     &amp;quot;Tense&amp;quot;,      &amp;quot;Tenuous&amp;quot;,    &amp;quot;Terrible&amp;quot;,   &amp;quot;Terrific&amp;quot;,   &amp;quot;Tested&amp;quot;,     &amp;quot;Testy&amp;quot;,      &amp;quot;Thankful&amp;quot;,   &amp;quot;Thick&amp;quot;,      &amp;quot;Thin&amp;quot;,       &amp;quot;Thinkable&amp;quot;,&lt;br /&gt;
    &amp;quot;Third&amp;quot;,      &amp;quot;Thirsty&amp;quot;,    &amp;quot;Thoughtful&amp;quot;, &amp;quot;Three&amp;quot;,      &amp;quot;Thundering&amp;quot;, &amp;quot;Tidy&amp;quot;,       &amp;quot;Tight&amp;quot;,      &amp;quot;Tiny&amp;quot;,       &amp;quot;Tired&amp;quot;,      &amp;quot;Tiresome&amp;quot;,   &amp;quot;Toothsome&amp;quot;,&lt;br /&gt;
    &amp;quot;Torpid&amp;quot;,     &amp;quot;Tough&amp;quot;,      &amp;quot;Towering&amp;quot;,   &amp;quot;Tranquil&amp;quot;,   &amp;quot;Trashy&amp;quot;,     &amp;quot;Tremendous&amp;quot;, &amp;quot;Tricky&amp;quot;,     &amp;quot;Trite&amp;quot;,      &amp;quot;Troubled&amp;quot;,   &amp;quot;Truculent&amp;quot;,  &amp;quot;True&amp;quot;,&lt;br /&gt;
    &amp;quot;Truthful&amp;quot;,   &amp;quot;Two&amp;quot;,        &amp;quot;Typical&amp;quot;,    &amp;quot;Ubiquitous&amp;quot;, &amp;quot;Ugliest&amp;quot;,    &amp;quot;Ugly&amp;quot;,       &amp;quot;Ultra&amp;quot;,      &amp;quot;Unable&amp;quot;,     &amp;quot;Unadvised&amp;quot;,  &amp;quot;Unarmed&amp;quot;,    &amp;quot;Unbecoming&amp;quot;,&lt;br /&gt;
    &amp;quot;Unbiased&amp;quot;,   &amp;quot;Uncovered&amp;quot;,  &amp;quot;Understood&amp;quot;, &amp;quot;Unequal&amp;quot;,    &amp;quot;Unequaled&amp;quot;,  &amp;quot;Uneven&amp;quot;,     &amp;quot;Unhealthy&amp;quot;,  &amp;quot;Unique&amp;quot;,     &amp;quot;Unkempt&amp;quot;,    &amp;quot;Unknown&amp;quot;,    &amp;quot;Unnatural&amp;quot;,&lt;br /&gt;
    &amp;quot;Unruly&amp;quot;,     &amp;quot;Unsightly&amp;quot;,  &amp;quot;Unsuitable&amp;quot;, &amp;quot;Untidy&amp;quot;,     &amp;quot;Unused&amp;quot;,     &amp;quot;Unusual&amp;quot;,    &amp;quot;Unwieldy&amp;quot;,   &amp;quot;Unwritten&amp;quot;,  &amp;quot;Upbeat&amp;quot;,     &amp;quot;Uppity&amp;quot;,     &amp;quot;Upset&amp;quot;,&lt;br /&gt;
    &amp;quot;Uptight&amp;quot;,    &amp;quot;Used&amp;quot;,       &amp;quot;Useful&amp;quot;,     &amp;quot;Useless&amp;quot;,    &amp;quot;Utopian&amp;quot;,    &amp;quot;Utter&amp;quot;,      &amp;quot;Uttermost&amp;quot;,  &amp;quot;Vacuous&amp;quot;,    &amp;quot;Vagabond&amp;quot;,   &amp;quot;Vague&amp;quot;,      &amp;quot;Valuable&amp;quot;,&lt;br /&gt;
    &amp;quot;Various&amp;quot;,    &amp;quot;Vast&amp;quot;,       &amp;quot;Vengeful&amp;quot;,   &amp;quot;Venomous&amp;quot;,   &amp;quot;Verdant&amp;quot;,    &amp;quot;Versed&amp;quot;,     &amp;quot;Victorious&amp;quot;, &amp;quot;Vigorous&amp;quot;,   &amp;quot;Violent&amp;quot;,    &amp;quot;Violet&amp;quot;,     &amp;quot;Vivacious&amp;quot;,&lt;br /&gt;
    &amp;quot;Voiceless&amp;quot;,  &amp;quot;Volatile&amp;quot;,   &amp;quot;Voracious&amp;quot;,  &amp;quot;Vulgar&amp;quot;,     &amp;quot;Wacky&amp;quot;,      &amp;quot;Waggish&amp;quot;,    &amp;quot;Waiting&amp;quot;,    &amp;quot;Wakeful&amp;quot;,    &amp;quot;Wandering&amp;quot;,  &amp;quot;Wanting&amp;quot;,    &amp;quot;Warlike&amp;quot;,&lt;br /&gt;
    &amp;quot;Warm&amp;quot;,       &amp;quot;Wary&amp;quot;,       &amp;quot;Wasteful&amp;quot;,   &amp;quot;Watery&amp;quot;,     &amp;quot;Weak&amp;quot;,       &amp;quot;Wealthy&amp;quot;,    &amp;quot;Weary&amp;quot;,      &amp;quot;Well-made&amp;quot;,  &amp;quot;Well-off&amp;quot;,   &amp;quot;Well-to-do&amp;quot;, &amp;quot;Wet&amp;quot;,&lt;br /&gt;
    &amp;quot;Whimsical&amp;quot;,  &amp;quot;Whispering&amp;quot;, &amp;quot;White&amp;quot;,      &amp;quot;Whole&amp;quot;,      &amp;quot;Wholesale&amp;quot;,  &amp;quot;Wicked&amp;quot;,     &amp;quot;Wide&amp;quot;,       &amp;quot;Wide-eyed&amp;quot;,  &amp;quot;Wiggly&amp;quot;,     &amp;quot;Wild&amp;quot;,       &amp;quot;Willing&amp;quot;,&lt;br /&gt;
    &amp;quot;Windy&amp;quot;,      &amp;quot;Wiry&amp;quot;,       &amp;quot;Wise&amp;quot;,       &amp;quot;Wistful&amp;quot;,    &amp;quot;Witty&amp;quot;,      &amp;quot;Woebegone&amp;quot;,  &amp;quot;Womanly&amp;quot;,    &amp;quot;Wonderful&amp;quot;,  &amp;quot;Wooden&amp;quot;,     &amp;quot;Woozy&amp;quot;,      &amp;quot;Workable&amp;quot;,&lt;br /&gt;
    &amp;quot;Worried&amp;quot;,    &amp;quot;Worthless&amp;quot;,  &amp;quot;Wrathful&amp;quot;,   &amp;quot;Wretched&amp;quot;,   &amp;quot;Wrong&amp;quot;,      &amp;quot;Wry&amp;quot;,&lt;br /&gt;
}, {&lt;br /&gt;
    &amp;quot;Aardvark&amp;quot;,   &amp;quot;Buffalo&amp;quot;,    &amp;quot;Alligator&amp;quot;,  &amp;quot;Ant&amp;quot;,        &amp;quot;Anteater&amp;quot;,   &amp;quot;Antelope&amp;quot;,   &amp;quot;Ape&amp;quot;,        &amp;quot;Armadillo&amp;quot;,  &amp;quot;Donkey&amp;quot;,      &amp;quot;Baboon&amp;quot;,     &amp;quot;Badger&amp;quot;,&lt;br /&gt;
    &amp;quot;Barracuda&amp;quot;,  &amp;quot;Bat&amp;quot;,        &amp;quot;Bear&amp;quot;,       &amp;quot;Beaver&amp;quot;,     &amp;quot;Bee&amp;quot;,        &amp;quot;Bison&amp;quot;,      &amp;quot;Boar&amp;quot;,       &amp;quot;Bush&amp;quot;,       &amp;quot;Butterfly&amp;quot;,   &amp;quot;Camel&amp;quot;,      &amp;quot;Calf&amp;quot;,&lt;br /&gt;
    &amp;quot;Cat&amp;quot;,        &amp;quot;Kitten&amp;quot;,     &amp;quot;Cattle&amp;quot;,     &amp;quot;Chamois&amp;quot;,    &amp;quot;Cheetah&amp;quot;,    &amp;quot;Chicken&amp;quot;,    &amp;quot;Chick&amp;quot;,      &amp;quot;Chimpanzee&amp;quot;, &amp;quot;Infant&amp;quot;,      &amp;quot;Empress&amp;quot;,    &amp;quot;Troop&amp;quot;,&lt;br /&gt;
    &amp;quot;Cobra&amp;quot;,      &amp;quot;Cockroach&amp;quot;,  &amp;quot;Cormorant&amp;quot;,  &amp;quot;Cougar&amp;quot;,     &amp;quot;Coyote&amp;quot;,     &amp;quot;Crab&amp;quot;,       &amp;quot;Crane&amp;quot;,      &amp;quot;Crocodile&amp;quot;,  &amp;quot;Crow&amp;quot;,        &amp;quot;Deer&amp;quot;,       &amp;quot;Dog&amp;quot;,&lt;br /&gt;
    &amp;quot;Dogfish&amp;quot;,    &amp;quot;Dolphin&amp;quot;,    &amp;quot;Dove&amp;quot;,       &amp;quot;Dragonfly&amp;quot;,  &amp;quot;Duck&amp;quot;,       &amp;quot;Dugong&amp;quot;,     &amp;quot;Eagle&amp;quot;,      &amp;quot;Eaglet&amp;quot;,     &amp;quot;Echidna&amp;quot;,     &amp;quot;Eel&amp;quot;,        &amp;quot;Eland&amp;quot;,&lt;br /&gt;
    &amp;quot;Elephant&amp;quot;,   &amp;quot;Elk&amp;quot;,        &amp;quot;Falcon&amp;quot;,     &amp;quot;Ferret&amp;quot;,     &amp;quot;Finch&amp;quot;,      &amp;quot;Fly&amp;quot;,        &amp;quot;Fox&amp;quot;,        &amp;quot;Frog&amp;quot;,       &amp;quot;Gaur&amp;quot;,        &amp;quot;Gazelle&amp;quot;,    &amp;quot;Gerbil&amp;quot;,&lt;br /&gt;
    &amp;quot;Giant&amp;quot;,      &amp;quot;Giraffe&amp;quot;,    &amp;quot;Gnu&amp;quot;,        &amp;quot;Goat&amp;quot;,       &amp;quot;Goose&amp;quot;,      &amp;quot;Gorilla&amp;quot;,    &amp;quot;Guanaco&amp;quot;,    &amp;quot;Guinea&amp;quot;,     &amp;quot;Guineapig&amp;quot;,   &amp;quot;Gull&amp;quot;,       &amp;quot;Hamster&amp;quot;,&lt;br /&gt;
    &amp;quot;Hare&amp;quot;,       &amp;quot;Hawk&amp;quot;,       &amp;quot;Hedgehog&amp;quot;,   &amp;quot;Heron&amp;quot;,      &amp;quot;Hornet&amp;quot;,     &amp;quot;Horse&amp;quot;,      &amp;quot;Human&amp;quot;,      &amp;quot;Hyena&amp;quot;,      &amp;quot;Iguana&amp;quot;,      &amp;quot;Jackal&amp;quot;,     &amp;quot;Jaguar&amp;quot;,&lt;br /&gt;
    &amp;quot;Jellyfish&amp;quot;,  &amp;quot;Kangaroo&amp;quot;,   &amp;quot;Koala&amp;quot;,      &amp;quot;Komodo&amp;quot;,     &amp;quot;Kouprey&amp;quot;,    &amp;quot;Kudu&amp;quot;,       &amp;quot;Lark&amp;quot;,       &amp;quot;Lemur&amp;quot;,      &amp;quot;Leopard&amp;quot;,     &amp;quot;Lion&amp;quot;,       &amp;quot;Llama&amp;quot;,&lt;br /&gt;
    &amp;quot;Loris&amp;quot;,      &amp;quot;Louse&amp;quot;,      &amp;quot;Lobster&amp;quot;,    &amp;quot;Lyrebird&amp;quot;,   &amp;quot;Magpie&amp;quot;,     &amp;quot;Mallard&amp;quot;,    &amp;quot;Manatee&amp;quot;,    &amp;quot;Meerkat&amp;quot;,    &amp;quot;Mink&amp;quot;,        &amp;quot;Mole&amp;quot;,       &amp;quot;Monkey&amp;quot;,&lt;br /&gt;
    &amp;quot;Moose&amp;quot;,      &amp;quot;Mouse&amp;quot;,      &amp;quot;Mosquito&amp;quot;,   &amp;quot;Mule&amp;quot;,       &amp;quot;Okapi&amp;quot;,      &amp;quot;Oryx&amp;quot;,       &amp;quot;Ostrich&amp;quot;,    &amp;quot;Otter&amp;quot;,      &amp;quot;Owl&amp;quot;,         &amp;quot;Ox&amp;quot;,         &amp;quot;Oyster&amp;quot;,&lt;br /&gt;
    &amp;quot;Panther&amp;quot;,    &amp;quot;Partridge&amp;quot;,  &amp;quot;Peafowl&amp;quot;,    &amp;quot;Pelican&amp;quot;,    &amp;quot;Penguin&amp;quot;,    &amp;quot;Pig&amp;quot;,        &amp;quot;Pigeon&amp;quot;,     &amp;quot;Pony&amp;quot;,       &amp;quot;Porcupine&amp;quot;,   &amp;quot;Quelea&amp;quot;,     &amp;quot;Rabbit&amp;quot;,&lt;br /&gt;
    &amp;quot;Bunny&amp;quot;,      &amp;quot;Raccoon&amp;quot;,    &amp;quot;Rail&amp;quot;,       &amp;quot;Ram&amp;quot;,        &amp;quot;Rat&amp;quot;,        &amp;quot;Raven&amp;quot;,      &amp;quot;Reindeer&amp;quot;,   &amp;quot;Rhino&amp;quot;,      &amp;quot;Salamander&amp;quot;,  &amp;quot;Sealion&amp;quot;,    &amp;quot;Seal&amp;quot;,&lt;br /&gt;
    &amp;quot;Seahorse&amp;quot;,   &amp;quot;Seastar&amp;quot;,    &amp;quot;Shark&amp;quot;,      &amp;quot;Sheep&amp;quot;,      &amp;quot;Shrew&amp;quot;,      &amp;quot;Skunk&amp;quot;,      &amp;quot;Snail&amp;quot;,      &amp;quot;Snake&amp;quot;,      &amp;quot;Spider&amp;quot;,      &amp;quot;Squid&amp;quot;,      &amp;quot;Squirrel&amp;quot;,&lt;br /&gt;
    &amp;quot;Stinkbug&amp;quot;,   &amp;quot;Swan&amp;quot;,       &amp;quot;Tapir&amp;quot;,      &amp;quot;Tarsier&amp;quot;,    &amp;quot;Tiger&amp;quot;,      &amp;quot;Toad&amp;quot;,       &amp;quot;Turkey&amp;quot;,     &amp;quot;Turtle&amp;quot;,     &amp;quot;Vicuna&amp;quot;,      &amp;quot;Walrus&amp;quot;,     &amp;quot;Wasp&amp;quot;,&lt;br /&gt;
    &amp;quot;Weasel&amp;quot;,     &amp;quot;Whale&amp;quot;,      &amp;quot;Wolf&amp;quot;,       &amp;quot;Worm&amp;quot;,       &amp;quot;Yak&amp;quot;,        &amp;quot;Zebra&amp;quot;,      &amp;quot;Hat&amp;quot;,        &amp;quot;Cap&amp;quot;,        &amp;quot;Beret&amp;quot;,       &amp;quot;Astrakhan&amp;quot;,  &amp;quot;Beanie&amp;quot;,&lt;br /&gt;
    &amp;quot;Hardhat&amp;quot;,    &amp;quot;Pillbox&amp;quot;,    &amp;quot;Monkeycap&amp;quot;,  &amp;quot;Operahat&amp;quot;,   &amp;quot;Bonnet&amp;quot;,     &amp;quot;Bowler&amp;quot;,     &amp;quot;Coonskin&amp;quot;,   &amp;quot;Fedora&amp;quot;,     &amp;quot;Derby&amp;quot;,       &amp;quot;Montero&amp;quot;,    &amp;quot;Cowboyhat&amp;quot;,&lt;br /&gt;
    &amp;quot;Sombrero&amp;quot;,   &amp;quot;Yarmulke&amp;quot;,   &amp;quot;Skullcap&amp;quot;,   &amp;quot;Tam&amp;quot;,        &amp;quot;Sunbonnet&amp;quot;,  &amp;quot;Toque&amp;quot;,      &amp;quot;Tophat&amp;quot;,     &amp;quot;Babushka&amp;quot;,   &amp;quot;Balaclava&amp;quot;,   &amp;quot;Turban&amp;quot;,     &amp;quot;Diadem&amp;quot;,&lt;br /&gt;
    &amp;quot;Earmuffs&amp;quot;,   &amp;quot;Visor&amp;quot;,      &amp;quot;Scarf&amp;quot;,      &amp;quot;Veil&amp;quot;,       &amp;quot;Warbonnet&amp;quot;,  &amp;quot;Pithhelmet&amp;quot;, &amp;quot;Hood&amp;quot;,       &amp;quot;Miter&amp;quot;,      &amp;quot;Butter&amp;quot;,      &amp;quot;Icecream&amp;quot;,   &amp;quot;Cakebatter&amp;quot;,&lt;br /&gt;
    &amp;quot;Coffee&amp;quot;,     &amp;quot;Tea&amp;quot;,        &amp;quot;Soda&amp;quot;,       &amp;quot;Beer&amp;quot;,       &amp;quot;Wine&amp;quot;,       &amp;quot;Cappuccino&amp;quot;, &amp;quot;Jell-o&amp;quot;,     &amp;quot;Nougats&amp;quot;,    &amp;quot;Lambchops&amp;quot;,   &amp;quot;Steaks&amp;quot;,     &amp;quot;Chowder&amp;quot;,&lt;br /&gt;
    &amp;quot;Fishsoup&amp;quot;,   &amp;quot;Spaghetti&amp;quot;,  &amp;quot;Sushi&amp;quot;,      &amp;quot;Fondue&amp;quot;,     &amp;quot;Crabslegs&amp;quot;,  &amp;quot;Shrimp&amp;quot;,     &amp;quot;Onions&amp;quot;,     &amp;quot;Bratwurst&amp;quot;,  &amp;quot;Kielbasa&amp;quot;,    &amp;quot;Hotdog&amp;quot;,     &amp;quot;Hamburger&amp;quot;,&lt;br /&gt;
    &amp;quot;Herbs&amp;quot;,      &amp;quot;Grains&amp;quot;,     &amp;quot;Legumes&amp;quot;,    &amp;quot;Zampone&amp;quot;,    &amp;quot;Casserole&amp;quot;,  &amp;quot;Beans&amp;quot;,      &amp;quot;Seeds&amp;quot;,      &amp;quot;Stew&amp;quot;,       &amp;quot;Cereal&amp;quot;,      &amp;quot;Polenta&amp;quot;,    &amp;quot;Pudding&amp;quot;,&lt;br /&gt;
    &amp;quot;Pasta&amp;quot;,      &amp;quot;Macaroni&amp;quot;,   &amp;quot;Ravioli&amp;quot;,    &amp;quot;Wafer&amp;quot;,      &amp;quot;Crackers&amp;quot;,   &amp;quot;Cookies&amp;quot;,    &amp;quot;Sandwich&amp;quot;,   &amp;quot;Gyro&amp;quot;,       &amp;quot;Wrap&amp;quot;,        &amp;quot;Omelet&amp;quot;,     &amp;quot;Popcorn&amp;quot;,&lt;br /&gt;
    &amp;quot;Walnuts&amp;quot;,    &amp;quot;Nuts&amp;quot;,       &amp;quot;Almonds&amp;quot;,    &amp;quot;Pizza&amp;quot;,      &amp;quot;Mousse&amp;quot;,     &amp;quot;Brulee&amp;quot;,     &amp;quot;Cakes&amp;quot;,      &amp;quot;Pancake&amp;quot;,    &amp;quot;Waffles&amp;quot;,     &amp;quot;Toast&amp;quot;,      &amp;quot;Candy&amp;quot;,&lt;br /&gt;
    &amp;quot;Pie&amp;quot;,        &amp;quot;Senator&amp;quot;,    &amp;quot;Governor&amp;quot;,   &amp;quot;Councilman&amp;quot;, &amp;quot;Detective&amp;quot;,  &amp;quot;Sleuth&amp;quot;,     &amp;quot;Musician&amp;quot;,   &amp;quot;Maestro&amp;quot;,    &amp;quot;Conductor&amp;quot;,   &amp;quot;Composer&amp;quot;,   &amp;quot;Singer&amp;quot;,&lt;br /&gt;
    &amp;quot;Architect&amp;quot;,  &amp;quot;Physician&amp;quot;,  &amp;quot;Manager&amp;quot;,    &amp;quot;Usher&amp;quot;,      &amp;quot;Painter&amp;quot;,    &amp;quot;Model&amp;quot;,      &amp;quot;Designer&amp;quot;,   &amp;quot;Guest&amp;quot;,      &amp;quot;Attorney&amp;quot;,    &amp;quot;Lawyer&amp;quot;,     &amp;quot;Judge&amp;quot;,&lt;br /&gt;
    &amp;quot;Mayor&amp;quot;,      &amp;quot;Therapist&amp;quot;,  &amp;quot;Teacher&amp;quot;,    &amp;quot;Principal&amp;quot;,  &amp;quot;Professor&amp;quot;,  &amp;quot;Orator&amp;quot;,     &amp;quot;Man&amp;quot;,        &amp;quot;Woman&amp;quot;,      &amp;quot;Teen&amp;quot;,        &amp;quot;Child&amp;quot;,      &amp;quot;Mother&amp;quot;,&lt;br /&gt;
    &amp;quot;Father&amp;quot;,     &amp;quot;Sister&amp;quot;,     &amp;quot;Brother&amp;quot;,    &amp;quot;Uncle&amp;quot;,      &amp;quot;Aunt&amp;quot;,       &amp;quot;Son&amp;quot;,        &amp;quot;Daughter&amp;quot;,   &amp;quot;In-laws&amp;quot;,    &amp;quot;Boy&amp;quot;,         &amp;quot;Girl&amp;quot;,       &amp;quot;Nurse&amp;quot;,&lt;br /&gt;
    &amp;quot;Sibling&amp;quot;,    &amp;quot;Settler&amp;quot;,    &amp;quot;Pioneer&amp;quot;,    &amp;quot;Waiter&amp;quot;,     &amp;quot;Hostess&amp;quot;,    &amp;quot;Host&amp;quot;,       &amp;quot;Cashier&amp;quot;,    &amp;quot;Attendant&amp;quot;,  &amp;quot;Publisher&amp;quot;,   &amp;quot;Witch&amp;quot;,      &amp;quot;Warlock&amp;quot;,&lt;br /&gt;
    &amp;quot;Ghost&amp;quot;,      &amp;quot;Knight&amp;quot;,     &amp;quot;Prince&amp;quot;,     &amp;quot;Princess&amp;quot;,   &amp;quot;Maiden&amp;quot;,     &amp;quot;Godmother&amp;quot;,  &amp;quot;Fairy&amp;quot;,      &amp;quot;Petal&amp;quot;,      &amp;quot;Sepal&amp;quot;,       &amp;quot;Stamen&amp;quot;,     &amp;quot;Pineboughs&amp;quot;,&lt;br /&gt;
    &amp;quot;Bud&amp;quot;,        &amp;quot;Branch&amp;quot;,     &amp;quot;Blossom&amp;quot;,    &amp;quot;Fruit&amp;quot;,      &amp;quot;Bloom&amp;quot;,      &amp;quot;Tree&amp;quot;,       &amp;quot;Maple&amp;quot;,      &amp;quot;Elm&amp;quot;,        &amp;quot;Oak&amp;quot;,         &amp;quot;Palm&amp;quot;,       &amp;quot;Baobab&amp;quot;,&lt;br /&gt;
    &amp;quot;Mangrove&amp;quot;,   &amp;quot;Cyprus&amp;quot;,     &amp;quot;Pine&amp;quot;,       &amp;quot;Dogwood&amp;quot;,    &amp;quot;Alder&amp;quot;,      &amp;quot;Flowers&amp;quot;,    &amp;quot;Rose&amp;quot;,       &amp;quot;Tulip&amp;quot;,      &amp;quot;Cyclamen&amp;quot;,    &amp;quot;Lily&amp;quot;,       &amp;quot;Carnations&amp;quot;,&lt;br /&gt;
    &amp;quot;Wisteria&amp;quot;,   &amp;quot;Flytrap&amp;quot;,    &amp;quot;Hoe&amp;quot;,        &amp;quot;Weeds&amp;quot;,      &amp;quot;Plants&amp;quot;,     &amp;quot;Canes&amp;quot;,      &amp;quot;Palms&amp;quot;,      &amp;quot;Apple&amp;quot;,      &amp;quot;Lemon&amp;quot;,       &amp;quot;Orange&amp;quot;,     &amp;quot;Grapefruit&amp;quot;,&lt;br /&gt;
    &amp;quot;Tangerine&amp;quot;,  &amp;quot;Peach&amp;quot;,      &amp;quot;Tomato&amp;quot;,     &amp;quot;Banana&amp;quot;,     &amp;quot;Vegetables&amp;quot;, &amp;quot;Artichokes&amp;quot;, &amp;quot;Leeks&amp;quot;,      &amp;quot;Lettuce&amp;quot;,    &amp;quot;Eggplants&amp;quot;,   &amp;quot;Zucchini&amp;quot;,   &amp;quot;Squash&amp;quot;,&lt;br /&gt;
    &amp;quot;Pumpkin&amp;quot;,    &amp;quot;Cabbage&amp;quot;,    &amp;quot;Pepper&amp;quot;,     &amp;quot;Onion&amp;quot;,      &amp;quot;Garlic&amp;quot;,     &amp;quot;Poison&amp;quot;,     &amp;quot;Venom&amp;quot;,      &amp;quot;Fire&amp;quot;,       &amp;quot;Ship&amp;quot;,        &amp;quot;Ferryboat&amp;quot;,  &amp;quot;Oceanliner&amp;quot;,&lt;br /&gt;
    &amp;quot;Oars&amp;quot;,       &amp;quot;Sails&amp;quot;,      &amp;quot;Dinghy&amp;quot;,     &amp;quot;Yacht&amp;quot;,      &amp;quot;Canoe&amp;quot;,      &amp;quot;Catamaran&amp;quot;,  &amp;quot;Gondola&amp;quot;,    &amp;quot;Boat&amp;quot;,       &amp;quot;Battleship&amp;quot;,  &amp;quot;Clipper&amp;quot;,    &amp;quot;Dhow&amp;quot;,&lt;br /&gt;
    &amp;quot;Flatboat&amp;quot;,   &amp;quot;Houseboat&amp;quot;,  &amp;quot;Galleon&amp;quot;,    &amp;quot;Frigate&amp;quot;,    &amp;quot;Hydrofoil&amp;quot;,  &amp;quot;Junk&amp;quot;,       &amp;quot;Ketch&amp;quot;,      &amp;quot;Yawl&amp;quot;,       &amp;quot;Submarine&amp;quot;,   &amp;quot;Schooner&amp;quot;,   &amp;quot;Scow&amp;quot;,&lt;br /&gt;
    &amp;quot;Flatbed&amp;quot;,    &amp;quot;Suv&amp;quot;,        &amp;quot;Van&amp;quot;,        &amp;quot;Caboose&amp;quot;,    &amp;quot;Train&amp;quot;,      &amp;quot;Bullet&amp;quot;,     &amp;quot;Metro&amp;quot;,      &amp;quot;Subway&amp;quot;,     &amp;quot;Cart&amp;quot;,        &amp;quot;Taxi&amp;quot;,       &amp;quot;Car&amp;quot;,&lt;br /&gt;
    &amp;quot;Racingcar&amp;quot;,  &amp;quot;Buggy&amp;quot;,      &amp;quot;Dunebuggy&amp;quot;,  &amp;quot;Dragster&amp;quot;,   &amp;quot;Motorcycle&amp;quot;, &amp;quot;Gokart&amp;quot;,     &amp;quot;Limo&amp;quot;,       &amp;quot;Stretch&amp;quot;,    &amp;quot;Wagon&amp;quot;,       &amp;quot;Trolley&amp;quot;,    &amp;quot;Tram&amp;quot;,&lt;br /&gt;
    &amp;quot;Bus&amp;quot;,        &amp;quot;Parachute&amp;quot;,  &amp;quot;Tractor&amp;quot;,    &amp;quot;Trailer&amp;quot;,    &amp;quot;Golfkart&amp;quot;,   &amp;quot;Jeep&amp;quot;,       &amp;quot;Bigrig&amp;quot;,     &amp;quot;Bulldozer&amp;quot;,  &amp;quot;Dumptruck&amp;quot;,   &amp;quot;Towtruck&amp;quot;,   &amp;quot;Engine&amp;quot;,&lt;br /&gt;
    &amp;quot;Fireengine&amp;quot;, &amp;quot;Policecar&amp;quot;,  &amp;quot;Tank&amp;quot;,       &amp;quot;Locomotive&amp;quot;, &amp;quot;Ocean&amp;quot;,      &amp;quot;Oasis&amp;quot;,      &amp;quot;Sea&amp;quot;,        &amp;quot;Lake&amp;quot;,       &amp;quot;Saltlake&amp;quot;,    &amp;quot;Seafoam&amp;quot;,    &amp;quot;Waves&amp;quot;,&lt;br /&gt;
    &amp;quot;Bubbles&amp;quot;,    &amp;quot;Current&amp;quot;,    &amp;quot;Waterbasin&amp;quot;, &amp;quot;Bridge&amp;quot;,     &amp;quot;Harbor&amp;quot;,     &amp;quot;Pond&amp;quot;,       &amp;quot;Wharf&amp;quot;,      &amp;quot;Pier&amp;quot;,       &amp;quot;Dock&amp;quot;,        &amp;quot;Port&amp;quot;,       &amp;quot;Shore&amp;quot;,&lt;br /&gt;
    &amp;quot;Beach&amp;quot;,      &amp;quot;Sandbar&amp;quot;,    &amp;quot;Coast&amp;quot;,      &amp;quot;River&amp;quot;,      &amp;quot;Brook&amp;quot;,      &amp;quot;Rivulet&amp;quot;,    &amp;quot;Puddle&amp;quot;,     &amp;quot;Waterfall&amp;quot;,  &amp;quot;Cascades&amp;quot;,    &amp;quot;Canal&amp;quot;,      &amp;quot;Channel&amp;quot;,&lt;br /&gt;
    &amp;quot;Stream&amp;quot;,     &amp;quot;Creek&amp;quot;,      &amp;quot;Marsh&amp;quot;,      &amp;quot;Bog&amp;quot;,        &amp;quot;Swamp&amp;quot;,      &amp;quot;Bayou&amp;quot;,      &amp;quot;Estuary&amp;quot;,    &amp;quot;Whirlpool&amp;quot;,  &amp;quot;Eddy&amp;quot;,        &amp;quot;Geyser&amp;quot;,     &amp;quot;Well&amp;quot;,&lt;br /&gt;
    &amp;quot;Monsoon&amp;quot;,    &amp;quot;Hurricane&amp;quot;,  &amp;quot;Typhoon&amp;quot;,    &amp;quot;Air&amp;quot;,        &amp;quot;Snow&amp;quot;,       &amp;quot;Rain&amp;quot;,       &amp;quot;Sleet&amp;quot;,      &amp;quot;Storm&amp;quot;,      &amp;quot;Hail&amp;quot;,        &amp;quot;Blizzard&amp;quot;,   &amp;quot;Wind&amp;quot;,&lt;br /&gt;
    &amp;quot;Breeze&amp;quot;,     &amp;quot;Gale&amp;quot;,       &amp;quot;Whirlwind&amp;quot;,  &amp;quot;Maelstrom&amp;quot;,  &amp;quot;Duststorm&amp;quot;,  &amp;quot;Cloudburst&amp;quot;, &amp;quot;Tornado&amp;quot;,    &amp;quot;Twister&amp;quot;,    &amp;quot;Clouds&amp;quot;,      &amp;quot;Fog&amp;quot;,        &amp;quot;Peasoup&amp;quot;,&lt;br /&gt;
    &amp;quot;Floods&amp;quot;,     &amp;quot;Flashflood&amp;quot;, &amp;quot;Acidrain&amp;quot;,   &amp;quot;Tremors&amp;quot;,    &amp;quot;Lightning&amp;quot;,  &amp;quot;Avalanche&amp;quot;,  &amp;quot;Eclipse&amp;quot;,    &amp;quot;Alpenglow&amp;quot;,  &amp;quot;Tsunami&amp;quot;,     &amp;quot;Waterspout&amp;quot;, &amp;quot;Smog&amp;quot;,&lt;br /&gt;
    &amp;quot;Aneroid&amp;quot;,    &amp;quot;Barometer&amp;quot;,  &amp;quot;Radiosonde&amp;quot;, &amp;quot;Station&amp;quot;,    &amp;quot;Map&amp;quot;,        &amp;quot;Chalice&amp;quot;,    &amp;quot;Bijou&amp;quot;,      &amp;quot;Candelabra&amp;quot;, &amp;quot;Menorah&amp;quot;,     &amp;quot;Curio&amp;quot;,      &amp;quot;Figurine&amp;quot;,&lt;br /&gt;
    &amp;quot;Music-box&amp;quot;,  &amp;quot;Objetd'art&amp;quot;, &amp;quot;Trinket&amp;quot;,    &amp;quot;Trims&amp;quot;,      &amp;quot;Windchimes&amp;quot;, &amp;quot;Birdcage&amp;quot;,   &amp;quot;Birdbath&amp;quot;,   &amp;quot;Cans&amp;quot;,       &amp;quot;Urn&amp;quot;,         &amp;quot;Bucket&amp;quot;,     &amp;quot;Arrow&amp;quot;,&lt;br /&gt;
    &amp;quot;Bow&amp;quot;,        &amp;quot;Sword&amp;quot;,      &amp;quot;Dart&amp;quot;,       &amp;quot;Epee&amp;quot;,       &amp;quot;Dagger&amp;quot;,     &amp;quot;Hatchet&amp;quot;,    &amp;quot;Pickax&amp;quot;,     &amp;quot;Dolls&amp;quot;,      &amp;quot;Broom&amp;quot;,       &amp;quot;Mop&amp;quot;,        &amp;quot;Pail&amp;quot;,&lt;br /&gt;
    &amp;quot;Squeegee&amp;quot;,   &amp;quot;Caddy&amp;quot;,      &amp;quot;Telephone&amp;quot;,  &amp;quot;Pipe&amp;quot;,       &amp;quot;Paints&amp;quot;,     &amp;quot;Brushes&amp;quot;,    &amp;quot;Easel&amp;quot;,      &amp;quot;Canvas&amp;quot;,     &amp;quot;Trunk&amp;quot;,       &amp;quot;Hook&amp;quot;,       &amp;quot;Gun&amp;quot;,&lt;br /&gt;
    &amp;quot;Glue&amp;quot;,       &amp;quot;Tissue&amp;quot;,     &amp;quot;Toilet&amp;quot;,     &amp;quot;Kleenex&amp;quot;,    &amp;quot;Papertowel&amp;quot;, &amp;quot;Ropes&amp;quot;,      &amp;quot;Rubber&amp;quot;,     &amp;quot;Coil&amp;quot;,       &amp;quot;Toys&amp;quot;,        &amp;quot;Dogleash&amp;quot;,   &amp;quot;Balloon&amp;quot;,&lt;br /&gt;
    &amp;quot;Vases&amp;quot;,      &amp;quot;Planters&amp;quot;,   &amp;quot;Pen&amp;quot;,        &amp;quot;Pad&amp;quot;,        &amp;quot;Typewriter&amp;quot;, &amp;quot;Computer&amp;quot;,   &amp;quot;Laptop&amp;quot;,     &amp;quot;Netbook&amp;quot;,    &amp;quot;Stylus&amp;quot;,      &amp;quot;Pencil&amp;quot;,     &amp;quot;Desk&amp;quot;,&lt;br /&gt;
    &amp;quot;Backpack&amp;quot;,   &amp;quot;Shoerack&amp;quot;,   &amp;quot;Notebook&amp;quot;,   &amp;quot;Vellum&amp;quot;,     &amp;quot;Chalk&amp;quot;,      &amp;quot;Badge&amp;quot;,      &amp;quot;Saddle&amp;quot;,     &amp;quot;Spurs&amp;quot;,      &amp;quot;Paper&amp;quot;,       &amp;quot;Rollbook&amp;quot;,   &amp;quot;Guestbook&amp;quot;,&lt;br /&gt;
    &amp;quot;Pot&amp;quot;,        &amp;quot;Plate&amp;quot;,      &amp;quot;Dishes&amp;quot;,     &amp;quot;Fork&amp;quot;,       &amp;quot;Spoons&amp;quot;,     &amp;quot;Knives&amp;quot;,     &amp;quot;Knife&amp;quot;,      &amp;quot;Samovar&amp;quot;,    &amp;quot;Sky&amp;quot;,         &amp;quot;Forest&amp;quot;,     &amp;quot;Heaven&amp;quot;,&lt;br /&gt;
    &amp;quot;Hell&amp;quot;,       &amp;quot;Earth&amp;quot;,      &amp;quot;Sun&amp;quot;,        &amp;quot;Star&amp;quot;,       &amp;quot;Planet&amp;quot;,     &amp;quot;Mercury&amp;quot;,    &amp;quot;Venus&amp;quot;,      &amp;quot;Mars&amp;quot;,       &amp;quot;Jupiter&amp;quot;,     &amp;quot;Saturn&amp;quot;,     &amp;quot;Uranus&amp;quot;,&lt;br /&gt;
    &amp;quot;Neptune&amp;quot;,    &amp;quot;Ceres&amp;quot;,      &amp;quot;Pluto&amp;quot;,      &amp;quot;Haumea&amp;quot;,     &amp;quot;Makemake&amp;quot;,   &amp;quot;Eris&amp;quot;,       &amp;quot;Outerspace&amp;quot;, &amp;quot;Town&amp;quot;,       &amp;quot;Village&amp;quot;,     &amp;quot;City&amp;quot;,       &amp;quot;Country&amp;quot;,&lt;br /&gt;
    &amp;quot;Farm&amp;quot;,       &amp;quot;Suburb&amp;quot;,     &amp;quot;Roads&amp;quot;,      &amp;quot;Streets&amp;quot;,    &amp;quot;Blocks&amp;quot;,     &amp;quot;Zoo&amp;quot;,        &amp;quot;Park&amp;quot;,       &amp;quot;Museum&amp;quot;,     &amp;quot;Cemetery&amp;quot;,    &amp;quot;Tunnels&amp;quot;,    &amp;quot;Caves&amp;quot;,&lt;br /&gt;
    &amp;quot;Churches&amp;quot;,   &amp;quot;Temples&amp;quot;,    &amp;quot;Mall&amp;quot;,       &amp;quot;Dresser&amp;quot;,    &amp;quot;Armoire&amp;quot;,    &amp;quot;Chiffonier&amp;quot;, &amp;quot;Credenza&amp;quot;,   &amp;quot;Console&amp;quot;,    &amp;quot;Bookcase&amp;quot;,    &amp;quot;Buffet&amp;quot;,     &amp;quot;Armchair&amp;quot;,&lt;br /&gt;
    &amp;quot;Recliner&amp;quot;,   &amp;quot;Easychair&amp;quot;,  &amp;quot;Bench&amp;quot;,      &amp;quot;Banquette&amp;quot;,  &amp;quot;Chair&amp;quot;,      &amp;quot;Couch&amp;quot;,      &amp;quot;Davenport&amp;quot;,  &amp;quot;Sofa&amp;quot;,       &amp;quot;Ottoman&amp;quot;,     &amp;quot;Deckchair&amp;quot;,  &amp;quot;Loveseat&amp;quot;,&lt;br /&gt;
    &amp;quot;Highseat&amp;quot;,   &amp;quot;Divan&amp;quot;,      &amp;quot;Inglenook&amp;quot;,  &amp;quot;Pew&amp;quot;,        &amp;quot;Throne&amp;quot;,     &amp;quot;Sectional&amp;quot;,  &amp;quot;Stool&amp;quot;,      &amp;quot;Pottychair&amp;quot;, &amp;quot;Workbench&amp;quot;,   &amp;quot;Nighttable&amp;quot;, &amp;quot;Bed&amp;quot;,&lt;br /&gt;
    &amp;quot;Daybed&amp;quot;,     &amp;quot;Bassinet&amp;quot;,   &amp;quot;Crib&amp;quot;,       &amp;quot;Cradle&amp;quot;,     &amp;quot;Cot&amp;quot;,        &amp;quot;Futon&amp;quot;,      &amp;quot;Hammock&amp;quot;,    &amp;quot;Tatamimat&amp;quot;,  &amp;quot;Waterbed&amp;quot;,    &amp;quot;Trundlebed&amp;quot;, &amp;quot;Hassock&amp;quot;,&lt;br /&gt;
    &amp;quot;Hatrack&amp;quot;,    &amp;quot;Stepstool&amp;quot;,  &amp;quot;Footrest&amp;quot;,   &amp;quot;Footstool&amp;quot;,  &amp;quot;Tripod&amp;quot;,     &amp;quot;Mirror&amp;quot;,     &amp;quot;Nightlight&amp;quot;, &amp;quot;Torchiere&amp;quot;,  &amp;quot;Sunlamp&amp;quot;,     &amp;quot;Spotlight&amp;quot;,  &amp;quot;Ceilingfan&amp;quot;,&lt;br /&gt;
    &amp;quot;Cupboard&amp;quot;,   &amp;quot;Cardtable&amp;quot;,  &amp;quot;Hutch&amp;quot;,      &amp;quot;Locker&amp;quot;,     &amp;quot;Wetbar&amp;quot;,     &amp;quot;Vanity&amp;quot;,     &amp;quot;Rack&amp;quot;,       &amp;quot;Hopechest&amp;quot;,  &amp;quot;Sculpture&amp;quot;,   &amp;quot;Painting&amp;quot;,   &amp;quot;Eye&amp;quot;,&lt;br /&gt;
    &amp;quot;Pupil&amp;quot;,      &amp;quot;Iris&amp;quot;,       &amp;quot;Retina&amp;quot;,     &amp;quot;Eyeball&amp;quot;,    &amp;quot;Eyelids&amp;quot;,    &amp;quot;Eyelashes&amp;quot;,  &amp;quot;Eyebrows&amp;quot;,   &amp;quot;Lap&amp;quot;,        &amp;quot;Waist&amp;quot;,       &amp;quot;Belly&amp;quot;,      &amp;quot;Tummy&amp;quot;,&lt;br /&gt;
    &amp;quot;Rearend&amp;quot;,    &amp;quot;Crotch&amp;quot;,     &amp;quot;Abdomen&amp;quot;,    &amp;quot;Beard&amp;quot;,      &amp;quot;Mustache&amp;quot;,   &amp;quot;Sideburns&amp;quot;,  &amp;quot;Fingernail&amp;quot;, &amp;quot;Hand&amp;quot;,       &amp;quot;Forearm&amp;quot;,     &amp;quot;Arm&amp;quot;,        &amp;quot;Knuckles&amp;quot;,&lt;br /&gt;
    &amp;quot;Thumb&amp;quot;,      &amp;quot;Wrist&amp;quot;,      &amp;quot;Elbow&amp;quot;,      &amp;quot;Leg&amp;quot;,        &amp;quot;Toes&amp;quot;,       &amp;quot;Knee&amp;quot;,       &amp;quot;Ankle&amp;quot;,      &amp;quot;Shin&amp;quot;,       &amp;quot;Thigh&amp;quot;,       &amp;quot;Hip&amp;quot;,        &amp;quot;Breast&amp;quot;,&lt;br /&gt;
    &amp;quot;Chest&amp;quot;,      &amp;quot;Torso&amp;quot;,      &amp;quot;Tongue&amp;quot;,     &amp;quot;Lips&amp;quot;,       &amp;quot;Gums&amp;quot;,       &amp;quot;Mouth&amp;quot;,      &amp;quot;Teeth&amp;quot;,      &amp;quot;Bones&amp;quot;,      &amp;quot;Spine&amp;quot;,       &amp;quot;Throat&amp;quot;,     &amp;quot;Lungs&amp;quot;,&lt;br /&gt;
    &amp;quot;Kidneys&amp;quot;,    &amp;quot;Intestines&amp;quot;, &amp;quot;Colon&amp;quot;,      &amp;quot;Spleen&amp;quot;,     &amp;quot;Glands&amp;quot;,     &amp;quot;Blood&amp;quot;,      &amp;quot;Head&amp;quot;,       &amp;quot;Skull&amp;quot;,      &amp;quot;Brain&amp;quot;,       &amp;quot;Muscle&amp;quot;,     &amp;quot;Hair&amp;quot;,&lt;br /&gt;
    &amp;quot;Xylophone&amp;quot;,  &amp;quot;Clavier&amp;quot;,    &amp;quot;Virginal&amp;quot;,   &amp;quot;Lute&amp;quot;,       &amp;quot;Drum&amp;quot;,       &amp;quot;Frenchhorn&amp;quot;, &amp;quot;Piano&amp;quot;,      &amp;quot;Violin&amp;quot;,     &amp;quot;Cello&amp;quot;,       &amp;quot;Guitar&amp;quot;,     &amp;quot;Flute&amp;quot;,&lt;br /&gt;
    &amp;quot;Tuba&amp;quot;,       &amp;quot;Harp&amp;quot;,       &amp;quot;Mariachi&amp;quot;,   &amp;quot;Orchestra&amp;quot;,  &amp;quot;Oboe&amp;quot;,       &amp;quot;Bassoon&amp;quot;,    &amp;quot;Woodwinds&amp;quot;,  &amp;quot;Brass&amp;quot;,      &amp;quot;Viola&amp;quot;,       &amp;quot;Kettledrum&amp;quot;, &amp;quot;Peyotedrum&amp;quot;,&lt;br /&gt;
    &amp;quot;Tambourine&amp;quot;, &amp;quot;Tambour&amp;quot;,    &amp;quot;Saxophone&amp;quot;,  &amp;quot;Marimba&amp;quot;,    &amp;quot;Maracas&amp;quot;,    &amp;quot;Shofar&amp;quot;,     &amp;quot;Cymbals&amp;quot;,    &amp;quot;Kazoo&amp;quot;,      &amp;quot;Dulcimer&amp;quot;,    &amp;quot;Accordion&amp;quot;,  &amp;quot;Lyre&amp;quot;,&lt;br /&gt;
    &amp;quot;Fiddle&amp;quot;,     &amp;quot;Banjo&amp;quot;,      &amp;quot;Balalaika&amp;quot;,  &amp;quot;Sitar&amp;quot;,      &amp;quot;Ukulele&amp;quot;,    &amp;quot;Zither&amp;quot;,     &amp;quot;Bagpipes&amp;quot;,   &amp;quot;Piccolo&amp;quot;,    &amp;quot;Clarinet&amp;quot;,    &amp;quot;Cornet&amp;quot;,     &amp;quot;Panpipe&amp;quot;,&lt;br /&gt;
    &amp;quot;Tuningfork&amp;quot;, &amp;quot;Metronome&amp;quot;,  &amp;quot;Castanets&amp;quot;,  &amp;quot;Woofer&amp;quot;,     &amp;quot;Sniper&amp;quot;,     &amp;quot;Marksman&amp;quot;,   &amp;quot;Cleaner&amp;quot;,    &amp;quot;Pyro&amp;quot;,       &amp;quot;Attacker&amp;quot;,    &amp;quot;Mechanic&amp;quot;,   &amp;quot;Janitor&amp;quot;,&lt;br /&gt;
    &amp;quot;Scrubber&amp;quot;,   &amp;quot;Garbageman&amp;quot;, &amp;quot;Technician&amp;quot;, &amp;quot;Ninja&amp;quot;,      &amp;quot;Medic&amp;quot;,      &amp;quot;Spy&amp;quot;,        &amp;quot;Assassin&amp;quot;,   &amp;quot;Gunman&amp;quot;,     &amp;quot;Triggerman&amp;quot;,  &amp;quot;Butcher&amp;quot;,    &amp;quot;Killer&amp;quot;,&lt;br /&gt;
    &amp;quot;Dodger&amp;quot;,     &amp;quot;Booger&amp;quot;,     &amp;quot;Engineer&amp;quot;,   &amp;quot;Doctor&amp;quot;,     &amp;quot;Surgeon&amp;quot;,    &amp;quot;Fighter&amp;quot;,    &amp;quot;Shooter&amp;quot;,    &amp;quot;Gunner&amp;quot;,     &amp;quot;Soldier&amp;quot;,     &amp;quot;Officer&amp;quot;,    &amp;quot;Veteran&amp;quot;,&lt;br /&gt;
    &amp;quot;Scout&amp;quot;,      &amp;quot;Mercenary&amp;quot;,  &amp;quot;Commando&amp;quot;,   &amp;quot;Cadet&amp;quot;,      &amp;quot;Guard&amp;quot;,      &amp;quot;Warrior&amp;quot;,    &amp;quot;Trooper&amp;quot;,    &amp;quot;Gambler&amp;quot;,    &amp;quot;Specialist&amp;quot;,  &amp;quot;Shaper&amp;quot;,     &amp;quot;Finisher&amp;quot;,&lt;br /&gt;
    &amp;quot;Gladiator&amp;quot;,  &amp;quot;Boxer&amp;quot;,      &amp;quot;Wrestler&amp;quot;,   &amp;quot;Warlord&amp;quot;,    &amp;quot;Rival&amp;quot;,      &amp;quot;Armory&amp;quot;,     &amp;quot;Agent&amp;quot;,      &amp;quot;Rebel&amp;quot;,      &amp;quot;Brawler&amp;quot;,     &amp;quot;Bruiser&amp;quot;,    &amp;quot;Bully&amp;quot;,&lt;br /&gt;
    &amp;quot;Champion&amp;quot;,   &amp;quot;Hero&amp;quot;,       &amp;quot;Battler&amp;quot;,    &amp;quot;Combatant&amp;quot;,  &amp;quot;Fencer&amp;quot;,     &amp;quot;Swordsman&amp;quot;,  &amp;quot;Expert&amp;quot;,     &amp;quot;Gangster&amp;quot;,   &amp;quot;Gangsta&amp;quot;,     &amp;quot;Bandit&amp;quot;,     &amp;quot;Hoodlum&amp;quot;,&lt;br /&gt;
    &amp;quot;Mobster&amp;quot;,    &amp;quot;Robber&amp;quot;,     &amp;quot;Thief&amp;quot;,      &amp;quot;Burglar&amp;quot;,    &amp;quot;Pirate&amp;quot;,     &amp;quot;Thug&amp;quot;,       &amp;quot;Hitman&amp;quot;,     &amp;quot;Hitperson&amp;quot;,  &amp;quot;Dealer&amp;quot;,      &amp;quot;Desperado&amp;quot;,  &amp;quot;Criminal&amp;quot;,&lt;br /&gt;
    &amp;quot;Crook&amp;quot;,      &amp;quot;Hijacker&amp;quot;,   &amp;quot;Carjacker&amp;quot;,  &amp;quot;Villain&amp;quot;,    &amp;quot;Convict&amp;quot;,    &amp;quot;Fugitive&amp;quot;,   &amp;quot;Mug&amp;quot;,        &amp;quot;Outlaw&amp;quot;,     &amp;quot;Ruffian&amp;quot;,     &amp;quot;Cutthroat&amp;quot;,  &amp;quot;Devil&amp;quot;,&lt;br /&gt;
    &amp;quot;Murderer&amp;quot;,   &amp;quot;Psycho&amp;quot;,     &amp;quot;Punk&amp;quot;,       &amp;quot;ASBO&amp;quot;,       &amp;quot;Offender&amp;quot;,   &amp;quot;Drifter&amp;quot;,    &amp;quot;Rioter&amp;quot;,     &amp;quot;Goon&amp;quot;,       &amp;quot;Roughneck&amp;quot;,   &amp;quot;Brute&amp;quot;,      &amp;quot;Hacker&amp;quot;,&lt;br /&gt;
    &amp;quot;Cabbie&amp;quot;,     &amp;quot;Wheeler&amp;quot;,    &amp;quot;Driver&amp;quot;,     &amp;quot;Rider&amp;quot;,      &amp;quot;Cyclist&amp;quot;,    &amp;quot;Cowboy&amp;quot;,     &amp;quot;Operative&amp;quot;,  &amp;quot;Carrier&amp;quot;,    &amp;quot;Transporter&amp;quot;, &amp;quot;Trucker&amp;quot;,    &amp;quot;Wheelman&amp;quot;,&lt;br /&gt;
    &amp;quot;Vampire&amp;quot;,    &amp;quot;Parasite&amp;quot;,   &amp;quot;Tramp&amp;quot;,      &amp;quot;Bum&amp;quot;,        &amp;quot;Hobo&amp;quot;,       &amp;quot;Hitchhiker&amp;quot;, &amp;quot;Deadbeat&amp;quot;,   &amp;quot;Acrobat&amp;quot;,&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
function isPlayerNameRandomized(name)&lt;br /&gt;
    if type(name) ~= &amp;quot;string&amp;quot; then&lt;br /&gt;
        return false&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
    local prefix, num = name:match(&amp;quot;^(.-)(%d+)$&amp;quot;)&lt;br /&gt;
    if not prefix or not num then&lt;br /&gt;
        return false&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
    if not tonumber(num) or tonumber(num) &amp;lt; 0 or tonumber(num) &amp;gt; 100 then&lt;br /&gt;
        return false&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
    for _, first in ipairs(firstName) do&lt;br /&gt;
        if prefix:sub(1, #first) == first then&lt;br /&gt;
            local rest = prefix:sub(#first + 1)&lt;br /&gt;
&lt;br /&gt;
            for _, second in ipairs(secondName) do&lt;br /&gt;
                if rest == second then&lt;br /&gt;
                    return true&lt;br /&gt;
                end&lt;br /&gt;
            end&lt;br /&gt;
        end&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
    return false&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
The example shows how to use function.&lt;br /&gt;
&amp;lt;section name=&amp;quot;Server&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;
addEventHandler(&amp;quot;onPlayerConnect&amp;quot;, root,&lt;br /&gt;
    function(playerNick)&lt;br /&gt;
        if isPlayerNameRandomized(playerNick) then&lt;br /&gt;
            cancelEvent(true, &amp;quot;Newbie players are not allowed!&amp;quot;)&lt;br /&gt;
        end&lt;br /&gt;
    end&lt;br /&gt;
)&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;
Author: [https://wiki.multitheftauto.com/wiki/User:O22 omar-o22]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Idea from: [https://github.com/multitheftauto/mtasa-blue/issues/2103 Issue#2103]&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Useful_Functions}}&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=DecodeString&amp;diff=82584</id>
		<title>DecodeString</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=DecodeString&amp;diff=82584"/>
		<updated>2025-11-01T20:37:59Z</updated>

		<summary type="html">&lt;p&gt;O22: Callback is Optional  argument not required&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
{{Shared function}}&lt;br /&gt;
{{New feature/item|3.0156|1.5.5|11849|&lt;br /&gt;
This function decodes an encoded [[string]] using the specified algorithm. The counterpart of this function is [[encodeString]].&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Syntax== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
string decodeString ( string algorithm, string input, [table options, function callback] )  &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Required Arguments=== &lt;br /&gt;
*'''algorithm:''' The algorithm to use.&lt;br /&gt;
*'''input:''' The input to decode.&lt;br /&gt;
&lt;br /&gt;
===Options for each algorithm===&lt;br /&gt;
* ''tea'' ([https://en.wikipedia.org/wiki/Tiny_Encryption_Algorithm Tiny Encryption Algorithm])&lt;br /&gt;
** '''key''': a key to decode the input with.&lt;br /&gt;
{{Added feature/item|1.5.9|1.5.8|20898|&lt;br /&gt;
* ''aes128'' ([https://en.wikipedia.org/wiki/Advanced_Encryption_Standard Advanced Encryption Standard] in CTR mode)&lt;br /&gt;
** '''key''': a key to decode the input with.&lt;br /&gt;
** '''iv''': the initialization vector that was generated by [[encodeString]] for this combination of data and encryption algorithm.&lt;br /&gt;
}}&lt;br /&gt;
{{Added feature/item|1.5.9|1.5.8|21055|&lt;br /&gt;
* ''rsa'' ([https://en.wikipedia.org/wiki/RSA_(cryptosystem) Rivest-Shamir-Adleman] in OAEP with SHA-1 mode)&lt;br /&gt;
** '''key''': a private key to decode the input.&lt;br /&gt;
|21055}}&lt;br /&gt;
{{Added feature/item|1.6.0|1.6.1|22408|&lt;br /&gt;
* ''base64'' ([https://en.wikipedia.org/wiki/Base64 Base64 Encoding Algorithm])&lt;br /&gt;
** '''variant''': a string that defines the encoding variant. (Currently only &amp;quot;URL&amp;quot; is available)&lt;br /&gt;
|22408}}&lt;br /&gt;
{{Added feature/item|1.6.0|1.6.1|22408|&lt;br /&gt;
* ''base32'' ([https://en.wikipedia.org/wiki/Base32 Base32 Encoding Algorithm])&lt;br /&gt;
** '''variant''': a string that defines the encoding variant. (Currently only &amp;quot;Hex&amp;quot; is available)&lt;br /&gt;
|22408}}&lt;br /&gt;
{{Added feature/item|1.6.0|1.6.1|23219|&lt;br /&gt;
* ''zlib'' ([https://en.wikipedia.org/wiki/Zlib Zlib Compression Algorithm])&lt;br /&gt;
** '''format''': a string or number that defines compression format. (gzip, zlib, raw or [https://www.zlib.net/manual.html#Advanced window size number]) (default: auto) (please note that automatic determination of format may not be reliable in some cases due to the nature of compression algorithm)&lt;br /&gt;
|23219}}&lt;br /&gt;
&lt;br /&gt;
===Optional Arguments===&lt;br /&gt;
*'''callback:''' providing a callback will run this function asynchronously, the arguments to the callback are the same as the returned values below.&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns the decoded string if successful, ''false'' otherwise. If a callback was provided, the decoded string is argument to the callback.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
&lt;br /&gt;
&amp;lt;section name=&amp;quot;Server&amp;quot; class=&amp;quot;server&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
Adds a ''/decode'' command in which you can provide an algorithm, key and data to decode.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
addCommandHandler(&amp;quot;decode&amp;quot;, &lt;br /&gt;
    function(player, _, algorithm, key, ...)&lt;br /&gt;
        if algorithm and key then&lt;br /&gt;
            local text = table.concat({...}, &amp;quot; &amp;quot;)&lt;br /&gt;
            if type(text) == &amp;quot;string&amp;quot; and text ~= &amp;quot;&amp;quot; then&lt;br /&gt;
                local decoded = decodeString(algorithm, text, { key = key })&lt;br /&gt;
                if decoded then&lt;br /&gt;
                    outputChatBox(&amp;quot;The result of &amp;quot; .. algorithm .. &amp;quot; decoding is: &amp;quot; .. decoded, player)&lt;br /&gt;
                else&lt;br /&gt;
                    outputChatBox(&amp;quot;Failed to decode. Make sure that all arguments are valid.&amp;quot;, player, 255, 0, 0)&lt;br /&gt;
                end&lt;br /&gt;
            else&lt;br /&gt;
                outputChatBox(&amp;quot;Please specify text in the command.&amp;quot;, player, 255, 0, 0)&lt;br /&gt;
            end&lt;br /&gt;
        else&lt;br /&gt;
            outputChatBox(&amp;quot;Invalid algorithm and/or key.&amp;quot;, player, 255, 0, 0)&lt;br /&gt;
        end&lt;br /&gt;
    end&lt;br /&gt;
)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Utility functions}}&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=SetElementData&amp;diff=82583</id>
		<title>SetElementData</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=SetElementData&amp;diff=82583"/>
		<updated>2025-10-31T15:07:37Z</updated>

		<summary type="html">&lt;p&gt;O22: Issue has been closed&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Server client function}}&lt;br /&gt;
__NOTOC__ &lt;br /&gt;
This function stores [[element data]] under a certain key, attached to an element. Element data set using this is then synced with all clients and the server. The data can contain server-created elements, but you should avoid passing data that is not able to be synced such as xmlnodes, acls, aclgroups etc.&lt;br /&gt;
&lt;br /&gt;
As element data is synced to all clients, it can generate a lot of network traffic and be heavy on performance. Events are much more efficient for sending data from a client to the server only, or from the server to a specific client. &amp;lt;br/&amp;gt;&lt;br /&gt;
Usage of element data should be discouraged where your goal can be achieved with events like above, and [[table|tables]] for storing and retrieving data.&lt;br /&gt;
{{Tip|A simple and efficient way to make a variable known to the server and clients is to use setElementData on the [[root]] element.}}&lt;br /&gt;
{{Note|See [[Script security]] for tips on preventing cheaters when using events and element data.}}&lt;br /&gt;
{{Note|For performance reasons, never use setElementData in events that fire often (like [[onClientRender]]) without further optimization or conditions. In fact, using element data in general, can take such a toll on performance that not using it unless strictly necessary (e.g use alternatives such as storing data in tables) is recommended.}}&lt;br /&gt;
&lt;br /&gt;
{{New items|3.0158|1.5.7|A subscription mode has been introduced for [[setElementData]] serverside. When setting data in subscription mode, only clients that are added through [[addElementDataSubscriber]] will receive the data, which is good for performance.&lt;br /&gt;
Note this mode only works when setting element data serverside. Setting data clientside still sends the update to all clients if 'synchronize' is set to true.&lt;br /&gt;
|20477}}&lt;br /&gt;
&lt;br /&gt;
==Syntax== &lt;br /&gt;
&amp;lt;section name=&amp;quot;Server&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 setElementData ( element theElement, string key, var value [, string syncMode = &amp;quot;broadcast&amp;quot;, string clientChangesPolicy = &amp;quot;default&amp;quot; ] )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
{{OOP||[[element]]:setData||getElementData}}&lt;br /&gt;
&lt;br /&gt;
===Required Arguments=== &lt;br /&gt;
*'''theElement:''' The [[element]] you wish to attach the data to.&lt;br /&gt;
*'''key:''' The key you wish to store the data under. (Maximum 128 characters.) &lt;br /&gt;
*'''value:''' The value you wish to store. See [[element data]] for a list of acceptable datatypes.&lt;br /&gt;
&lt;br /&gt;
===Optional Arguments=== &lt;br /&gt;
{{New items|3.0158|1.5.7|&lt;br /&gt;
*'''syncMode:''' Synchronization mode.&lt;br /&gt;
**''&amp;quot;broadcast&amp;quot;'' - Synchronize to all clients (default behavior). You can also parse ''true'' for this option.&lt;br /&gt;
**''&amp;quot;local&amp;quot;'' - Don't synchronize. You can also parse ''false'' for this option.&lt;br /&gt;
**''&amp;quot;subscribe&amp;quot;'' - Only synchronize to specific clients. See [[addElementDataSubscriber]] and [[removeElementDataSubscriber]].&lt;br /&gt;
|20477}}&lt;br /&gt;
{{New items|3.0161|1.6.0|&lt;br /&gt;
*'''clientChangesPolicy:''' Client changes policy.&lt;br /&gt;
**''&amp;quot;default&amp;quot;'' - Use '''elementdata_whitelisted''' setting from [https://wiki.multitheftauto.com/wiki/Server_mtaserver.conf#elementdata_whitelisted mtaserver.conf]&lt;br /&gt;
**''&amp;quot;allow&amp;quot;'' - Trust changes from clients.&lt;br /&gt;
**''&amp;quot;deny&amp;quot;'' - Deny client changes. The server will trigger the [[onPlayerChangesProtectedData]] event when the client attempts to change the value.&lt;br /&gt;
|22815}}&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section name=&amp;quot;Client&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 setElementData ( element theElement, string key, var value [, bool synchronize = true ] )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
{{OOP||[[element]]:setData||getElementData}}&lt;br /&gt;
&lt;br /&gt;
===Required Arguments=== &lt;br /&gt;
*'''theElement:''' The [[element]] you wish to attach the data to.&lt;br /&gt;
*'''key:''' The key you wish to store the data under. (Maximum 128 characters.) &lt;br /&gt;
*'''value:''' The value you wish to store. See [[element data]] for a list of acceptable datatypes.&lt;br /&gt;
&lt;br /&gt;
===Optional Arguments=== &lt;br /&gt;
*'''synchronize:''' Determines whether or not the data will be synchronized with the server.&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns ''true'' if the data was set successfully, ''false'' otherwise.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
Example 1&lt;br /&gt;
&amp;lt;section name=&amp;quot;Server&amp;quot; class=&amp;quot;server&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
This example allows a player to add a custom tag onto their nickname, and also reverts it back to normal if they wish.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function addPlayerCustomTag ( thePlayer, command, newTag )&lt;br /&gt;
	--Let's make sure the newTag param has been entered...&lt;br /&gt;
	if ( newTag ) then&lt;br /&gt;
		--Grab their current playername for saving.&lt;br /&gt;
		local sPlayerNickname = getPlayerName ( thePlayer )&lt;br /&gt;
		--Create their new nickname with their tag&lt;br /&gt;
		local sNewPlayerNickname = newTag .. &amp;quot; &amp;quot; .. sPlayerNickname&lt;br /&gt;
		&lt;br /&gt;
		--Let's first load the element data, see if it's there already&lt;br /&gt;
		--The reason for this is that if a player were to do /addtag twice,&lt;br /&gt;
		--the tag would be prepended a second time&lt;br /&gt;
		local sOldNick = getElementData( thePlayer, &amp;quot;tempdata.originalnick&amp;quot; )&lt;br /&gt;
		if ( sOldNick == false ) then&lt;br /&gt;
			--Save their orignal nickname in their element data&lt;br /&gt;
			setElementData ( thePlayer, &amp;quot;tempdata.originalnick&amp;quot;, sPlayerNickname )&lt;br /&gt;
		end&lt;br /&gt;
		&lt;br /&gt;
		--Set their new nickname globally&lt;br /&gt;
		setPlayerName ( thePlayer, sNewPlayerNickname )&lt;br /&gt;
		&lt;br /&gt;
		--Tell them it's done&lt;br /&gt;
		outputChatBox ( &amp;quot;Your new nickname has been set, to put it back to its original state you can use /deltag&amp;quot;, thePlayer )&lt;br /&gt;
	else&lt;br /&gt;
		--The newTag param was not entered, give an error message&lt;br /&gt;
		outputChatBox ( &amp;quot;/addtag - Incorrect syntax, Correct: /addtag &amp;lt;newtag&amp;gt;&amp;quot;, thePlayer )&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
addCommandHandler ( &amp;quot;addtag&amp;quot;, addPlayerCustomTag )&lt;br /&gt;
&lt;br /&gt;
function removePlayerCustomTag ( thePlayer, command )&lt;br /&gt;
	--We first need to check that they have already used /addtag, let's do that now&lt;br /&gt;
	local sOldNick = getElementData( thePlayer, &amp;quot;tempdata.originalnick&amp;quot; )&lt;br /&gt;
	if ( sOldNick ) then&lt;br /&gt;
		--Great, they have a tag added, let's reset them&lt;br /&gt;
		&lt;br /&gt;
		--First we will want to reset the element data back to its default (that being false)&lt;br /&gt;
		setElementData ( thePlayer, &amp;quot;tempdata.originalnick&amp;quot;, false )&lt;br /&gt;
		&lt;br /&gt;
		--Now set the client name back&lt;br /&gt;
		setPlayerName( thePlayer, sOldNick )&lt;br /&gt;
		&lt;br /&gt;
		--Notify them&lt;br /&gt;
		outputChatBox ( &amp;quot;Your old nickname has been set&amp;quot;, thePlayer )&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
addCommandHandler ( &amp;quot;deltag&amp;quot;, removePlayerCustomTag )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Changelog==&lt;br /&gt;
{{ChangelogHeader}}&lt;br /&gt;
{{ChangelogItem|1.6.0-9.22815|Added clientChangesPolicy argument}}&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Element_functions}}&lt;br /&gt;
&lt;br /&gt;
[[pt-br:SetElementData]]&lt;br /&gt;
[[tr:setElementData]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Changes_in_1.7&amp;diff=82582</id>
		<title>Changes in 1.7</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Changes_in_1.7&amp;diff=82582"/>
		<updated>2025-10-31T09:58:33Z</updated>

		<summary type="html">&lt;p&gt;O22: /* 77 Changes and Bug Fixes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pageclass class=&amp;quot;#4286f4&amp;quot; subcaption=&amp;quot;Next release&amp;quot;&amp;gt;&amp;lt;/pageclass&amp;gt;&lt;br /&gt;
{{Changelogs}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
'''This changelog is partial and needs updating. It is updated progressively to keep the page always up to date.'''&lt;br /&gt;
&lt;br /&gt;
* GitHub commit log: https://github.com/multitheftauto/mtasa-blue/compare/1.6.0...master&lt;br /&gt;
* GitHub milestone: https://github.com/multitheftauto/mtasa-blue/milestone/10&lt;br /&gt;
* Resources GitHub commit log: https://github.com/multitheftauto/mtasa-resources/compare/1.6.0...master&lt;br /&gt;
* Release announcement on forums: TBA&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Important notice to Windows 7 and 8.x users ==&lt;br /&gt;
If you are using Windows 7 or 8.x, please upgrade your system to Windows 10 or 11 as soon as possible. Windows 7 and 8.x are no longer supported by Microsoft (since January 2020 and January 2023 respectively) and most software (including Google Chrome and Steam) which means you are running an insecure system. Multi Theft Auto will also eventually drop Windows 7 and 8.x support sometime in the future, so it would be a good idea to start looking at upgrade options right now. Thank you!&lt;br /&gt;
&lt;br /&gt;
'''CEF in MTA is no longer updated for Windows 7 or 8.x. This is because CEF no longer supports those versions of Windows. This is bad for security, so please upgrade to Windows 10+ and MTA to 1.6+'''&lt;br /&gt;
&lt;br /&gt;
== 4 Deprecations ==&lt;br /&gt;
These changes will take effect in this version and scripts may need to be manually upgraded when updating:&lt;br /&gt;
* Changed [[base64Encode]] and [[base64Decode]] to throw a warning on use, please upgrade to [[encodeString]] and [[decodeString]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/30a83b0af164fb6920a2a60e089d08a6f5622f7d 30a83b0] by '''Nico834''')&lt;br /&gt;
* Changed [[setHelicopterRotorSpeed]] and [[getHelicopterRotorSpeed]] to throw a warning on use, please upgrade to [[setVehicleRotorSpeed]] and [[getVehicleRotorSpeed]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/82000c34830b51ace2d14e39f3b487feb1aac1da 82000c3] by '''FileEX''')&lt;br /&gt;
* Changes [[setPedOnFire]] and [[isPedOnFire]] to throw a warning on use, please upgrade to [[setElementOnFire]] and [[isElementOnFire]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/7ad96e2e78fe41f8924d3f105b1683f7363c6fcb 7ad96e2] by '''FileEX''')&lt;br /&gt;
* Changes [[removeAllGameBuildings]] and [[restoreAllGameBuildings]] to throw a warning on use, please upgrade to [[removeGameWorld]] and [[restoreGameWorld]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/d7adae68791ce237704acc06bf794b5fbda96f95#diff-93c130ddb85da32121129a437ac5b28ba16fa17f6e3506e4cddfb7bc3d8eb9fbR180 d7adae6] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
== Notable Changes ==&lt;br /&gt;
* Support for Discord Rich Presence ([https://github.com/multitheftauto/mtasa-blue/commit/fdaa3aca3e233c7aba69d0fd5f85e78288a4401a fdaa3ac], [https://github.com/multitheftauto/mtasa-blue/commit/ef26810df4542283fee8edcc165bc9be22f2ca98 ef26810], [https://github.com/multitheftauto/mtasa-blue/commit/acfbd40df1ff1432ea1d6663c005d43fce22899c acfbd40] by '''znjvder''', '''tederis''', '''patrikjuvonen''' and '''Deihim007''')&lt;br /&gt;
* Added support for [[Building]]'s ([https://github.com/multitheftauto/mtasa-blue/commit/81242edb9295efbf4bf8b198b12d577a0877aec2 81242ed], [https://github.com/multitheftauto/mtasa-blue/commit/eb6b18a5d49a7f0f34bdbf42b15f933e42876cf8 eb6b18a] by '''TheNormalnij''')&lt;br /&gt;
* Added the ability to generate a nickname ([https://github.com/multitheftauto/mtasa-blue/commit/12c50eee66898771244074a3a44818dab36a7ac3 12c50ee] by '''Nico834''')&lt;br /&gt;
* Added ''meta.xml'' loading files pattern ([https://github.com/multitheftauto/mtasa-blue/commit/90e2737d0a5eb12f34d2fd3c1f270bedf34cda35 90e2737] by '''W3lac3''')&lt;br /&gt;
* Added world properties (time cycle and weather related features) with new functions: [[setWorldProperty]], [[getWorldProperty]], [[resetWorldProperty]] ([https://github.com/multitheftauto/mtasa-blue/commit/a75f1e9a03e74f7c9d4ae9e5aef8433af84d5ea2 a75f1e9] by '''Samr46''')&lt;br /&gt;
* Added file-system related functions (list files and folders in directories) ([https://github.com/multitheftauto/mtasa-blue/commit/74781c6295b5b6dc81cd95d4cfab7900d88d7524 74781c6] by '''Tracer''')&lt;br /&gt;
* Added the ability to change the color and size of the target arrow in the checkpoint marker ([https://github.com/multitheftauto/mtasa-blue/commit/071378ec4326408a9520c79c96befca995d097f6 071378e] by '''FileEX''')&lt;br /&gt;
* Added the ability to change the alpha of checkpoint and arrow marker ([https://github.com/multitheftauto/mtasa-blue/commit/7988852cf3af9e78f662d76544dc00db408b5c87 7988852] by '''FileEX''')&lt;br /&gt;
* Fixed weapon issues when using the jetpack ([https://github.com/multitheftauto/mtasa-blue/commit/180fbc0b5fdba95450e7a519f78f7588849349bf 180fbc0], [https://github.com/multitheftauto/mtasa-blue/commit/a68c2c4232c28c6ba5595a814b89be976c4fa9c3 a68c2c4] by '''FileEX''')&lt;br /&gt;
* Fixed vehicle windows not being visible from the inside when the lights are on ([https://github.com/multitheftauto/mtasa-blue/commit/934c1d6cfef19902cc391c896bbe2f80ba5a4f70 934c1d6] by '''FileEX''')&lt;br /&gt;
* Fixed old [[setElementModel]] memory leak ([https://github.com/multitheftauto/mtasa-blue/commit/4e7afa2586c6992a75ac5312378c1096d87148ae 4e7afa2] by '''tederis''')&lt;br /&gt;
* Enabled WebGL (GPU Acceleration) in CEF ([https://github.com/multitheftauto/mtasa-blue/commit/026301168d2cd8239650a4f0aa33ff0be6d752dc 0263011] by '''TFP-dev''')&lt;br /&gt;
* Refactored '''Quick Connect button''' ([https://github.com/multitheftauto/mtasa-blue/commit/5b59e2236b30ec696ac1c05f8bb4e509ec06c0f7 5b59e22] by '''Fernando-A-Rocha''')&lt;br /&gt;
* Added setting to save camera photos in documents folder ([https://github.com/multitheftauto/mtasa-blue/commit/3419b9b7a20e3d1893d673a2a07ee1a0efda1bd5 3419b9b] by '''ffsPLASMA''')&lt;br /&gt;
* Added HUD customization ([https://github.com/multitheftauto/mtasa-blue/commit/5ea0e0fb23b21750207b23191db92562cf9b822c 5ea0e0f] by '''FileEX''')&lt;br /&gt;
* Added sync peds/players animations for new players ([https://github.com/multitheftauto/mtasa-blue/commit/b32eafc70816ece8ad995d98d380d8f6e9950475 b32eafc] by '''FileEX''')&lt;br /&gt;
* From now on, animation progress is preserved even after a restream; the animation will not start from the beginning. ([https://github.com/multitheftauto/mtasa-blue/commit/ad0d6bfdd7bf56b78f7c8c1b9a60597ef9b6dca3 ad0d6bf] by '''FileEX''')&lt;br /&gt;
* Added ability to replace CJ clothing models ([https://github.com/multitheftauto/mtasa-blue/commit/6b823653ecf68e181de91392d5d8931488f90f20 6b82365] by '''W3lac3''')&lt;br /&gt;
* New MTA splash window ([https://github.com/multitheftauto/mtasa-blue/commit/215173eeb1e015c0381ce94f95429c36ab1b4430 215173e] by '''botder''')&lt;br /&gt;
* Fixed multiple damage instances in certain areas during explosions ([https://github.com/multitheftauto/mtasa-blue/commit/3bce4080ec66a993096f9e7fb039cc7d5d0d8175 3bce408] by '''FileEX''')&lt;br /&gt;
* From now on, before disconnecting from the server using the main menu, you will be asked to confirm if you really want to do it ([https://github.com/multitheftauto/mtasa-blue/commit/6aa763fb79701c57402fccca9ae6c0f396fb8f3c 6aa763f] by '''tonievalue''')&lt;br /&gt;
&lt;br /&gt;
== Statistics ==&lt;br /&gt;
&amp;lt;section show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
These are some statistics since the [[Changes in 1.6.0|previous release]].&lt;br /&gt;
* This is the '''28&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt;''' 1.x.x release&lt;br /&gt;
* '''{{date difference|2023|06|16}}''' days&lt;br /&gt;
* '''39''' new functions&lt;br /&gt;
* '''12''' new events&lt;br /&gt;
* '''4''' deprecations&lt;br /&gt;
* '''50+''' bug fixes and changes&lt;br /&gt;
* '''734''' commits ([https://github.com/multitheftauto/mtasa-blue/compare/1.6.0...master mtasa-blue])  ([https://github.com/multitheftauto/mtasa-resources/compare/1.6.0...master mtasa-resources])&lt;br /&gt;
* '''78''' new open GitHub issues ([https://github.com/multitheftauto/mtasa-blue/issues?q=is%3Aopen+is%3Aissue+created%3A2023-06-16..2024-10-01 see list])&lt;br /&gt;
* '''29''' resolved GitHub issues ([https://github.com/multitheftauto/mtasa-blue/issues?q=is%3Aclosed+is%3Aissue+milestone%3A%221.6.1%22 see list])&lt;br /&gt;
* '''28''' closed GitHub issues ([https://github.com/multitheftauto/mtasa-blue/issues?q=is%3Aclosed+is%3Aissue+closed%3A2023-06-16..2024-10-01+no%3Amilestone+-label%3Ainvalid see list])&lt;br /&gt;
* '''30''' new open GitHub pull requests ([https://github.com/multitheftauto/mtasa-blue/pulls?q=is%3Aopen+is%3Apr+created%3A2023-06-16..2024-10-01 see list])&lt;br /&gt;
* '''81''' merged GitHub pull requests ([https://github.com/multitheftauto/mtasa-blue/pulls?q=is%3Apr+is%3Amerged+milestone%3A%221.6.1%22 see list])&lt;br /&gt;
* '''26''' closed GitHub pull requests ([https://github.com/multitheftauto/mtasa-blue/pulls?q=is%3Apr+is%3Aunmerged+closed%3A2023-06-16..2024-10-01 see list])&lt;br /&gt;
* '''2+''' contributors of which '''0+''' are new ([https://github.com/multitheftauto/mtasa-blue/graphs/contributors?from=2023-06-16&amp;amp;to=2024-10-01&amp;amp;type=c see list])&lt;br /&gt;
* '''100+''' total contributors ([https://github.com/multitheftauto/mtasa-blue/graphs/contributors see list])&lt;br /&gt;
* '''3''' vendor updates&lt;br /&gt;
&lt;br /&gt;
&amp;lt;sub&amp;gt;'''Note:''' Last update to these statistics was made {{date difference human friendly|2024|04|04}}.&amp;lt;/sub&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 86 New Features ==&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Added new ''special world properties'' to [[setWorldSpecialPropertyEnabled]] function&lt;br /&gt;
:* Added '''fireballdestruct''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
:* Added '''roadsignstext''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/4a746eca1b5a546a19344a76573a5108ff9d79e6 4a746ec] by '''FileEX''')&lt;br /&gt;
:* Added '''extendedwatercannons''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/13a53959f52c978b416c00b428938f82818b2312 13a5395] by '''FileEX''')&lt;br /&gt;
:* Added '''tunnelweatherblend''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/9a0790ec7fab1efb7817eead371744fcd47da5c5 9a0790e] by ''''gta191977649''')&lt;br /&gt;
:* Added '''ignorefirestate''' special world proeprty ([https://github.com/multitheftauto/mtasa-blue/commit/46f3580fbd8ea5cf48c14cf8fee0bd6eb6691854 46f3580] by '''FileEX''')&lt;br /&gt;
:* Added '''flyingcomponents''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/5ee641436821ae8a59484ac721a4ec929d5cc152 5ee6414] by '''FileEX''')&lt;br /&gt;
:* Added '''vehicleburnexplosions''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/88d303c0bbcc0ed4fee958df2d16ace562ce0108 88d303c] by '''samr46''')&lt;br /&gt;
:* Added '''vehicle_engine_autostart''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/8b3f3440f8bc485f90d466a3fe6f3e5819de9c2f 8b3f344] by '''samr46''')&lt;br /&gt;
&lt;br /&gt;
* Added new ''glitches'' to [[setGlitchEnabled]] function&lt;br /&gt;
:* Added '''vehicle_rapid_stop''' glitch ([https://github.com/multitheftauto/mtasa-blue/commit/3f5801e65d8a51d112b686485d4a2491151c3311 3f5801e], [https://github.com/multitheftauto/mtasa-blue/commit/ef792d6af62443f97014621334c7188dddb4ef29 ef792d6] by '''samr46''' and '''Merlin''')&lt;br /&gt;
&lt;br /&gt;
* New '''file''' functions&lt;br /&gt;
:* Added [[fileGetContents]] ([https://github.com/multitheftauto/mtasa-blue/commit/22930d854ce67d84a4a3b65a61b98a9ffd3f9e38 22930d8] by '''botder''')&lt;br /&gt;
:* Added [[fileGetHash]] ([https://github.com/multitheftauto/mtasa-blue/commit/94f944f508b99b5d7e84fbb0be07a483e10517a9 94f944f] by '''botder''')&lt;br /&gt;
&lt;br /&gt;
* New and updated [[object]] functions&lt;br /&gt;
:* '''[Updated]''' Added [[isObjectMoving]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/7c939adb892c08836462a78cd9b987884cdb49ee 7c939ad] by '''FileEX''')&lt;br /&gt;
:* '''[Updated]''' Added [[breakObject]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/aa1a7853f46fc796a94f38b7df2a5293fb941ba2 aa1a785] by '''FileEX''')&lt;br /&gt;
:* '''[Updated]''' Added [[respawnObject]] and [[toggleObjectRespawn]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/9d65bb673c4df16def27e97a4af74d3b0c7eedc9 9d65bb6] by '''FileEX''')&lt;br /&gt;
:* '''[New]''' Added [[isObjectRespawnable]] ([https://github.com/multitheftauto/mtasa-blue/commit/9d65bb673c4df16def27e97a4af74d3b0c7eedc9 9d65bb6] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New '''file-path''' functions&lt;br /&gt;
:* Added [[pathListDir]], [[pathIsFile]] and [[pathIsDirectory]] ([https://github.com/multitheftauto/mtasa-blue/commit/74781c6295b5b6dc81cd95d4cfab7900d88d7524 74781c6] by '''Tracer''')&lt;br /&gt;
&lt;br /&gt;
* New [[marker]] functions&lt;br /&gt;
:* Added [[setMarkerTargetArrowProperties]] and [[getMarkerTargetArrowProperties]] ([https://github.com/multitheftauto/mtasa-blue/commit/071378ec4326408a9520c79c96befca995d097f6 071378e] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[timer]] functions&lt;br /&gt;
:* Added [[setTimerPaused]] and [[isTimerPaused]] ([https://github.com/multitheftauto/mtasa-blue/commit/69aa420f21fde3ac56e3d3bbc62ef0f060295c0a 69aa420] by '''jvstns''')&lt;br /&gt;
&lt;br /&gt;
* New and updated '''world''' functions&lt;br /&gt;
:* '''[New]''' Added [[resetWorldProperties]] ([https://github.com/multitheftauto/mtasa-blue/commit/6df889e78328b80f8e4bdc02f8761472cf87c54c 6df889e] by '''FileEX''')&lt;br /&gt;
:* '''[Updated]''' Added [[isWorldSpecialPropertyEnabled]] and [[setWorldSpecialPropertyEnabled]] also to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
&lt;br /&gt;
* New and updated [[vehicle]] functions&lt;br /&gt;
:* '''[New]''' Added [[spawnVehicleFlyingComponent]] ([https://github.com/multitheftauto/mtasa-blue/commit/9f54cfcd7a584f413db731052ebed921acfc71ea 9f54cfc] by '''FileEX''')&lt;br /&gt;
:* '''[Upated]''' Added [[setVehicleNitroActivated]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/e9e5819c394987de2b9a5d581c4df9fd47057d9d#diff-49b4b89bf4463f38e70a325131b4da66457d783b1401dde0ffbad723624f8612R130 e9e5819] by '''Proxy-99''')&lt;br /&gt;
:* '''[Updated]''' Added [[addVehicleSirens]] and [[removeVehicleSirens]] to client-side ([https://github.com/multitheftauto/mtasa-blue/commit/682cdca3c37248a9e725b461ba322db413653f25 682cdca] by '''Proxy-99''')&lt;br /&gt;
&lt;br /&gt;
* Updated [[player]] functions&lt;br /&gt;
:* Added [[getPlayerScriptDebugLevel]] to client-side ([https://github.com/multitheftauto/mtasa-blue/commit/8403da54ecfd20d6b9740fb79d90ac936d316112 8403da5] by '''Nico834''')&lt;br /&gt;
&lt;br /&gt;
* Updated [[ped]] functions&lt;br /&gt;
:* Added [[isPedReloadingWeapon]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/e71f4828b46bb69b9622a11d0f700a79f986ee9b e71f482] by '''Nico834''')&lt;br /&gt;
&lt;br /&gt;
* New [[element]] functions&lt;br /&gt;
:* Added [[setElementOnFire]] and [[isElementOnFire]] ([https://github.com/multitheftauto/mtasa-blue/commit/7ad96e2e78fe41f8924d3f105b1683f7363c6fcb 7ad96e2] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
=== Client ===&lt;br /&gt;
====Functions====&lt;br /&gt;
* New '''engine''' functions &lt;br /&gt;
:* Added '''streaming''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/7ffc31243c1dbca8ed5e7b0f8c05da239aa918bd 7ffc312], [https://github.com/multitheftauto/mtasa-blue/commit/6c86ebbf0801c45d5e0bcbb9d9f2e8fd55525b15 6c86ebb], [https://github.com/multitheftauto/mtasa-blue/commit/3c44dc5dcde0a5f98ff470ce9bc64443d47de807 3c44dc5] by '''Pirulax''')&lt;br /&gt;
::* [[engineStreamingSetMemorySize]]&lt;br /&gt;
::* [[engineStreamingGetMemorySize]]&lt;br /&gt;
::* [[engineStreamingRestoreMemorySize]]&lt;br /&gt;
::* [[engineStreamingSetBufferSize]]&lt;br /&gt;
::* [[engineStreamingGetBufferSize]]&lt;br /&gt;
::* [[engineStreamingRestoreBufferSize]]&lt;br /&gt;
::* [[engineStreamingSetModelCacheLimits]]&lt;br /&gt;
:* Added '''model-streaming''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/008eaa7e36ae74bbab7c5bc9861d8f0f890eb945 008eaa7] by '''TheNormalnij''')&lt;br /&gt;
::* [[engineStreamingRequestModel]]&lt;br /&gt;
::* [[engineStreamingReleaseModel]]&lt;br /&gt;
::* [[engineStreamingGetModelLoadState]]&lt;br /&gt;
:* Added new '''TXD''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/3e9a3735a8022a0acabaa3041c8a3f8d91e547b7 3e9a373] by '''TheNormalnij''')&lt;br /&gt;
::* [[engineSetModelTXDID]]&lt;br /&gt;
::* [[engineResetModelTXDID]]&lt;br /&gt;
:* Added '''pools''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/bdf12215d1f6e73d87f5cb0881049aa224b46b65 bdf1221] by '''TheNormalnij''')&lt;br /&gt;
::* [[engineGetPoolCapacity]]&lt;br /&gt;
::* [[engineSetPoolCapacity]]&lt;br /&gt;
::* [[engineGetPoolDefaultCapacity]]&lt;br /&gt;
::* [[engineGetPoolUsedCapacity]]&lt;br /&gt;
:* Added [[enginePreloadWorldArea]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b72fb9d3c9e6813cdf56e53d1a1e72958abd3cf 5b72fb9] by '''MegadreamsBE''')&lt;br /&gt;
&lt;br /&gt;
* New functions for '''Discord RPC''' ([https://github.com/multitheftauto/mtasa-blue/commit/fdaa3aca3e233c7aba69d0fd5f85e78288a4401a fdaa3ac], [https://github.com/multitheftauto/mtasa-blue/commit/ef26810df4542283fee8edcc165bc9be22f2ca98 ef26810], [https://github.com/multitheftauto/mtasa-blue/commit/acfbd40df1ff1432ea1d6663c005d43fce22899c acfbd40] by '''znjvder''', '''tederis''', '''patrikjuvonen''' and '''Deihim007''')&lt;br /&gt;
:* [[setDiscordApplicationID]]&lt;br /&gt;
:* [[setDiscordRichPresenceDetails]]&lt;br /&gt;
:* [[setDiscordRichPresenceState]]&lt;br /&gt;
:* [[setDiscordRichPresenceAsset]]&lt;br /&gt;
:* [[setDiscordRichPresenceSmallAsset]]&lt;br /&gt;
:* [[setDiscordRichPresenceButton]]&lt;br /&gt;
:* [[resetDiscordRichPresenceData]]&lt;br /&gt;
:* [[isDiscordRichPresenceConnected]]&lt;br /&gt;
:* [[setDiscordRichPresencePartySize]]&lt;br /&gt;
:* [[setDiscordRichPresenceStartTime]]&lt;br /&gt;
:* [[setDiscordRichPresenceEndTime]]&lt;br /&gt;
:* [[getDiscordRichPresenceUserID]]&lt;br /&gt;
&lt;br /&gt;
* New [[building]] functions ([https://github.com/multitheftauto/mtasa-blue/commit/81242edb9295efbf4bf8b198b12d577a0877aec2 81242ed], [https://github.com/multitheftauto/mtasa-blue/commit/eb6b18a5d49a7f0f34bdbf42b15f933e42876cf8 eb6b18a] by '''TheNormalnij''')&lt;br /&gt;
:* [[createBuilding]]&lt;br /&gt;
:* '''[Deprecated]''' [[removeAllGameBuildings]] &lt;br /&gt;
:* '''[Deprecated]''' [[restoreAllGameBuildings]] &lt;br /&gt;
&lt;br /&gt;
* New '''world''' functions&lt;br /&gt;
:* Added [[processLineAgainstMesh]] ([https://github.com/multitheftauto/mtasa-blue/commit/acb80a3945d0d5e0230b8a41394a3fe3e70b8d0b acb80a3] by '''Pirulax''')&lt;br /&gt;
:* Added '''volumetric shadows''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/6c93a49c4c2381f4ce84df195d98d36372a47d37 6c93a49] by '''Proxy-99''')&lt;br /&gt;
:::* [[setVolumetricShadowsEnabled]]&lt;br /&gt;
:::* [[isVolumetricShadowsEnabled]]&lt;br /&gt;
:::* [[resetVolumetricShadows]]&lt;br /&gt;
:* Added [[testSphereAgainstWorld]] ([https://github.com/multitheftauto/mtasa-blue/commit/aa90aa5f31e59df455af33b49e3eee5e4f107bfd aa90aa5] by '''FileEX''')&lt;br /&gt;
:* Added [[removeGameWorld]] and [[restoreGameWorld]] ([https://github.com/multitheftauto/mtasa-blue/commit/d7adae68791ce237704acc06bf794b5fbda96f95 d7adae6] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
* New '''drawing''' functions&lt;br /&gt;
:* Added [[dxDrawModel3D]] ([https://github.com/multitheftauto/mtasa-blue/commit/f886a359dd4a680c080da7f132db0527116b5d7a f886a35], [https://github.com/multitheftauto/mtasa-blue/commit/04ef14bbf2182b356155f28d4ed972b0f293632f 04ef14b] by '''CrosRoad95''' and '''tederis''')&lt;br /&gt;
&lt;br /&gt;
* New '''effects/fx''' functions&lt;br /&gt;
:* Added [[fxCreateParticle]] ([https://github.com/multitheftauto/mtasa-blue/commit/8f2730d2e260c3319cb51101c6aedb45e22bbd89 8f2730d] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[ped]] functions&lt;br /&gt;
:* Added [[resetPedVoice]] ([https://github.com/multitheftauto/mtasa-blue/commit/18986a4542db5eb72f6d0dfffb80cb8bb6eb1442 18986a4] by '''Tracer''')&lt;br /&gt;
:* Added new animation features ([https://github.com/multitheftauto/mtasa-blue/commit/aa0591c6f7b529a27b4ed8667e1dc70e68bd9386 aa0591c] by '''Tracer''')&lt;br /&gt;
::* [[getPedAnimationProgress]]&lt;br /&gt;
::* [[getPedAnimationSpeed]]&lt;br /&gt;
::* [[getPedAnimationLength]]&lt;br /&gt;
:* Added [[killPedTask]] ([https://github.com/multitheftauto/mtasa-blue/commit/e4a502bc7619dc3913c70d169f6105ecfb0633ff e4a502b] by '''Proxy-99''')&lt;br /&gt;
:* Added ped shadow features ([https://github.com/multitheftauto/mtasa-blue/commit/26d18288730fd3a7a854152da60c9acd18ab6c6f 26d1828] by '''Proxy-99''')&lt;br /&gt;
::* [[setDynamicPedShadowsEnabled]]&lt;br /&gt;
::* [[isDynamicPedShadowsEnabled]]&lt;br /&gt;
::* [[resetDynamicPedShadows]]&lt;br /&gt;
:* Added [[playPedVoiceLine]] ([https://github.com/multitheftauto/mtasa-blue/commit/7067ac1a73bb0b8c5a1f37794504a00e9703332e 7067ac1] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[player]] functions&lt;br /&gt;
:* Added [[isPlayerCrosshairVisible]] ([https://github.com/multitheftauto/mtasa-blue/commit/03e851a2f5ff2d917ba3c7a1c7577fdb5b8d2a6f 03e851a], [https://github.com/multitheftauto/mtasa-blue/commit/5f21c32fb0725140d6d03476e08de330d429b55a 5f21c32] by '''FileEX''')&lt;br /&gt;
:* New '''HUD''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/5ea0e0fb23b21750207b23191db92562cf9b822c 5ea0e0f] by '''FileEX''')&lt;br /&gt;
::* [[setPlayerHudComponentProperty]]&lt;br /&gt;
::* [[getPlayerHudComponentProperty]]&lt;br /&gt;
::* [[resetPlayerHudComponentProperty]]&lt;br /&gt;
&lt;br /&gt;
* New [[vehicle]] functions&lt;br /&gt;
:* Added [[setVehicleWheelsRotation]] ([https://github.com/multitheftauto/mtasa-blue/commit/aeb113d269fffee7d9ac435ce87b51e905e9efa6 aeb113d] by '''gta191977649''')&lt;br /&gt;
:* Added [[getVehicleEntryPoints]] ([https://github.com/multitheftauto/mtasa-blue/commit/bf588c163cd5bc134771e3842a6585212f06307f bf588c1] by '''MegadreamsBE''')&lt;br /&gt;
:* Added [[setVehicleSmokeTrailEnabled]] and [[isVehicleSmokeTrailEnabled]] for planes ([https://github.com/multitheftauto/mtasa-blue/commit/a5dfc5223358127299511b618ab29da08ff23030 a5dfc52] by '''Proxy-99''')&lt;br /&gt;
:* Added [[setVehicleRotorState]] and [[getVehicleRotorState]] for planes and helicopters ([https://github.com/multitheftauto/mtasa-blue/commit/c7644f2773c37c4e3d40b00807f2e962daca83b6#diff-9a175949acc865a4deea435d73c2082716ab68c6811ef1a657783f3d420dc00fR165 c7644f2] by '''FileEX''')&lt;br /&gt;
:* Added '''vehicle audio''' functions: ([https://github.com/multitheftauto/mtasa-blue/commit/53ee579670ef4ecec28f44627ff99321bba48cbd 53ee579] by '''TheNormalnij''')&lt;br /&gt;
::* [[setVehicleModelAudioSetting]]&lt;br /&gt;
::* [[getVehicleModelAudioSettings]]&lt;br /&gt;
::* [[resetVehicleModelAudioSettings]]&lt;br /&gt;
::* [[setVehicleAudioSetting]]&lt;br /&gt;
::* [[getVehicleAudioSettings]]&lt;br /&gt;
::* [[resetVehicleAudioSettings]]&lt;br /&gt;
&lt;br /&gt;
* New '''camera''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/40ec398bb15e775d1552286eb86fe7aa0dffefa4 40ec398], [https://github.com/multitheftauto/mtasa-blue/commit/d9c2793de2a9f0782ec59cf0ef9907abf935d421 d9c2793] by '''Tracer''')&lt;br /&gt;
:* [[shakeCamera]]&lt;br /&gt;
:* [[resetShakeCamera]]&lt;br /&gt;
&lt;br /&gt;
* New '''game-time''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/b8b7ce555e2f0f0dd74425ac7c91786374513bee b8b7ce5] by '''Proxy-99''')&lt;br /&gt;
:* [[setTimeFrozen]]&lt;br /&gt;
:* [[isTimeFrozen]]&lt;br /&gt;
:* [[resetTimeFrozen]]&lt;br /&gt;
&lt;br /&gt;
* New [[element]] functions&lt;br /&gt;
:* Added [[setElementBoneQuaternion]] and [[getElementBoneQuaternion]] ([https://github.com/multitheftauto/mtasa-blue/commit/10098b0984bf5d5955ea1764e28f616c8a60714f 10098b0] by '''gownosatana''')&lt;br /&gt;
:* Added [[setElementLighting]] ([https://github.com/multitheftauto/mtasa-blue/commit/90fd98a6381991cfa926a9a65b9b934d0343e2b1 90fd98a] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[browser]] functions&lt;br /&gt;
:* Added [[isBrowserGPUEnabled]] ([https://github.com/multitheftauto/mtasa-blue/commit/bfdfdb5f44726df85626e6e3e06c2a319c0c8962 bfdfdb5] by '''Lpsd''')&lt;br /&gt;
&lt;br /&gt;
* New '''weapons''' functions&lt;br /&gt;
:* Added [[setWeaponRenderEnabled]] &amp;amp; [[isWeaponRenderEnabled]] ([https://github.com/multitheftauto/mtasa-blue/commit/efed59b7dc7b076219f1c8a868ef8aa028582127 efed59b] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
====Events====&lt;br /&gt;
* Added [[onClientCoreCommand]] ([https://github.com/multitheftauto/mtasa-blue/commit/b2cf02943924c4972d2a695cdbfd7c9873fc3cbb b2cf029] by '''Pieter-Dewachter''')&lt;br /&gt;
&lt;br /&gt;
* Added [[onClientBrowserConsoleMessage]] ([https://github.com/multitheftauto/mtasa-blue/pull/3676 #3676], [https://github.com/multitheftauto/mtasa-blue/commit/d296a653c5ce2ecfd4f7150d74391b703b773baf d296a65] by '''gownosatana''' and '''Tracer''')&lt;br /&gt;
&lt;br /&gt;
=== Server ===&lt;br /&gt;
====Functions====&lt;br /&gt;
* New [[ACL]] functions&lt;br /&gt;
:* Added [[aclObjectGetGroups]] ([https://github.com/multitheftauto/mtasa-blue/commit/cf46bd8487bdb2d0cafdab1f43936357f670fe10 cf46bd8] by '''Tracer''')&lt;br /&gt;
&lt;br /&gt;
* New '''acl-account''' functions&lt;br /&gt;
:* Added [[getAccountType]] ([https://github.com/multitheftauto/mtasa-blue/commit/545f54b6ae0bfc721abba12402ad3787ed9ae811 545f54b] by '''Tracer''')&lt;br /&gt;
:* Added [[setAccountSerial]] ([https://github.com/multitheftauto/mtasa-blue/commit/a0c2e410f225ebd245a7c5b8031812cf94360097 a0c2e41] by '''camargo2019''')&lt;br /&gt;
&lt;br /&gt;
* New [[vehicle]] functions&lt;br /&gt;
:* Added new vehicle respawn functions ([https://github.com/multitheftauto/mtasa-blue/commit/1ff7137fd4477626d7ef4abfb1c696872cdf0eab 1ff7137], [https://github.com/multitheftauto/mtasa-blue/commit/d93287de761e568400b3b555a277e4ead6546ca3 d93287d] by '''Tracer''')&lt;br /&gt;
::* [[isVehicleRespawnable]]&lt;br /&gt;
::* [[getVehicleRespawnDelay]]&lt;br /&gt;
::* [[getVehicleIdleRespawnDelay]]&lt;br /&gt;
&lt;br /&gt;
* Added [[createBuilding]] to server-side also ([https://github.com/multitheftauto/mtasa-blue/commit/6e221298f4998c576ebf5a783cd0761b89117a7a 6e22129] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
* Security improvements for element-data system ([https://github.com/multitheftauto/mtasa-blue/commit/750d09adb9fd35f4c1b7786966b7ca292e35c200 750d09a] by '''TheNormalnij''')&lt;br /&gt;
:* Added [[onPlayerChangesProtectedData]] event&lt;br /&gt;
:* Added '''elementdata_whitelisted''' tag to the '''mtaserver.conf'''&lt;br /&gt;
:* Added '''clientChangesPolicy''' argument to the [[setElementData]].&lt;br /&gt;
&lt;br /&gt;
* Added new [[Server_mtaserver.conf|mta_server.conf]] tags:&lt;br /&gt;
&amp;lt;!--:* Added object specific contact radius and limit contact check. This can be set in the [[server_mtaserver.conf#object_contact_sync_radius|mtaserver.conf]]([https://github.com/multitheftauto/mtasa-blue/commit/6085796cafd1008ed4a74eae614d651c6c734741 6085796] by '''MegadreamsBE''')--&amp;gt;&lt;br /&gt;
:* Added [[Server_mtaserver.conf#vehicle_contact_sync_radius#vehicle_contact_sync_radius|vehicle_contact_sync_radius]] tag ([https://github.com/multitheftauto/mtasa-blue/commit/e3338c2fbbdb500c4ce28dc0677ceadef1f1ca4c e3338c2] by '''MegadreamsBE''')&lt;br /&gt;
:* Added [[Server_mtaserver.conf#vehicle_contact_sync_radius#check_duplicate_serials|check_duplicate_serials]] tag ([https://github.com/multitheftauto/mtasa-blue/commit/e094942b75117a49cae8c35d6508f37d0cf511fe e094942] by '''Nico834''')&lt;br /&gt;
:* Added [[Server_mtaserver.conf#vehicle_contact_sync_radius#elementdata_whitelisted|elementdata_whitelisted]] tag [https://github.com/multitheftauto/mtasa-blue/commit/750d09adb9fd35f4c1b7786966b7ca292e35c200 750d09a] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
====Events====&lt;br /&gt;
* Added [[onExplosion]] event ([https://github.com/multitheftauto/mtasa-blue/commit/9edffc4997579583407e8c2910264b344cf626a3 9edffc4] by '''botder''')&lt;br /&gt;
* Added [[onPlayerProjectileCreation]] and [[onPlayerDetonateSatchels]] events ([https://github.com/multitheftauto/mtasa-blue/commit/bc404021f66228fb00f1f136a606425da6075daa bc40402] by '''Zangomangu''')&lt;br /&gt;
* Added [[onPlayerTriggerEventThreshold]] event ([https://github.com/multitheftauto/mtasa-blue/commit/eae47fe2f432d9053c425fd515ea27f963c254ec eae47fe] by '''Lpsd''')&lt;br /&gt;
* Added [[onResourceStateChange]] ([https://github.com/multitheftauto/mtasa-blue/commit/cfe9cd9d0006580e7e70dc9e93672e3d1d3b9836 cfe9cd9] by '''Tracer''')&lt;br /&gt;
* Added [[onPlayerTeamChange]] ([https://github.com/multitheftauto/mtasa-blue/commit/c4e18c618db299ea05f5395c798f2a7d6515f5ea c4e18c6] by '''esmail9900''')&lt;br /&gt;
* Added [[onAccountCreate]] and [[onAccountRemove]] ([https://github.com/multitheftauto/mtasa-blue/commit/545f54b6ae0bfc721abba12402ad3787ed9ae811 545f54b] by '''Tracer''')&lt;br /&gt;
* Added [[onPlayerTriggerInvalidEvent]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b4122d35f725e4d258b408253c93e7cbd2ec783 5b4122d] by '''Lpsd''')&lt;br /&gt;
* Added [[onPlayerChangesWorldSpecialProperty]] event ([https://github.com/multitheftauto/mtasa-blue/commit/bbf511d4c5a94fc42d4ead201446fcef8ae430ec bbf511d] by '''Nico834''')&lt;br /&gt;
* Added [[onPlayerChangesProtectedData]] event ([https://github.com/multitheftauto/mtasa-blue/commit/750d09adb9fd35f4c1b7786966b7ca292e35c200 750d09a] by '''TheNormalnij''')&lt;br /&gt;
* Added [[onShutdown]] ([https://github.com/multitheftauto/mtasa-blue/commit/aa20c7d279ac92f1f98c54e79fda7fe00de64e50 aa20c7d] by '''FileEX''')&lt;br /&gt;
* Added [[onPedWeaponReload]] and [[onPlayerWeaponReload]] ([https://github.com/multitheftauto/mtasa-blue/commit/e71f4828b46bb69b9622a11d0f700a79f986ee9b e71f482] by '''Nico834''')&lt;br /&gt;
* Added [[onPlayerTeleport]] ([https://github.com/multitheftauto/mtasa-blue/commit/4000ea4edb37d2d2caeb60a5977f7a38c8a22f06 a38e6ac] by '''imfelipedev''')&lt;br /&gt;
* Added [[onAccountNameChange]] ([https://github.com/multitheftauto/mtasa-blue/commit/078d46b13164c940f3a713039e1a1be6d52c6c76 078d46b] by '''Davis22d''')&lt;br /&gt;
&lt;br /&gt;
== 77 Changes and Bug Fixes ==&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Fixed random toggle of world special properties ([https://github.com/multitheftauto/mtasa-blue/commit/bf95b1d16e31f36899350e2acac4bb8adfad5cdd bf95b1d] by '''samr46''')&lt;br /&gt;
* Many debugscript fixes&lt;br /&gt;
:* Fixed [[onClientDebugMessage]]/[[onDebugMessage]] recognizing level 4 as 0 ([https://github.com/multitheftauto/mtasa-blue/commit/783971efbdfcae622dbc03fd7647c337c2a3a306 783971e] by '''Tracer''')&lt;br /&gt;
:* Fixed outputDebugString level 4 colors ([https://github.com/multitheftauto/mtasa-blue/commit/5d4d7df3b8ff703cf954f3af394c811c489dcb18 5d4d7df] by '''MegadreamsBE''')&lt;br /&gt;
:* Fixed [[outputDebugString]] level 4 not being logged ([https://github.com/multitheftauto/mtasa-blue/commit/1951a5e62d35b2cf4ec292d294f8c818b8463418 1951a5e] by '''MegadreamsBE''')&lt;br /&gt;
:* Fixed outputDebugString with level 4 not showing ([https://github.com/multitheftauto/mtasa-blue/commit/b459973f8ad00aff79042a338a70700a21b426dc b459973] by '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
* Ped sync improvements ([https://github.com/multitheftauto/mtasa-blue/commit/f5b599c9f45777f924f7980cadb2d3cc6431d8b8 f5b599c] by '''tederis''')&lt;br /&gt;
* Fixed &amp;quot;Using setElementHealth on a dead ped makes it invincible&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/836888379dc3e434752ad20c10a8d7d33ffc65a2 8368883] by '''FileEX''')&lt;br /&gt;
* Fixed setting player model resets their current weapon slot ([https://github.com/multitheftauto/mtasa-blue/commit/f7ce562b645cb05a18658df62d093b753b881bb9 f7ce562] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where ''&amp;quot;arrow&amp;quot;'' and ''&amp;quot;checkpoint&amp;quot;'' markers ignored the alpha color ([https://github.com/multitheftauto/mtasa-blue/commit/7988852cf3af9e78f662d76544dc00db408b5c87 7988852] by '''FileEX''')&lt;br /&gt;
* Fixed the goggle effect resetting after changing skin ([https://github.com/multitheftauto/mtasa-blue/commit/1dd291409f791891b54ccf6b1d1cebe08cff13c0 1dd2914] by '''Proxy-99''')&lt;br /&gt;
* Fixed satchels detaching after changing skin ([https://github.com/multitheftauto/mtasa-blue/commit/d93dbf2ca598bf3508364bc7c6337d82c3d9ccb2 d93dbf2] by '''FileEX''')&lt;br /&gt;
* Added '''resourceName''' global variable and added current resource as default argument for [[getResourceName]] ([https://github.com/multitheftauto/mtasa-blue/commit/49fb6c68a27ad85e5abcd563f4c4f8c568305fdb 49fb6c6] by '''Nico834''')&lt;br /&gt;
* Added new parameters '''animGroup''' &amp;amp; '''animID''' for wasted events [[onPlayerWasted]], [[onPedWasted]], [[onClientPlayerWasted]] ([https://github.com/multitheftauto/mtasa-blue/commit/ecd6ed98ca129e7f45bda14384a503bee09495a7 ecd6ed9] by '''Nico834''' and '''G-Moris''')&lt;br /&gt;
* Added optional '''ignoreAlphaLimits''' argument for [[createMarker]] to maintain backward compatibility after adding the ability to change alpha for arrow and checkpoint markers ([https://github.com/multitheftauto/mtasa-blue/commit/121048cb9a14c28dcefca9bf2d4e955ef920a087 121048c] by '''FileEX''')&lt;br /&gt;
* Added optional '''property''' argument for [[getVehicleHandling]] ([https://github.com/multitheftauto/mtasa-blue/commit/a08e38d6507fdc1c051c2b84727c83dd9c418649 a08e38d] by '''XJMLN''')&lt;br /&gt;
* Fixed health value issues ([https://github.com/multitheftauto/mtasa-blue/commit/612f9a6715059baa43182e891258d9c3ceb19591 612f9a6] by '''Tracer''')&lt;br /&gt;
* Fixed [[getTimerDetails]] negative remaining duration ([https://github.com/multitheftauto/mtasa-blue/commit/1c6cab5a94c8c6ff5cf9b1fc0c9bc04808c922f8 1c6cab5] by '''jvstns''')&lt;br /&gt;
* Fixed changing [[setElementCollisionsEnabled]] doesn't update contact element ([https://github.com/multitheftauto/mtasa-blue/commit/71c683f547aac34e876601d24c881227fe3ca05f 71c683f] by '''FileEX''')&lt;br /&gt;
* Removed ability to skip [[addDebugHook]] ([https://github.com/multitheftauto/mtasa-blue/commit/2fecd74fdd453efdcbdddfd8f3fa3c092640cf9f 2fecd74] by '''PlatinMTA''')&lt;br /&gt;
* Fixed hydraulics stopping working after using [[setVehicleHandling]] ([https://github.com/multitheftauto/mtasa-blue/commit/f96836397a075585d4d112eb7d0240f1abf361d4 f968363] by '''FileEX''')&lt;br /&gt;
* Fixed helicopter rotor unaffected by vehicle alpha ([https://github.com/multitheftauto/mtasa-blue/commit/55d39225254c0b9961c1423b0d5695beff20072b 55d3922] by '''FileEX''')&lt;br /&gt;
* Add '''spawnFlyingComponent &amp;amp; breakGlass''' arguments for [[setVehiclePanelState]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b69d700c848e36b2f427bbc6ba5b2c905592783 5b69d70] by '''FileEX''')&lt;br /&gt;
* Fixed armor synchronization ([https://github.com/multitheftauto/mtasa-blue/commit/583e675da976fbf90f45804ad834d8fe33c779a1 583e675] by '''Nico834''')&lt;br /&gt;
* Fixed jetpack disappearing after changing position and coming back after changing skin ([https://github.com/multitheftauto/mtasa-blue/commit/de26a9e98519350f0486290ce886595068c02470 de26a9e] by '''FileEX''')&lt;br /&gt;
* Added support for '''ZLIB''' compression to [[encodeString]] &amp;amp; [[decodeString]]. ([https://github.com/multitheftauto/mtasa-blue/commit/6230161f8d0c83b60aec3f4afa5be88dd213b88b 6230161] by '''samr46''')&lt;br /&gt;
* Fixed a bug where hex color codes were included in the chat message length. ([https://github.com/multitheftauto/mtasa-blue/commit/9a0b1d59233f7001e991262b4df9d1c17850dc08 9a0b1d5] by '''shadylua''')&lt;br /&gt;
&lt;br /&gt;
=== Client ===&lt;br /&gt;
* Update d3dcompiler_47.dll from CEF ([https://github.com/multitheftauto/mtasa-blue/commit/75a1a298113721343090a06d60394f63f64df9ca 75a1a29] and [https://github.com/multitheftauto/mtasa-blue/commit/6d8fd8cc2fe7377318583f70abf58dcdb7d09cb0 6d8fd8c] by '''patrikjuvonen''')&lt;br /&gt;
* Updated translations from Crowdin ([https://github.com/multitheftauto/mtasa-blue/commit/29baf29a0143706eb08ef76c4743a452a7f83600 29baf29] by '''patrikjuvonen''')&lt;br /&gt;
:* Added Azerbaijani to client languages&lt;br /&gt;
* Resolved cursor being invisible with main menu open in certain scenarios ([https://github.com/multitheftauto/mtasa-blue/commit/bb1f675e6fee0ca3967f05afb5d2592dec9459b2 bb1f675] by '''Lpsd''')&lt;br /&gt;
* Partially fixed screen flickering on high memory usage ([https://github.com/multitheftauto/mtasa-blue/commit/1a886460a9fab1041cfba38078ae544b0fa51240 1a88646] by '''Zangomangu''')&lt;br /&gt;
* Added ''texture hit info'' parameter to [[processLineOfSight]] ([https://github.com/multitheftauto/mtasa-blue/commit/86f3344d1371a9783c2c7b755b895160a03ff6cd 86f3344] by '''Pirulax''')&lt;br /&gt;
* Fixed CStreamingSA::GetUnusedStreamHandle ([https://github.com/multitheftauto/mtasa-blue/commit/38624a4c2d18f4b60064d49069d3bcd81fbb4385 38624a4] by '''tederis''')&lt;br /&gt;
* IMG count extension ([https://github.com/multitheftauto/mtasa-blue/commit/1a60f6094b6660d29cabae780e6fbea5f5f1abf2 1a60f60] by '''tederis''')&lt;br /&gt;
* Fixed a desync state after aborted carjacking ([https://github.com/multitheftauto/mtasa-blue/commit/3f510fcdc7722cdfcb2e09ea43990b56aa43162b 3f510fc] by '''Zangomangu''')&lt;br /&gt;
* Allowed allocating clump models ([https://github.com/multitheftauto/mtasa-blue/commit/428561f1ebab49b8370ef0f022510cd67e98ab59 428561f] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash in CEF init ([https://github.com/multitheftauto/mtasa-blue/commit/c782826c955dfbdbaa67852a245e1c601d6b9f2c c782826] by '''TheNormalnij''')&lt;br /&gt;
* Fixed &amp;quot;Changing vehicle model from doorless or &amp;quot;doorful&amp;quot; causes doors to fall off&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/d6659dae263e2883d9e479ca271f0e9c8e622f95 d6659da] by '''FileEX''')&lt;br /&gt;
* Fixed &amp;quot;Wheel visibility when using setVehicleWheelStates&amp;quot;  ([https://github.com/multitheftauto/mtasa-blue/commit/51c9257a427957642932a216bd76cb7de59fea1b 51c9257] by '''FileEX''')&lt;br /&gt;
* Added new world special property ''burnflippedcars'' ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
* Streaming buffer restore and fixes ([https://github.com/multitheftauto/mtasa-blue/commit/6c86ebbf0801c45d5e0bcbb9d9f2e8fd55525b15 6c86ebb] by '''Pirulax''')&lt;br /&gt;
* Fixed Unicode file path passed in CClientIMG ([https://github.com/multitheftauto/mtasa-blue/commit/c57f07bfad8b02953dbe7b2b6e9b9de08ba88226 c57f07b] by '''TheNormalnij''')&lt;br /&gt;
* Added new world special property ''fireballdestruct'' ([https://github.com/multitheftauto/mtasa-blue/commit/219ad73d600140724eefcf5ca4040ac417cdee12 219ad73] by '''samr46''')&lt;br /&gt;
* Fixed &amp;quot;Hide question box when hiding main menu&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/4beff0447f093c66594a5f32ad5e52c7d7188ce9 4beff04] by '''XJMLN''')&lt;br /&gt;
* Fixed engineFreeModel regression ([https://github.com/multitheftauto/mtasa-blue/commit/b52500e92fb2591c092a6e66121471f098a2e044 b52500e] by '''TheNormalnij''')&lt;br /&gt;
* Fixed assert when model info is missing ([https://github.com/multitheftauto/mtasa-blue/commit/d431e5e16120b63beafbfe69110da601d12a76bb d431e5e] by '''TheNormalnij''')&lt;br /&gt;
* Fixed engineFreeModel crashes ([https://github.com/multitheftauto/mtasa-blue/commit/c289c22fb9a13730b7fd793752d84adbf2b928ee c289c22] by '''TheNormalnij''')&lt;br /&gt;
* Filtered URLs in requestBrowserDomains with incorrect symbols ([https://github.com/multitheftauto/mtasa-blue/commit/74bbb068acc6757ff0e04d0c63b999236e51ce63 74bbb06] by '''TheNormalnij''')&lt;br /&gt;
* Fixed issues with ped shaders ([https://github.com/multitheftauto/mtasa-blue/commit/3bc1e6d98ab13a9e7db95cc616b4645dc761889b 3bc1e6d] by '''Merlin''')&lt;br /&gt;
* Fixed 3D primitives disappearing ([https://github.com/multitheftauto/mtasa-blue/commit/04a1e2ba9157e4a1a91297f91554b72a87bf0ed4 04a1e2b] by '''tederis''')&lt;br /&gt;
* Fixed [[svgSetSize]] issues ([https://github.com/multitheftauto/mtasa-blue/commit/721c2b6d0f0c4ab016be079f1d4e28dec0123a6d 721c2b6] by '''Nico834''')&lt;br /&gt;
* Fixed the marker flickering issue during water cannon effects ([https://github.com/multitheftauto/mtasa-blue/commit/e83f700ee24904c0411b4dad3e695b3c3e30d9e4 e83f700] by '''Merlin''')&lt;br /&gt;
* Fixed buildings removal ([https://github.com/multitheftauto/mtasa-blue/commit/1b40db7cb5b63966ee97d0cbe79190360e1d32a0 1b40db7] by '''tederis''')&lt;br /&gt;
* Fixed crashes caused by [[createBuilding]] with [[engineRequestModel]] ([https://github.com/multitheftauto/mtasa-blue/commit/6245a68f3d97fc222d78fbc66b67f422a13710bf 6245a68] by '''TheNormalnij''')&lt;br /&gt;
* Fixed wrong getModelMatrix result for buildings ([https://github.com/multitheftauto/mtasa-blue/commit/f691946bc2d3dac75bd27d31886cd6b66d55811d f691946] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crashes for ''timed-object'' in [[engineRequestModel]] ([https://github.com/multitheftauto/mtasa-blue/commit/229389a4bd1c4c02010ba27ce26a428b41b68560 229389a] by '''TheNormalnij''')&lt;br /&gt;
* Fixed incorrect colors for 3D draws ([https://github.com/multitheftauto/mtasa-blue/commit/1f2c6e75fb71b01f0053f151e766a232ed33692b 1f2c6e7] by '''Nico834''')&lt;br /&gt;
* Add missing definition GuiGridList::getColumnWidth ([https://github.com/multitheftauto/mtasa-blue/commit/b34b1d5362291bcf00c7a0a0b694f60e1dccb363 b34b1d5] by '''Lpsd''')&lt;br /&gt;
* Fixed [[resetPedVoice]] not working at all ([https://github.com/multitheftauto/mtasa-blue/commit/3d8bd504f009fc2aa66e1dc9d35427a889ccd6aa 3d8bd50] by '''Tracer''')&lt;br /&gt;
* Added LOD support for buildings ([https://github.com/multitheftauto/mtasa-blue/commit/77ab3e64a3c6dacdcee02a223b67aec6c5b97ec2 77ab3e6] by '''TheNormalnij''')&lt;br /&gt;
* Added render stages for 3D primitives (new ''stage'' parameter) ([https://github.com/multitheftauto/mtasa-blue/commit/841447684c2d1992656555f81d73da52b2ce5c4f 8414476] by '''tederis''')&lt;br /&gt;
* Added disable option for [[engineSetModelPhysicalPropertiesGroup]] ([https://github.com/multitheftauto/mtasa-blue/commit/b6216cad058582b0feb34e98e94531d4acbf7c5b b6216ca] by '''TheNormalnij''')&lt;br /&gt;
* Fixed return correct value for stuntDistance parameter ([https://github.com/multitheftauto/mtasa-blue/commit/1f464d61c8c5f1400faa5472ccb67d2436d52903 1f464d6] by '''XJMLN''')&lt;br /&gt;
* Fixed [[engineRestoreModelPhysicalPropertiesGroup]] restores incorrect group ([https://github.com/multitheftauto/mtasa-blue/commit/291dfb4bc9bd72307a4ba4b42ffcbfc03ded4e38 291dfb4] by '''TheNormalnij''')&lt;br /&gt;
* Fixed OGG sound files can't be played as RAW data ([https://github.com/multitheftauto/mtasa-blue/commit/2764b7983c4e1bde20b894ebcfef5f230b149030 2764b79] by '''FileEX''')&lt;br /&gt;
* Implement [[getElementBoundingBox]] for buildings ([https://github.com/multitheftauto/mtasa-blue/commit/7b228daea3e0dc22d808abcf0eb568d99efcf63d 7b228da] by '''TheNormalnij''')&lt;br /&gt;
* Fixed streaming size check after [[engineAddImage]] ([https://github.com/multitheftauto/mtasa-blue/commit/5cdc04d6d61f40e89a5da3d27ae9575f4a419a08 5cdc04d] by '''TheNormalnij''')&lt;br /&gt;
* Fixed [[removeWorldModel]] crash ([https://github.com/multitheftauto/mtasa-blue/commit/ae98b04753b54208961759b295bef44f0ffafe43 ae98b04] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash when using [[extinguishFire]] in [[onClientVehicleDamage]] event ([https://github.com/multitheftauto/mtasa-blue/commit/d6ae4e9e24b0b7de704a3cbeec25dfd661b4a3fc d6ae4e9] by '''FileEX''')&lt;br /&gt;
* Fixed weapon models being invisible when using the jetpack with [[setJetpackWeaponEnabled]] ([https://github.com/multitheftauto/mtasa-blue/commit/a68c2c4232c28c6ba5595a814b89be976c4fa9c3 a68c2c4] by '''FileEX''')&lt;br /&gt;
* Fixed animations validation to avoid crashes ([https://github.com/multitheftauto/mtasa-blue/commit/27a24b551d86c6fbf9ee308603f24b011e941399 27a24b5] by '''G-Moris''')&lt;br /&gt;
* Fixed a bug where the &amp;quot;attacker&amp;quot; parameter is always nil in the [[onClientObjectBreak]] event if the object is glass ([https://github.com/multitheftauto/mtasa-blue/commit/dca5e2065af4a0195526541f9a8285db0401616e dca5e20] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where the [[onClientObjectBreak]] event was not triggered if the glass was broken by an explosion ([https://github.com/multitheftauto/mtasa-blue/commit/dca5e2065af4a0195526541f9a8285db0401616e dca5e20] by '''FileEX''')&lt;br /&gt;
* Fixed a bug that prevented players from switching weapons with an active jetpack ([https://github.com/multitheftauto/mtasa-blue/commit/180fbc0b5fdba95450e7a519f78f7588849349bf 180fbc0] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where hitElement in the [[onClientVehicleCollision]] event was always nil for projectiles ([https://github.com/multitheftauto/mtasa-blue/commit/43cc7b3e34eb4680120eb8ebf40d31d845850df2 43cc7b3] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where hydra flares did not work with [[createProjectile]] ([https://github.com/multitheftauto/mtasa-blue/commit/2bdac16d1d868f396786fbfdcfa2595004e1fff5 2bdac16] by '''FileEX''')&lt;br /&gt;
* Fixed inconsistent extra component names ([https://github.com/multitheftauto/mtasa-blue/commit/d4f884935626c638dca0f7f45c71cfb22c4e2d72 d4f8849] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where after changing the key in the bind settings, only the key for the &amp;quot;down&amp;quot; status changed, while the &amp;quot;up&amp;quot; key remained unchanged.([https://github.com/multitheftauto/mtasa-blue/commit/3ebefc37951e24cbfb25035d99045d67571b5324 3ebefc3] by '''FileEX''')&lt;br /&gt;
* Maked frame graph scale accordingly to resolution ([https://github.com/multitheftauto/mtasa-blue/commit/e431474c676a253004a26d86fc9e1a6100d329d4 e431474] by '''ffsPLASMA''')&lt;br /&gt;
* Fixed old [[setElementModel]] memory leak ([https://github.com/multitheftauto/mtasa-blue/commit/4e7afa2586c6992a75ac5312378c1096d87148ae 4e7afa2] by '''tederis''')&lt;br /&gt;
* Fixed [[getObjectProperty]] returns invalid ''air_ressistance'' property ([https://github.com/multitheftauto/mtasa-blue/commit/b51e1116283e9ec453881d3c48229b96c6198d5a b51e111] by '''FileEX''')&lt;br /&gt;
* Fixed missing states in [[getPedControlState]] ([https://github.com/multitheftauto/mtasa-blue/commit/3333a115f1a14f00378161681aeba609b4e993c0 3333a11] by '''FileEX''')&lt;br /&gt;
* Fixed for randomly bright objects after weapon change  ([https://github.com/multitheftauto/mtasa-blue/commit/9b9120c73ec97bf1b2f24703889a62fc19326f1f 9b9120c] by '''FileEX''')&lt;br /&gt;
* Fixed some small problems with Device Selection Dialog ([https://github.com/multitheftauto/mtasa-blue/commit/6f90880bee4d9169d4eda5f6afc63f4ed1bf652f 6f90880] by '''forkerer''')&lt;br /&gt;
* Allow dynamic models to be created as buildings ([https://github.com/multitheftauto/mtasa-blue/commit/642438ec1302daba50b6f6069844e96cbaa31818 642438e] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash when disconnecting from server after creating projectiles ([https://github.com/multitheftauto/mtasa-blue/commit/9ab6104d9c1ec246fde29ae6bf303ae5848bbbe1 9ab6104] by '''TheNormalnij''')&lt;br /&gt;
* Allow client peds to enter/exit client vehicles ([https://github.com/multitheftauto/mtasa-blue/pull/3678 #3678], [https://github.com/multitheftauto/mtasa-blue/commit/67beec77b06897552dc2c756c15283bfdc19b143 67beec7] by '''gownosatana''' and '''Tracer''')&lt;br /&gt;
* Use immersive dark mode on game window ([https://github.com/multitheftauto/mtasa-blue/commit/fd9520498919ae191c718c49b2a5c742bbbf8239 fd95204] by '''FileEX''')&lt;br /&gt;
* Added damageable objects support for [[engineRequestModel]] ([https://github.com/multitheftauto/mtasa-blue/commit/21593b9239765343ad5a4975c9f8424e571a036d 21593b9] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash with [[setElementHealth]] in [[onClientPedDamage]] event ([https://github.com/multitheftauto/mtasa-blue/commit/2d3397df56827f7c218689873f8b4741ea9af44e 2d3397d] by '''FileEX''')&lt;br /&gt;
* Fixed [[setPedControlState]] is aborted when ped created/player join ([https://github.com/multitheftauto/mtasa-blue/commit/8117ebcb95d3e3c35c400ee073a6ebab81e3f9fb 8117ebc] by '''FileEX''')&lt;br /&gt;
* Added '''buildings''' support to [[engineApplyShaderToWorldTexture]] ([https://github.com/multitheftauto/mtasa-blue/commit/fe1dd063170aef6a866bc241c305278a73200fdd fe1dd06] by '''TheNormalnij''')&lt;br /&gt;
* Fixed unintended behavior for ped control states ([https://github.com/multitheftauto/mtasa-blue/commit/a38e6acaf5c0fd83b5627660439f36d380cd26e6 a38e6ac] by '''Nico834''')&lt;br /&gt;
* Fixed SVG colors bug ([https://github.com/multitheftauto/mtasa-blue/commit/04f297b7b1aecb3753c8fbfa19fa9627abf422b4 04f297b] by '''TheNormalnij''')&lt;br /&gt;
* Fixed &amp;quot;CEF Launcher&amp;quot; process remaining after closing MTA ([https://github.com/multitheftauto/mtasa-blue/commit/a6c00278a5329e3b2b870b298d78565b14a7bed2 a6c0027] by '''botder''')&lt;br /&gt;
* Removed ''login'' cmd from chat history ([https://github.com/multitheftauto/mtasa-blue/commit/4639aea8a5544bfa4460bfcc8bba1d5b032e931a 4639aea] by '''PlatinMTA''')&lt;br /&gt;
* Fixed in-game updater dialog incorrectly showing 0% progress ([https://github.com/multitheftauto/mtasa-blue/commit/40d9ac11a9864d4f26c9eb1979e3a30ec0624061 40d9ac1] by '''Dutchman101''')&lt;br /&gt;
* Fixed invalid references counter to TXD after [[engineSetModelTXDID]] (top 1 crash according to players crash stats) ([https://github.com/multitheftauto/mtasa-blue/commit/1b7e9e82997fb4ac2eec5722d9134299902a16e6 1b7e9e8] by '''TheNormalnij''')&lt;br /&gt;
* Fixed server cache memory leak on connecting to another server ([https://github.com/multitheftauto/mtasa-blue/commit/e3476592fc46dc28f9da98f525797ae94ebf3ec3 e347659] by '''Lpsd''')&lt;br /&gt;
* Added the ability to set CPU affinity (CPU 0) in the '''advanced''' tab in the settings ([https://github.com/multitheftauto/mtasa-blue/commit/d04c92b24e7b85f6015fa93192ddda06e9023c85 d04c92b] by '''FileEX''')&lt;br /&gt;
* Fixed crash in ''CClientDisplayManager'' (top 2 crash according to players crash stats) ([https://github.com/multitheftauto/mtasa-blue/commit/0df0a4b40f7aea7c16473d0844a03fcece888420 0df0a4b] by '''Lpsd''')&lt;br /&gt;
* Set main menu FPS limit to current display refresh rate ([https://github.com/multitheftauto/mtasa-blue/commit/acbcc8e03ba8ac677a9c2c8182fb6f24868cae46 acbcc8e] by '''samr46''')&lt;br /&gt;
* [[setSoundEffectParameter]] and [[getSoundEffectParameters]] can be now used also on players! ([https://github.com/multitheftauto/mtasa-blue/commit/20851ecf7d69cc42fc00a62446a87d7e99c1e19d 20851ec] by '''tederis''')&lt;br /&gt;
* Fixed elements sometimes being visible from other dimensions in the current dimension ([https://github.com/multitheftauto/mtasa-blue/commit/9af03b3263a5a320e2f92140f6caa6c94b9fe9a5 9af03b3], [https://github.com/multitheftauto/mtasa-blue/commit/1dff560099459bc1b8248ef50643886158b0d731 1dff560] by '''FileEX''' &amp;amp; '''tederis''')&lt;br /&gt;
* Fixed bug &amp;quot;Copying text from CEF Browser shows Chinese characters in console&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/892beb0457b461d5afd5d91e86763181bdb972d3 892beb0] by '''ColombuxMaximus''')&lt;br /&gt;
* Fixed a bug where hidden vehicle components became visible after changing the variant or handling ([https://github.com/multitheftauto/mtasa-blue/commit/1d81347ee7e2614cd94e4b1807947d2c98b3305f 1d81347] by '''ColombuxMaximus''')&lt;br /&gt;
* Fixed persian characters in main menu &amp;amp; CEGUI ([https://github.com/multitheftauto/mtasa-blue/commit/efb2edfa853aa9a95f39ed9a843c3230b2e627cf efb2edf] by '''tzwer''')&lt;br /&gt;
* Added new movement states to [[getPedMoveState]] and fixed incorrect returning of &amp;quot;fall&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/c43c1b98b8ec0b7253d98c65b405ead482a765d8 c43c1b9], [https://github.com/multitheftauto/mtasa-blue/commit/797331fadbca4367f6cfd43633e48af44a99a115 797331f] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where friendly fire did not prevent fire damage ([https://github.com/multitheftauto/mtasa-blue/commit/9c4397707dd2a94d8a6124d6b502d39793f0d2ba 9c43977] by '''FileEX''')&lt;br /&gt;
* Fixed [[engineReplaceModel]] memory leak &amp;amp; potential crash ([https://github.com/multitheftauto/mtasa-blue/commit/1dbbfd025c5ff791f31e1ef4f255514198f88d0c 1dbbfd0] by '''FileEX''')&lt;br /&gt;
* Fixed '''ALT + F4''' not working ([https://github.com/multitheftauto/mtasa-blue/commit/93963a98f24fdb5e8374baaddaa6d99260be967e 93963a9] by '''lopezloo''')&lt;br /&gt;
* Fixed [[setPedOnFire]] doesn't cancel '''TASK_SIMPLE_PLAYER_ON_FIRE''' ([https://github.com/multitheftauto/mtasa-blue/commit/2a2f31bccd9d90adfc2b03f1f63248b9d016c725 2a2f31b] by '''FileEX''')&lt;br /&gt;
* Fixed crash related to buildings ([https://github.com/multitheftauto/mtasa-blue/commit/4bcded5c89caffd005b266021d3c1bbd83a554cb 4bcded5] by '''tederis''')&lt;br /&gt;
* Fixed client freeze in some locations on the map ([https://github.com/multitheftauto/mtasa-blue/commit/3a376e479201b30b27488a5a674d7d816397e79a 3a376e4] by '''tederis''')&lt;br /&gt;
* Added disconnect warning when using quick connect while connected to server ([https://github.com/multitheftauto/mtasa-blue/commit/be395665c0f5094793b923e9f4fb94056ccff961 be39566] by '''omar-o22''')&lt;br /&gt;
* Added missing trashcan in help section ([https://github.com/multitheftauto/mtasa-blue/commit/853a7d54a25bc09ee421ac837f22201882ece1b7 853a7d5] by '''omar-o22''')&lt;br /&gt;
* Fixed [[getElementsWithinRange]] not working with building element type ([https://github.com/multitheftauto/mtasa-blue/commit/5ad35b46004f4e758348a1a0c0b1024d4becb3c4 5ad35b4], [https://github.com/multitheftauto/mtasa-blue/commit/24bd2187c099a60881cabb001fbb6bb326044c81 24bd218] by '''PlatinMTA''' and '''omar-o22''')&lt;br /&gt;
* Fixed [[getElementDistanceFromCentreOfMassToBaseOfModel]] not working with building element type ([https://github.com/multitheftauto/mtasa-blue/commit/20d36cd3ef687108acf99f97b02965fa5dd6003b 20d36cd] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
=== Server ===&lt;br /&gt;
* Fixed bullet sync check in CBulletsyncPacket by verifying total ammo instead of clip ammo ([https://github.com/multitheftauto/mtasa-blue/commit/ca06762413833e1c7f8d17970334607763414a45 ca06762] by '''shadylua''')&lt;br /&gt;
* Check deprecated account name length on [[banPlayer]] to fix all players getting kicked ([https://github.com/multitheftauto/mtasa-blue/commit/b5e2332ca5857f3e984467ca0cb8163ec998ea06 b5e2332] by '''patrikjuvonen''')&lt;br /&gt;
* Fixed a crash in CHandlingManager ([https://github.com/multitheftauto/mtasa-blue/commit/b6867a0d2ed0b4ab12a4461c3f1ca7d667bdedbc b6867a0] by '''Olya-Marinova''')&lt;br /&gt;
* Removed min-version lua function from old MTA versions ([https://github.com/multitheftauto/mtasa-blue/commit/222b2720c93f29977fffb722f8d42ea3fb5f790d 222b272] by '''Olya-Marinova''')&lt;br /&gt;
* Disallow loadstring by default ([https://github.com/multitheftauto/mtasa-blue/commit/89e2d375d12deb026ee91fedc5e1ced04dc9a723 89e2d37] by '''srslyyyy''')&lt;br /&gt;
* Added valid values for 'donotbroadcastlan' setting ([https://github.com/multitheftauto/mtasa-blue/commit/f8d4422ad75c0d7f21894f9f868aa37ec6993a35 f8d4422] by '''Dark-Dragon''')&lt;br /&gt;
* Fixed &amp;quot;ped revives when syncer changes&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/af604ae7dfec742661206fb809f149140ce3a960 af604ae] by '''Zangomangu''')&lt;br /&gt;
* Fixed files not unloading after renaming ([https://github.com/multitheftauto/mtasa-blue/commit/2846e2794af1d9d441b7b988f49af521bd765fb0 2846e27] by '''W3lac3''')&lt;br /&gt;
* Added ability to limit client triggered events via [[triggerServerEvent]] ([https://github.com/multitheftauto/mtasa-blue/commit/eae47fe2f432d9053c425fd515ea27f963c254ec eae47fe] by '''Lpsd''')&lt;br /&gt;
* Added FileExists check to CMainConfig::AddMissingSettings ([https://github.com/multitheftauto/mtasa-blue/commit/1ebaa28e0381fb114b946f2f5a4d4bc5834ebd03 1ebaa28] by '''Lpsd''')&lt;br /&gt;
* Added server side weapon related checks ([https://github.com/multitheftauto/mtasa-blue/commit/86448ea52c7ee13e554a907c424aa3c891e51e31 86448ea] by '''NanoBob''')&lt;br /&gt;
* Added [[dbConnect]] option for MySQL ''&amp;quot;use_ssl=0&amp;quot;'' ([https://github.com/multitheftauto/mtasa-blue/commit/e6476767a9b6848467f0d123830dd2f90bd4442d e647676] by '''Lpsd''')&lt;br /&gt;
* Added ''content'' parameter to [[onPlayerPrivateMessage]] event ([https://github.com/multitheftauto/mtasa-blue/commit/79f8ed6a374d62e5cf1ec707b2ba25e3a959f509 79f8ed6] by '''FileEX''')&lt;br /&gt;
* Fix ability to move server-side vehicles that are far away from the player. New parameter can be set in the [[Server_mtaserver.conf#vehicle_contact_sync_radius|mtaserver.conf]] ([https://github.com/multitheftauto/mtasa-blue/commit/e3338c2fbbdb500c4ce28dc0677ceadef1f1ca4c e3338c2] by '''MegadreamsBE''')&lt;br /&gt;
* Added ''sync'' parameter for vehicles ([https://github.com/multitheftauto/mtasa-blue/commit/f88d31306d3c7fadfbc1542c85922612fd00b131 f88d313] by '''znvjder''')&lt;br /&gt;
* Fixed server-side pickup collision size ([https://github.com/multitheftauto/mtasa-blue/commit/49d97513e1eb2e0c96c5aa5a1d542d14131edd76 49d9751] by '''Proxy-99''') &lt;br /&gt;
* Fixed ''CSimBulletsyncPacket'' crash ([https://github.com/multitheftauto/mtasa-blue/commit/ee8bc92907a112a5584844329dbb07cc82326ad1 ee8bc92] by '''G-Moris''')&lt;br /&gt;
* Fixed onVehicleExit doesn't trigger if pulled out ([https://github.com/multitheftauto/mtasa-blue/commit/af4f7facca73bb68238437e6eff3504bd6f1cfe0 af4f7fa] by '''Proxy-99''')&lt;br /&gt;
* Fixed arguments in [[setPedAnimation]] being ignored when nil was passed ([https://github.com/multitheftauto/mtasa-blue/commit/f6f544e6b54054a06497fdf94cd077b862af8055 f6f544e] by '''FileEX''')&lt;br /&gt;
* Fixed Sirens not removed correctly ([https://github.com/multitheftauto/mtasa-blue/commit/9e419620069ec8ad5828c50295c1901685166cf9 9e41962] by '''Proxy-99''')&lt;br /&gt;
* Fixed a bug where [[setPedWeaponSlot]] did not update data in [[getPedWeapon]] and [[getPedWeaponSlot]] ([https://github.com/multitheftauto/mtasa-blue/commit/9615523faf84f584179412fb8e0cc04f9f4ee48f 9615523] by '''FileEX''')&lt;br /&gt;
* Added '''player''' parameter to [[onVehicleExplode]] ([https://github.com/multitheftauto/mtasa-blue/commit/1ec1f5be69d3ef99bd2e26fd3d008a7cecd0a5ad 1ec1f5b] by '''FileEX''')&lt;br /&gt;
* Excluded '''meta.xml''' from glob patterns for security reasons ([https://github.com/multitheftauto/mtasa-blue/commit/78f6d669adc97c51a825250dd4dbf1a4a4a0ff15 78f6d66] by '''FileEX''')&lt;br /&gt;
* Fixed the bug where changing a vehicle to one with a different number of seats caused passengers to experience network trouble ([https://github.com/multitheftauto/mtasa-blue/commit/1fcd732ca9031060602c8e2425e40ce602d35253 1fcd732] by '''FileEX''')&lt;br /&gt;
* Glob patterns added to meta.xml for HTML files ([https://github.com/multitheftauto/mtasa-blue/commit/7e6b4d02ec113b7ce3a6fd9937a6e8ad0a1ad9cb 7e6b4d0] by '''FileEX''')&lt;br /&gt;
* Fixed console not maintaining position &amp;amp; size when GUI skin changed ([https://github.com/multitheftauto/mtasa-blue/commit/30d8e6dbfe75db47cf396aa909f43c24c4dbe127] by '''NanoBob''')&lt;br /&gt;
* Added '''includeCustom''' argument for [[getValidPedModels]] clientside ([https://github.com/multitheftauto/mtasa-blue/commit/889567a7a0ecb8a8b8d938826d2395ef9f43a76b] by '''Fernando-A-Rocha''')&lt;br /&gt;
* Fixed '''min_mta_version''' tag for server ([https://github.com/multitheftauto/mtasa-blue/commit/8c0a01bac62ecc3e9510133dee9f8d6700065f03 8c0a01b] by '''Fernando-A-Rocha''')&lt;br /&gt;
* Allowed user to pass multiple resource names to start/stop/restart ([https://github.com/multitheftauto/mtasa-blue/commit/6f5fb9c65ee93a5c1692b0d3516a483dcea48f08 6f5fb9c] by '''botder''')&lt;br /&gt;
* Added sync peds/players animations for new players ([https://github.com/multitheftauto/mtasa-blue/commit/b32eafc70816ece8ad995d98d380d8f6e9950475 b32eafc] by '''FileEX''')&lt;br /&gt;
* Optimized processing big files by server ([https://github.com/multitheftauto/mtasa-blue/commit/cb90339aad461d3ee8c1008f2da10934afc38a4c cb90339] by '''AlexTMjugador''')&lt;br /&gt;
* Separate icon for ''mta-server.exe'' ([https://github.com/multitheftauto/mtasa-blue/commit/6cb9d3edf9686749e524f136985cefb53772898e 6cb9d3e] by '''Nico834''')&lt;br /&gt;
* Fixed a bug that caused warnings in debugscript when using depracated function names as variable names ([https://github.com/multitheftauto/mtasa-blue/commit/f23e39521b7e35ad5389e467360fbc525c099887 f23e395] by '''YelehaUwU''')&lt;br /&gt;
* [[onVehicleExplode]] can now be cancelled! ([https://github.com/multitheftauto/mtasa-blue/commit/fcb5b038981066f561f3792c2ae3d97d76d9d0fe fcb5b03] by '''Nico834''')&lt;br /&gt;
* Added '''eventName''' parameter to [[onPlayerTriggerEventThreshold]] ([https://github.com/multitheftauto/mtasa-blue/commit/76d7764c7ec408b77eb7b12379e88882e014527f 76d7764] by '''ColombuxMaximus''')&lt;br /&gt;
&lt;br /&gt;
=== More Technical Changes and Bug Fixes ===&lt;br /&gt;
&amp;lt;section show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
:* Updated CLuaFunctionParser.h ([https://github.com/multitheftauto/mtasa-blue/commit/55647f4023c78a846870f7c96069fab411cff5c5 55647f4] by '''Xenius97''')&lt;br /&gt;
:* Fixed build after above update ([https://github.com/multitheftauto/mtasa-blue/commit/9dcc651d42ae78b7b04257e7612c5b594cb0fffd 9dcc651] by '''Pirulax''')&lt;br /&gt;
:* Fixed std::unordered_map&amp;lt;std::string, std::string&amp;gt; parsing ([https://github.com/multitheftauto/mtasa-blue/commit/005592417b42de63c3d8ba9c572a81cdc8f96164 0055924] by '''tederis''')&lt;br /&gt;
:* Addendum to [https://github.com/multitheftauto/mtasa-blue/pull/3251 #3251] ([https://github.com/multitheftauto/mtasa-blue/commit/9544a34a28d3b4e766d7d07a44d63a8fe45dc506 9544a34] by '''Lpsd''')&lt;br /&gt;
:* Fixes for [https://github.com/multitheftauto/mtasa-blue/pull/3251 #3251] ([https://github.com/multitheftauto/mtasa-blue/commit/07013d24766a6259f4115bd0349a86f790dbf5d0 07013d2] by '''Lpsd''')&lt;br /&gt;
:* Fixed SetStreamingBufferSize possibly accessing memory out-of-bounds ([https://github.com/multitheftauto/mtasa-blue/commit/e08b84fbfe6ad0431605b31c2ba5a50a8f116dc9 e08b84f] by '''Pirulax''')&lt;br /&gt;
:* Added a check to verify itemList validity ([https://github.com/multitheftauto/mtasa-blue/commit/668073787fa6b952d0f1520e8ccae0999dbdba13 6680737] by '''R4ven47''')&lt;br /&gt;
:* Various code clean ups and refactors&lt;br /&gt;
::* Removed COffsetsMP and EU addresses ([https://github.com/multitheftauto/mtasa-blue/commit/52b0115a2d9157b7a153b5f24316ff6fd053e79b 52b0115] by '''Merlin''')&lt;br /&gt;
::* Removed COffsets and EU addresses ([https://github.com/multitheftauto/mtasa-blue/commit/959141de324126245d2b5ebf029c924302ff64e9 959141d] by '''Merlin''')&lt;br /&gt;
::* Clean ups ''multiplayer_sa'' code ([https://github.com/multitheftauto/mtasa-blue/commit/38982043978dd1ec72230569a6d534792e7c18bd 3898204] by '''CrosRoad95''')&lt;br /&gt;
::* Removed old easter-egg &amp;amp; debug code ([https://github.com/multitheftauto/mtasa-blue/commit/b26f80c3d72d628d63807529b408be4b61a5be60 b26f80c], [https://github.com/multitheftauto/mtasa-blue/commit/530212f34fc44e95599ca5e39e608583ecdbb5cc 530212f] by '''botder''' and '''Merlin''')&lt;br /&gt;
::* Refactored entity hierarchy &amp;lt;!-- Fixed accepting possible malicious packets --&amp;gt; ([https://github.com/multitheftauto/mtasa-blue/commit/fdaced046a9421a39de87b81eaf0f7de7c234c4b fdaced0] by '''Tracer''')&lt;br /&gt;
::* Removed unused symbol from ''CConsole'' class ([https://github.com/multitheftauto/mtasa-blue/commit/4fe9084a2e5c5eeed4b0a9a30a07607c812e923b 4fe9084] by '''Nico834''')&lt;br /&gt;
::* Refactored ''CLuaBlipDefs'' ([https://github.com/multitheftauto/mtasa-blue/commit/d05d09be8b9bd1327e37631411fa1e3b16c4dbb7 d05d09b], [https://github.com/multitheftauto/mtasa-blue/commit/c278c12debfd346377354017992543fc7cf6397b c278c12] by '''FileEX''')&lt;br /&gt;
::* Refactored ''CLuaTeamDefs'' ([https://github.com/multitheftauto/mtasa-blue/commit/74ffa1d0138ab3d848b0e081ca265f18ae6c7bd8 74ffa1d], [https://github.com/multitheftauto/mtasa-blue/commit/f37bbada1381370eeadabd4f4dde2a024ec48f5f f37bbad] by '''Nico834''')&lt;br /&gt;
::* Removed dead ''CAnimManagerSA'' code ([https://github.com/multitheftauto/mtasa-blue/commit/d18d7d35fb50fdeea3f70ad688a5857b29867185 d18d7d3] by '''G-Moris''')&lt;br /&gt;
::* Refactored class hierarchy and removed VTBL hacks ([https://github.com/multitheftauto/mtasa-blue/commit/61d1caffb5bfa9c620c08d43280150906dd172d5 61d1caf] by '''TheNormalnij''')&lt;br /&gt;
::* Refactored ''CWeaponSA'' and ''CPedSA'' classes ([https://github.com/multitheftauto/mtasa-blue/commit/a3b7c8519d0d167c66e70c8c7ed5d2f810b7ae39 a3b7c85], [https://github.com/multitheftauto/mtasa-blue/commit/2526a7dd6cde545e600792dcac3ab1b8ece0edec 2526a7d] by '''FileEX''')&lt;br /&gt;
::* Cleaning up client Common.h and moving enums to separate files ([https://github.com/multitheftauto/mtasa-blue/commit/1e56571479217f787b6444d48770f8aa69f14387 1e56571] by '''FileEX''')&lt;br /&gt;
:* Addd Comments to Frame Rate Fixes in CMultiplayerSA_FrameRateFixes.cpp ([https://github.com/multitheftauto/mtasa-blue/commit/e4e6d1b5a9609cb093a191db405c61339d4280d2 e4e6d1b] by '''Merlin''')&lt;br /&gt;
:* Fixed build after CEF update ([https://github.com/multitheftauto/mtasa-blue/commit/9980252446a6869609b1afa1ae1168282a99cb17 9980252] by '''TheNormalnij''')&lt;br /&gt;
:* Bump chromedriver from 114.0.2 to 119.0.1 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/5d8d3756d98b0272687b87c30adca2961eee86c8 5d8d375])&lt;br /&gt;
:* Bump axios from 1.4.0 to 1.6.1 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/ba018013085058905aa789c4fa3f39c4ed32fc69 ba01801])&lt;br /&gt;
:* Fixed file lock after img:destroy ([https://github.com/multitheftauto/mtasa-blue/commit/c2ccfd2c648a2d3f33ead2169262c30533f79bac c2ccfd2] by '''TheNormalnij''')&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
:* Bump follow-redirects from 1.15.2 to 1.15.6 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/437dbcd8024c5217c22ef0e38719f93f33f47ce5 437dbcd])&lt;br /&gt;
:* Fix permission check in File.create method ([https://github.com/multitheftauto/mtasa-blue/commit/92144a4d7383af09dfa05b7bcd3db09fa487e6fd 92144a4] by '''theSarrum''')&lt;br /&gt;
:* mbedTLS fix for cURL 8.8.0 ([https://github.com/multitheftauto/mtasa-blue/commit/4f7e0d87ec04e44d2e47f5b869c2d7c765817c0f 4f7e0d8] by '''Lpsd''')&lt;br /&gt;
:* Discord RPC Tweaks ([https://github.com/multitheftauto/mtasa-blue/commit/8ef351eabe46fd50da096247d8b6fc74508cb911 8ef351e] by '''theSarrum''')&lt;br /&gt;
:* Fixed small overhead in argument parser for strings ([https://github.com/multitheftauto/mtasa-blue/commit/d20582d770dfd2a1677d9981005b3b6d28fb8e4e d20582d] by '''TheNormalnij''')&lt;br /&gt;
:* Bump ws from 8.13.0 to 8.17.1 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/cc172fcae7654ead0d3530a4819c71f76205a175 cc172fc])&lt;br /&gt;
:* Generic exception type for argument parser instead of std::invalid_argument ([https://github.com/multitheftauto/mtasa-blue/commit/2043acfdb210a8f1158501e2fbb431b625bbf74d 2043acf] by '''tederis''')&lt;br /&gt;
:* Added comments for hooks in CMultiplayerSA_CrashFixHacks.cpp ([https://github.com/multitheftauto/mtasa-blue/commit/0327cb1bef9b234451f8a22ece9c6c70fdc9adb0 0327cb1] by '''FileEX''')&lt;br /&gt;
:* Optimization handling ([https://github.com/multitheftauto/mtasa-blue/commit/e3a8bd96d4eccb30e439ba8bd4a2029d01586154 e3a8bd9], [https://github.com/multitheftauto/mtasa-blue/commit/5ac6c8adad9c9ffd4a1c299c7cd548713e485bd6 5ac6c8a] by '''G-Moris''')&lt;br /&gt;
:* Added ability to use varargs in ArgumentParser functions ([https://github.com/multitheftauto/mtasa-blue/commit/8c2f95a5ffade0e7fb212b62282e69d7f433d36f 8c2f95a] by '''Tracer''')&lt;br /&gt;
:* Fixed google-breakpad in newer GCC versions ([https://github.com/multitheftauto/mtasa-blue/commit/5508c7e4058ad9d29cacc9964f8e84df2c60d14f 5508c7e] by '''Tracer''')&lt;br /&gt;
:* Validate serial on player join ([https://github.com/multitheftauto/mtasa-blue/commit/84437e49e6ebca758e1e87d93e7846f9aa99a673 84437e4] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Extract TXD class ([https://github.com/multitheftauto/mtasa-blue/commit/733683d70dc037fdcbb256fb17d86e93b fedd239] by '''TheNormalnij''')&lt;br /&gt;
:* Fixed a bug with desynchronization of the values of some fields of the ''CTickRateSettings'' structure ([https://github.com/multitheftauto/mtasa-blue/commit/af5b6968e0a28dbde7d92f3828dead0f1a936eec af5b696], [https://github.com/multitheftauto/mtasa-blue/commit/514a3b36d09906f09bb32e900c39dc09b1c29d10 514a3b3] by '''nweb''')&lt;br /&gt;
:* Fixed ''MinClientReqCheck'' and improve resource upgrade ([https://github.com/multitheftauto/mtasa-blue/commit/f0954109c0644c551ae3ec1df4474d1857e4bed8 f095410] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Refactored and improved player map (F11) ([https://github.com/multitheftauto/mtasa-blue/commit/2c5cf3226a573637b91d8b255d57113b7043dc28 2c5cf32] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Fixed ''CVector'' optional arguments ([https://github.com/multitheftauto/mtasa-blue/commit/6a70cf7def14db86980a499d0fdf4c63565915e1 6a70cf7] by '''Tracer''')&lt;br /&gt;
:* Fixed memory overwriting by ''EnumToString'' &amp;amp; ''StringToEnum'' ([https://github.com/multitheftauto/mtasa-blue/commit/3ab068ba213abca718ace47ac3bb8df9e4b1c3fc 3ab068b] by '''FileEX''')&lt;br /&gt;
:* Allow using ''std::variant'' with several pointers ([https://github.com/multitheftauto/mtasa-blue/commit/9d776c8bfc2680fc28857fc0a5dc4a4e40d4c3bf 9d776c8] by '''tederis''')&lt;br /&gt;
:* Fixed argument parser not distinguishing arrays from maps ([https://github.com/multitheftauto/mtasa-blue/commit/d4388a2452f4427bd56c3d93b80d4ea74c05b6e5 d4388a2] by '''FileEX''')&lt;br /&gt;
:* Fixed crash with nested arrays/maps in new argument parser ([https://github.com/multitheftauto/mtasa-blue/commit/ca877d33471fabbe970cf03d9d6d9b3413b6daa1 ca877d3] by '''tederis''')&lt;br /&gt;
&lt;br /&gt;
== 13 Vendor Updates ==&lt;br /&gt;
=== Client ===&lt;br /&gt;
* Updated libpng to 1.6.50 ([https://github.com/multitheftauto/mtasa-blue/commit/c24b39d41fd768337c3d336a944588d53dfaba44] by '''Nico834''')&lt;br /&gt;
* Updatee CEF to 127.3.5+g114ea2a+chromium-127.0.6533.120 ([https://github.com/multitheftauto/mtasa-blue/commit/bca4dff8dc490328000d7653a9166704d859b7e5 bca4dff] by '''Dutchman101''')&lt;br /&gt;
* Updated Unifont to 15.1.05 ([https://github.com/multitheftauto/mtasa-blue/commit/02115a5c00e2480bbb3b829b655869e7436de955 02115a5] by '''Dutchman101''')&lt;br /&gt;
&lt;br /&gt;
=== Server ===&lt;br /&gt;
* Updated cURL to 8.14.1 ([https://github.com/multitheftauto/mtasa-blue/commit/7c27c20da7503c68234cde0b726f10a3dcdf85e3] by '''Nico834''')&lt;br /&gt;
* Updated MySQL to 8.4.0 &amp;amp; OpenSSL to 3.3.1 ([https://github.com/multitheftauto/mtasa-blue/commit/a44d673bb8731506418fdbaa6690b339a98d82c1 a44d673] by '''botder''')&lt;br /&gt;
* Updated SQLite to 3.46.0 ([https://github.com/multitheftauto/mtasa-blue/commit/30e31af2ca1ae96e03386670a9df6db70336b968 30e31af] by '''Dutchman101''')&lt;br /&gt;
&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Updated mbedTLS to 3.6.4 ([https://github.com/multitheftauto/mtasa-blue/commit/45955dad5471f49e2784e37cbafd1b92196abe96] by '''Nico834''')&lt;br /&gt;
* Updated 7-Zip Standalone plugins to 24.07 (24.7.0.0) ([https://github.com/multitheftauto/mtasa-blue/commit/9b979b2d5c7f4b885046a85d9895e58416563890 9b979b2] by '''Dutchman101''')&lt;br /&gt;
* Updated freetype to freetype-37cefe3 (freetype/freetype@37cefe3) ([https://github.com/multitheftauto/mtasa-blue/commit/89e022cb8586aba5bdacd7b56c7d45c9b7b95f97 89e022c] by '''Dutchman101''')&lt;br /&gt;
* Updated nvapi from r550 to r555 ([https://github.com/multitheftauto/mtasa-blue/commit/5fdcada80a18af530381b04f54c3c69b6988f479 5fdcada] by '''Dutchman101''')&lt;br /&gt;
* Updated unrar to 7.0.9 ([https://github.com/multitheftauto/mtasa-blue/commit/ab9461be5777427261bc3a330acb4c0f5cdc2c8b ab9461b] by '''Dutchman101''')&lt;br /&gt;
* Updated FreeType to 2.13.2 ([https://github.com/multitheftauto/mtasa-blue/commit/a783e994264d4e954489e31459505c53759ca7f1 a783e99] by '''Dutchman101''')&lt;br /&gt;
* Updated zlib from 1.2.13 to 1.3 ([https://github.com/multitheftauto/mtasa-blue/commit/0f37ac0b18845e9f035d0ca45bbb41b9cd1aa979 0f37ac0] by '''Dutchman101''')&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
=== 46+ Changes and Bug Fixes ===&lt;br /&gt;
&lt;br /&gt;
'''admin'''&lt;br /&gt;
:* Removed execute code functionality for safety reasons ([https://github.com/multitheftauto/mtasa-resources/commit/507a04937524997410e450a6d4292974fa801bf8 507a049] by '''srslyyyy''')&lt;br /&gt;
:* Updated skins.xml ([https://github.com/multitheftauto/mtasa-resources/commit/b5306484a789cc59b05f4182505ac07df3d90e07 b530648] by '''shadylua''')&lt;br /&gt;
:* Fixed warnings ([https://github.com/multitheftauto/mtasa-resources/commit/d7b02022fa8168fc300dd562118100265cf0688b d7b0202] by '''jlillis''')&lt;br /&gt;
:* Making the admin window focused ([https://github.com/multitheftauto/mtasa-resources/commit/33f7cc938d243687fa36fa300ec588b2d057d02c 33f7cc9] by '''Proxy-99''')&lt;br /&gt;
:* Resource settings button is only displayed if there are settings ([https://github.com/multitheftauto/mtasa-resources/commit/0224ef52c699f27bd6e0e6364fbc81ecd0ec345f 0224ef5] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed nil index error and removed invalid characters causing syntax errors ([https://github.com/multitheftauto/mtasa-resources/commit/79857393ddb42f52ee05cf5758d5fdc8c2ff845c 7985739] by '''rad3sh''')&lt;br /&gt;
:* Allow disabling/enabling default reporting system ([https://github.com/multitheftauto/mtasa-resources/commit/0dbb83df7d3e9a20a2c897612db778bf4e395c92 0dbb83d] by '''Viude''')&lt;br /&gt;
:* Updated clientcheckban setting to ban serial instead of IP ([https://github.com/multitheftauto/mtasa-resources/commit/fa5beb96e10d9f30d9565ca212fe901f88e413a5 fa5beb9] by '''Viude''')&lt;br /&gt;
:* Fixed that double clicking on a resource without setting opened the GUI settings window ([https://github.com/multitheftauto/mtasa-resources/commit/82d5b835b503594101a99041498501e19a433a79 82d5b83] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed gridlist bug in weapons/vehicles ([https://github.com/multitheftauto/mtasa-resources/commit/6ba5a88b8a5da4a9df67f20347056754ea5a2c87 6ba5a88] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''admin2'''&lt;br /&gt;
:* Forward-ported permissions widget from admin1 and minor fixes ([https://github.com/multitheftauto/mtasa-resources/commit/25dcc4c655de26de0a2d0eb1b55ef7f3b3f6725e 25dcc4c] by '''Dark-Dragon''')&lt;br /&gt;
:* Fixed /report message viewer widget and minor fixes ([https://github.com/multitheftauto/mtasa-resources/commit/6dbdf2cf90d0e447879bea86942e01caf949b8f5 6dbdf2c] by '''Dark-Dragon''')&lt;br /&gt;
:* Refactored bans functionality ([https://github.com/multitheftauto/mtasa-resources/commit/d8c35b0a38a295d119054c4328a892c4e26be358 d8c35b0] by '''jlillis''')&lt;br /&gt;
:* Fixed messagebox not showing ([https://github.com/multitheftauto/mtasa-resources/commit/5afe0247e6ca44c5754a2d9a6a0af7bc8b57f967 5afe024] by '''FileEX''')&lt;br /&gt;
:* Added missing glitches and world properties ([https://github.com/multitheftauto/mtasa-resources/commit/6856aa075c8e5674379c2a89f355d8b167ab6fdb 6856aa0] by '''FileEX''')&lt;br /&gt;
:* Added content for &amp;quot;Users&amp;quot; sub-tab in the &amp;quot;Rights&amp;quot; tab ([https://github.com/multitheftauto/mtasa-resources/commit/3f8ecca953cc3dfa84e4d1b38b6b4c41f323688b 3f8ecca] by '''FileEX''')&lt;br /&gt;
:* Removed execute code functionality for safety reasons ([https://github.com/multitheftauto/mtasa-resources/commit/c4bc73a2b088b98116ece27065cc7f5a1dced15b c4bc73a] by '''jlillis''')&lt;br /&gt;
:* Replaced checkboxes with a gridlist for glitches and special world properties ([https://github.com/multitheftauto/mtasa-resources/commit/1dcb2953757c6741c93b9c63db33c032183047bc 1dcb295] by '''FileEX''')&lt;br /&gt;
:* Added ability to change server configuration settings ([https://github.com/multitheftauto/mtasa-resources/commit/118d58e383f631f111fe3f2463480182235c71d1 118d58e] by '''FileEX''')&lt;br /&gt;
:* Added content for &amp;quot;Resources&amp;quot; sub-tab in the &amp;quot;Rights&amp;quot; tab ([https://github.com/multitheftauto/mtasa-resources/commit/f16577e24ca9125eac5f2e96621077ad0d213b69 f16577e] by '''FileEX''')&lt;br /&gt;
:* Making the admin window focused ([https://github.com/multitheftauto/mtasa-resources/commit/33f7cc938d243687fa36fa300ec588b2d057d02c 33f7cc9] by '''Proxy-99''')&lt;br /&gt;
:* Fixed panel bind bug after reconnect ([https://github.com/multitheftauto/mtasa-resources/commit/c96bdd5297cf180f947596c1eded8929b4982e6c c96bdd5] by '''ricksterhd123''')&lt;br /&gt;
:* Added the new world special ([https://github.com/multitheftauto/mtasa-resources/commit/08ef1d07ee44540d1f74737e4871288568222331 08ef1d0] by '''omar-o22''')&lt;br /&gt;
:* Updated add ban GUI style ([https://github.com/multitheftauto/mtasa-resources/commit/52aec17bda8b63be70f02385400cf649952ac3ea 52aec17] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''chatmanager'''&lt;br /&gt;
:* Added a new resource for chat handling and management ([https://github.com/multitheftauto/mtasa-resources/commit/4e45cb75a8780b0c191031091a4fcd2d76442aa7 4e45cb7], [https://github.com/multitheftauto/mtasa-resources/commit/3f0f0d09a640178e01de71fa9e9b2caa9c21bcfa 3f0f0d0] by '''omar-o22''' and '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
'''defaultstats'''&lt;br /&gt;
:* Don't re-apply stats on every respawn ([https://github.com/multitheftauto/mtasa-resources/commit/9fde199ec5025052468df0255bf5c5011ef29718 9fde199] by '''Dutchman101''')&lt;br /&gt;
:* Fixed issue where defaultstats did not set player stats correctly ([https://github.com/multitheftauto/mtasa-resources/commit/567d10c552305dae3f57d5c422a34c25f22fdc12 567d10c] by '''MittellBuurman''')&lt;br /&gt;
&lt;br /&gt;
'''editor'''&lt;br /&gt;
:* Various fixes for local spawned or invalid elements ([https://github.com/multitheftauto/mtasa-resources/commit/4e3c57941cd789cff8d9ce240e99edca871a345d 4e3c579] by '''chris1384''')&lt;br /&gt;
:* Various bug fixes and improvements ([https://github.com/multitheftauto/mtasa-resources/commit/4674fa9c6dbff7a1073fb949cac44588c65df3fb 4674fa9] by '''IIYAMA12''')&lt;br /&gt;
:* Fixed rotation issues ([https://github.com/multitheftauto/mtasa-resources/commit/679c01b93132050548a86dba25ead7feaf9d5a1f 679c01b] by '''Nico834''')&lt;br /&gt;
:* Toggleable rotation mechanic and improve threshold ([https://github.com/multitheftauto/mtasa-resources/commit/83e2c79cbd959aa54c55d4220a5b4d38747e8353 83e2c79] by '''chris1384''')&lt;br /&gt;
:* Added missing objects and collisions ([https://github.com/multitheftauto/mtasa-resources/commit/4e83755d51345c0dc8e2e0f2ddf61588bf854641 4e83755] by '''THEGizmoOfficial''')&lt;br /&gt;
&lt;br /&gt;
'''edf'''&lt;br /&gt;
:* Fixed massive lag after stopping ''editor'' resource ([https://github.com/multitheftauto/mtasa-resources/commit/4674fa9c6dbff7a1073fb949cac44588c65df3fb 4674fa9] by '''IIYAMA12''')&lt;br /&gt;
&lt;br /&gt;
'''editor_main'''&lt;br /&gt;
:* Improvements ([https://github.com/multitheftauto/mtasa-resources/commit/5bf553f85cb9c53027814fe666268cb24ed66b2e 5bf553f], [https://github.com/multitheftauto/mtasa-resources/commit/e9b75fd615922c7d70f4e435a05fa933dcb9d2a5 e9b75fd] by '''q8X''')&lt;br /&gt;
:* Add xmlns namespace when saving map ([https://github.com/multitheftauto/mtasa-resources/commit/23fa3f38f71c2f3d28780df1b3ce163ab2eaae84 23fa3f3] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''editor_gui'''&lt;br /&gt;
:* Fixed test panel issues ([https://github.com/multitheftauto/mtasa-resources/commit/e558c846e8b0589997f342f431b36fdc371da000 e558c84] by '''chris1384''')&lt;br /&gt;
&lt;br /&gt;
'''fallout'''&lt;br /&gt;
:* Refactor &amp;amp; many improvements ([https://github.com/multitheftauto/mtasa-resources/commit/c733b69a735d004235ba61b1201ac1412acc6482 c733b69] by '''IIYAMA12''')&lt;br /&gt;
&lt;br /&gt;
'''freeroam'''&lt;br /&gt;
:* Updated skins.xml ([https://github.com/multitheftauto/mtasa-resources/commit/cacbe40a805402dec3a62180b987d4b777817ea6 cacbe40] by '''shadylua''')&lt;br /&gt;
:* Added Walk styles ([https://github.com/multitheftauto/mtasa-resources/commit/4a18d7585a2fa45eaed18d4b4796744a235a23c5 4a18d75] by '''shadylua''')&lt;br /&gt;
:* Security improvements ([https://github.com/multitheftauto/mtasa-resources/commit/2ec92132036d0dc073279dda3c88d71f578d651f 2ec9213] by '''IIYAMA12''')&lt;br /&gt;
:* Fixed freezetime flickering ([https://github.com/multitheftauto/mtasa-resources/commit/b40f27be0274b641c2cddd4c75a6f86f73ea4941 b40f27b], [https://github.com/multitheftauto/mtasa-resources/commit/817aa1ea9130fbccb1a23b7410309af2f8a21ddc 817aa1e] by '''ricksterhd123''' and '''jlillis''')&lt;br /&gt;
:* Fixed map key bind interferes with race editor help ([https://github.com/multitheftauto/mtasa-resources/commit/e62bc5471433b347b16c15709d469209cf202390 e62bc54] by '''MittellBuurman''')&lt;br /&gt;
:* Fixed player blips staying visible after closing spawn map with F1 ([https://github.com/multitheftauto/mtasa-resources/commit/aaf2dd7ed7a0b6b6c6609a4ee5d8319101e8a674 1a5031c] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''hedit'''&lt;br /&gt;
:* Added German localization [[File:Flag_de.png|x14px]] ([https://github.com/multitheftauto/mtasa-resources/pull/568/commits/c58df8666fbccfb0be73f27c52aa680dae2f0c1a bc33634] by '''shadylua''')&lt;br /&gt;
:* Added Brazilian Portuguese localization [[File:Flag_br.png|x14px]] ([https://github.com/multitheftauto/mtasa-resources/commit/d1b85d7dda45293ce497cf03f21eea2f59100b89 d1b85d7] by '''ricksterhd123''')&lt;br /&gt;
:* Added Hungarian localization [[File:Flag_hu.png|x18px]] ([https://github.com/multitheftauto/mtasa-resources/commit/53050dd0bf73a164969480c9277fc3c6b0601b7e 53050dd] by '''Nico834''')&lt;br /&gt;
:* Updated Turkish localization [[File:Tr.gif]] ([https://github.com/multitheftauto/mtasa-resources/commit/3044d00a796488870556b19b088ac505c332952c 3044d00] by '''mahlukat5''')&lt;br /&gt;
:* Updated Spanish localization [[File:Flag_es.png|x18px]] ([https://github.com/multitheftauto/mtasa-resources/commit/b74c2393cc15e403d4588ebb671659c16cc36269 b74c239] by '''kxndrick0''')&lt;br /&gt;
&lt;br /&gt;
'''internetradio'''&lt;br /&gt;
:* Fixed that the GUI window of the resource &amp;quot;internetradio&amp;quot; collides with the GUI window of the resource &amp;quot;helpmanager&amp;quot; ([https://github.com/multitheftauto/mtasa-resources/commit/313f3dde6b7cdb389f11f1a62a6d3e8c093c159f 313f3dd] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Improvements ([https://github.com/multitheftauto/mtasa-resources/commit/a3c9e17cf6b85374b5f9b5881937aee97da94745 a3c9e17] by '''srslyyyy''')&lt;br /&gt;
:* Added attaching to vehicles ([https://github.com/multitheftauto/mtasa-resources/commit/3dd5cbd32f092337707277fbecc5ee54988e07fc 3dd5cbd] by '''ds1-e''')&lt;br /&gt;
:* Added admin commands ([https://github.com/multitheftauto/mtasa-resources/commit/5c160212e190f74461d65fac1668cda07a2d0b11 https://github.com/multitheftauto/mtasa-resources/commit/5c160212e190f74461d65fac1668cda07a2d0b11] by '''ds1-e''')&lt;br /&gt;
:* Added ability to show speaker owner ([https://github.com/multitheftauto/mtasa-resources/commit/6189fc1eefce29c8467c5a1093eaa8bfd8ed97f0 6189fc1] by '''ds1-e''')&lt;br /&gt;
:* Fixed playSound3D and track name showing in other dimensions ([https://github.com/multitheftauto/mtasa-resources/commit/d4c04db009cdd68913fdb47bbc73acd91e63f981 d4c04db] by '''mateo-14'''&lt;br /&gt;
:* Added ability to edit the volume ([https://github.com/multitheftauto/mtasa-resources/commit/73ecb610fdc096926291e8c24c56eea7c43bb4d6 73ecb61], [https://github.com/multitheftauto/mtasa-resources/commit/254700cffdf5c6b054e8f6e17afb4b7342593a85 254700c] by '''omar-o22''' and '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
'''ip2c'''&lt;br /&gt;
:* Added missing fetchRemote aclrequest ([https://github.com/multitheftauto/mtasa-resources/commit/e1364c3ebcc956dbf7f61e2d89741837776edec2 e1364c3] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Added backed up file and .gitignore to ignore the real one (auto-updated) ([https://github.com/multitheftauto/mtasa-resources/commit/e182291a53c3c76a2cf45834ba313aa9d18c16f4 e182291] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''ipb'''&lt;br /&gt;
:* Replaced the onClientResource start event with the onPlayerResourceStart event ([https://github.com/multitheftauto/mtasa-resources/commit/cca3a05adf7fc940b913453a5fad5d5f3c8e3518 cca3a05] by '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
'''parachute'''&lt;br /&gt;
:* Fixed warnings about min_mta_version ([https://github.com/multitheftauto/mtasa-resources/commit/b4119cca4665d63a3043f14c1624ce9c96700b96 b4119cc] by '''NetroX1993''')&lt;br /&gt;
&lt;br /&gt;
'''playerblips'''&lt;br /&gt;
:* Fixed that the resource &amp;quot;playercolors&amp;quot; should be activated for teams ([https://github.com/multitheftauto/mtasa-resources/commit/2cd28db5fa891f361c5af07a491532378a820b83 2cd28db] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Real-time update of settings ([https://github.com/multitheftauto/mtasa-resources/commit/9505b181fe7fc2bab53142746f73bc64a8fd984d 9505b18] by '''Nico834''')&lt;br /&gt;
:* Improved debug messages ([https://github.com/multitheftauto/mtasa-resources/commit/4084e5d369907d3ededd1b2eb19c916983680154 4084e5d] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed that when a player changed or joined teams the color of the blip was not updated ([https://github.com/multitheftauto/mtasa-resources/commit/ff80005f114a3d010624f7d54510ffde47dddb00 ff80005] by '''T-MaxWiese-T''')&lt;br /&gt;
&lt;br /&gt;
'''playercolors'''&lt;br /&gt;
:* Player nametag color should revert to team color when the resource is stopped ([https://github.com/multitheftauto/mtasa-resources/commit/d45d2d0cd963186639d76ab1cb27ef6a042cd0bd d45d2d0] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed chat messages sent twice ([https://github.com/multitheftauto/mtasa-resources/commit/0547cf72514a7dc7efc987f47903c35b310a3b22 0547cf7] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''performancebrowser'''&lt;br /&gt;
:* Fixed player names not being reinitialized on change ([https://github.com/multitheftauto/mtasa-resources/commit/3e0166dc7fa9c11c596a7958b02423b6aeff8410 3e0166d] by '''YelehaUwU''')&lt;br /&gt;
&lt;br /&gt;
'''runcode'''&lt;br /&gt;
:* Added aclrequest for loadstring function ([https://github.com/multitheftauto/mtasa-resources/commit/c40b8095f054b6e87b46e1d53d9b6ec77cf943c7 c40b809] by '''IIYAMA12 ''')&lt;br /&gt;
&lt;br /&gt;
'''scoreboard'''&lt;br /&gt;
:* Replaced drawing arrow from path to texture ([https://github.com/multitheftauto/mtasa-resources/commit/128f26952810804df6acb233ca9476853caa1286 128f269] by '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
'''speedometer'''&lt;br /&gt;
:* Display at resource start ([https://github.com/multitheftauto/mtasa-resources/commit/31a5ac4013c3633647178e695474da6632eb38b8 31a5ac4] by '''Nico834''')&lt;br /&gt;
:* Preventing pointer overflow ([https://github.com/multitheftauto/mtasa-resources/commit/8689cdc247a3fd16125524aac04eb054c398084c 8689cdc] by '''Nico834''')&lt;br /&gt;
&lt;br /&gt;
'''superman'''&lt;br /&gt;
:* Fixes and improvements ([https://github.com/multitheftauto/mtasa-resources/commit/2b3bc102225b2f1c3144cffe290175e9a2c71728 2b3bc10], [https://github.com/multitheftauto/mtasa-resources/commit/e1c06c3c2581c16a6e05401381263a47dd6ac5f0 e1c06c3], [https://github.com/multitheftauto/mtasa-resources/commit/1e4319d180be0f482d42f2f32fbf2c1e5cd440cc 1e4319d] by '''ds1-e''')&lt;br /&gt;
:* Fixed a bug where you couldn't move after death while Superman is active ([https://github.com/multitheftauto/mtasa-resources/commit/715ee57664287083f7ecb299f534bc3093f796a0 715ee57] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''votemanager'''&lt;br /&gt;
:* Fixed lint error ([https://github.com/multitheftauto/mtasa-resources/commit/c8630075317123e510645464a3bf56ebb244573b c863007] by '''Dark-Dragon''')&lt;br /&gt;
&lt;br /&gt;
'''mapfixes'''&lt;br /&gt;
:* A new resource has been added that fixes many holes and bugs in the default map ([https://github.com/multitheftauto/mtasa-resources/commit/23f6bd94370440af5ed79a47bda1ff0caf92fa8e 23f6bd9] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''gps'''&lt;br /&gt;
:* Added export functions for custom logic ([https://github.com/multitheftauto/mtasa-resources/commit/537d92d11b357cf9e795a7bb3ec87c13fa62c7bc 537d92d] by '''T-MaxWiese-T''')&lt;br /&gt;
&lt;br /&gt;
'''deathmatch'''&lt;br /&gt;
:* Improvements and update ([https://github.com/multitheftauto/mtasa-resources/commit/a01ec8a86e636ca61f25a03d4ee30bd898754cbd a01ec8a], [https://github.com/multitheftauto/mtasa-resources/commit/b94ffddfd5b230544d54e5eca8c9c5d87dc69128 b94ffdd] by '''jlillis'''&lt;br /&gt;
&lt;br /&gt;
'''race'''&lt;br /&gt;
:* Fixed automatic nextid assignment breaking ([https://github.com/multitheftauto/mtasa-resources/commit/2c695a9e793825a8cafd2ee3be490d2d8e9ad318 2c695a9] by '''lotsofs''')&lt;br /&gt;
&lt;br /&gt;
'''voice_local'''&lt;br /&gt;
:* Improvements ([https://github.com/multitheftauto/mtasa-resources/commit/53cf63d83169018e0de9f45ecb565958855d717d 53cf63d] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''Others / Uncategorized'''&lt;br /&gt;
:* Refactor of resources meta.xml ([https://github.com/multitheftauto/mtasa-resources/commit/6713b07a459739c06112ac3e608776f3f0696144 6713b07] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
== Extra information ==&lt;br /&gt;
''More detailed information available on our GitHub repositories:&lt;br /&gt;
* [https://github.com/multitheftauto/mtasa-blue MTA:SA Blue]&lt;br /&gt;
* [https://github.com/multitheftauto/mtasa-resources MTA:SA Official Resources]&lt;br /&gt;
&lt;br /&gt;
[[Category:Changelog]]&lt;br /&gt;
[[Category:Incomplete]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Changes_in_1.7&amp;diff=82490</id>
		<title>Changes in 1.7</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Changes_in_1.7&amp;diff=82490"/>
		<updated>2025-10-01T18:37:38Z</updated>

		<summary type="html">&lt;p&gt;O22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pageclass class=&amp;quot;#4286f4&amp;quot; subcaption=&amp;quot;Next release&amp;quot;&amp;gt;&amp;lt;/pageclass&amp;gt;&lt;br /&gt;
{{Changelogs}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
'''This changelog is partial and needs updating. It is updated progressively to keep the page always up to date.'''&lt;br /&gt;
&lt;br /&gt;
* GitHub commit log: https://github.com/multitheftauto/mtasa-blue/compare/1.6.0...master&lt;br /&gt;
* GitHub milestone: https://github.com/multitheftauto/mtasa-blue/milestone/10&lt;br /&gt;
* Resources GitHub commit log: https://github.com/multitheftauto/mtasa-resources/compare/1.6.0...master&lt;br /&gt;
* Release announcement on forums: TBA&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Important notice to Windows 7 and 8.x users ==&lt;br /&gt;
If you are using Windows 7 or 8.x, please upgrade your system to Windows 10 or 11 as soon as possible. Windows 7 and 8.x are no longer supported by Microsoft (since January 2020 and January 2023 respectively) and most software (including Google Chrome and Steam) which means you are running an insecure system. Multi Theft Auto will also eventually drop Windows 7 and 8.x support sometime in the future, so it would be a good idea to start looking at upgrade options right now. Thank you!&lt;br /&gt;
&lt;br /&gt;
'''CEF in MTA is no longer updated for Windows 7 or 8.x. This is because CEF no longer supports those versions of Windows. This is bad for security, so please upgrade to Windows 10+ and MTA to 1.6+'''&lt;br /&gt;
&lt;br /&gt;
== 4 Deprecations ==&lt;br /&gt;
These changes will take effect in this version and scripts may need to be manually upgraded when updating:&lt;br /&gt;
* Changed [[base64Encode]] and [[base64Decode]] to throw a warning on use, please upgrade to [[encodeString]] and [[decodeString]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/30a83b0af164fb6920a2a60e089d08a6f5622f7d 30a83b0] by '''Nico834''')&lt;br /&gt;
* Changed [[setHelicopterRotorSpeed]] and [[getHelicopterRotorSpeed]] to throw a warning on use, please upgrade to [[setVehicleRotorSpeed]] and [[getVehicleRotorSpeed]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/82000c34830b51ace2d14e39f3b487feb1aac1da 82000c3] by '''FileEX''')&lt;br /&gt;
* Changes [[setPedOnFire]] and [[isPedOnFire]] to throw a warning on use, please upgrade to [[setElementOnFire]] and [[isElementOnFire]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/7ad96e2e78fe41f8924d3f105b1683f7363c6fcb 7ad96e2] by '''FileEX''')&lt;br /&gt;
* Changes [[removeAllGameBuildings]] and [[restoreAllGameBuildings]] to throw a warning on use, please upgrade to [[removeGameWorld]] and [[restoreGameWorld]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/d7adae68791ce237704acc06bf794b5fbda96f95#diff-93c130ddb85da32121129a437ac5b28ba16fa17f6e3506e4cddfb7bc3d8eb9fbR180 d7adae6] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
== Notable Changes ==&lt;br /&gt;
* Support for Discord Rich Presence ([https://github.com/multitheftauto/mtasa-blue/commit/fdaa3aca3e233c7aba69d0fd5f85e78288a4401a fdaa3ac], [https://github.com/multitheftauto/mtasa-blue/commit/ef26810df4542283fee8edcc165bc9be22f2ca98 ef26810], [https://github.com/multitheftauto/mtasa-blue/commit/acfbd40df1ff1432ea1d6663c005d43fce22899c acfbd40] by '''znjvder''', '''tederis''', '''patrikjuvonen''' and '''Deihim007''')&lt;br /&gt;
* Added support for [[Building]]'s ([https://github.com/multitheftauto/mtasa-blue/commit/81242edb9295efbf4bf8b198b12d577a0877aec2 81242ed], [https://github.com/multitheftauto/mtasa-blue/commit/eb6b18a5d49a7f0f34bdbf42b15f933e42876cf8 eb6b18a] by '''TheNormalnij''')&lt;br /&gt;
* Added the ability to generate a nickname ([https://github.com/multitheftauto/mtasa-blue/commit/12c50eee66898771244074a3a44818dab36a7ac3 12c50ee] by '''Nico834''')&lt;br /&gt;
* Added ''meta.xml'' loading files pattern ([https://github.com/multitheftauto/mtasa-blue/commit/90e2737d0a5eb12f34d2fd3c1f270bedf34cda35 90e2737] by '''W3lac3''')&lt;br /&gt;
* Added world properties (time cycle and weather related features) with new functions: [[setWorldProperty]], [[getWorldProperty]], [[resetWorldProperty]] ([https://github.com/multitheftauto/mtasa-blue/commit/a75f1e9a03e74f7c9d4ae9e5aef8433af84d5ea2 a75f1e9] by '''Samr46''')&lt;br /&gt;
* Added file-system related functions (list files and folders in directories) ([https://github.com/multitheftauto/mtasa-blue/commit/74781c6295b5b6dc81cd95d4cfab7900d88d7524 74781c6] by '''Tracer''')&lt;br /&gt;
* Added the ability to change the color and size of the target arrow in the checkpoint marker ([https://github.com/multitheftauto/mtasa-blue/commit/071378ec4326408a9520c79c96befca995d097f6 071378e] by '''FileEX''')&lt;br /&gt;
* Added the ability to change the alpha of checkpoint and arrow marker ([https://github.com/multitheftauto/mtasa-blue/commit/7988852cf3af9e78f662d76544dc00db408b5c87 7988852] by '''FileEX''')&lt;br /&gt;
* Fixed weapon issues when using the jetpack ([https://github.com/multitheftauto/mtasa-blue/commit/180fbc0b5fdba95450e7a519f78f7588849349bf 180fbc0], [https://github.com/multitheftauto/mtasa-blue/commit/a68c2c4232c28c6ba5595a814b89be976c4fa9c3 a68c2c4] by '''FileEX''')&lt;br /&gt;
* Fixed vehicle windows not being visible from the inside when the lights are on ([https://github.com/multitheftauto/mtasa-blue/commit/934c1d6cfef19902cc391c896bbe2f80ba5a4f70 934c1d6] by '''FileEX''')&lt;br /&gt;
* Fixed old [[setElementModel]] memory leak ([https://github.com/multitheftauto/mtasa-blue/commit/4e7afa2586c6992a75ac5312378c1096d87148ae 4e7afa2] by '''tederis''')&lt;br /&gt;
* Enabled WebGL (GPU Acceleration) in CEF ([https://github.com/multitheftauto/mtasa-blue/commit/026301168d2cd8239650a4f0aa33ff0be6d752dc 0263011] by '''TFP-dev''')&lt;br /&gt;
* Refactored '''Quick Connect button''' ([https://github.com/multitheftauto/mtasa-blue/commit/5b59e2236b30ec696ac1c05f8bb4e509ec06c0f7 5b59e22] by '''Fernando-A-Rocha''')&lt;br /&gt;
* Added setting to save camera photos in documents folder ([https://github.com/multitheftauto/mtasa-blue/commit/3419b9b7a20e3d1893d673a2a07ee1a0efda1bd5 3419b9b] by '''ffsPLASMA''')&lt;br /&gt;
* Added HUD customization ([https://github.com/multitheftauto/mtasa-blue/commit/5ea0e0fb23b21750207b23191db92562cf9b822c 5ea0e0f] by '''FileEX''')&lt;br /&gt;
* Added sync peds/players animations for new players ([https://github.com/multitheftauto/mtasa-blue/commit/b32eafc70816ece8ad995d98d380d8f6e9950475 b32eafc] by '''FileEX''')&lt;br /&gt;
* From now on, animation progress is preserved even after a restream; the animation will not start from the beginning. ([https://github.com/multitheftauto/mtasa-blue/commit/ad0d6bfdd7bf56b78f7c8c1b9a60597ef9b6dca3 ad0d6bf] by '''FileEX''')&lt;br /&gt;
* Added ability to replace CJ clothing models ([https://github.com/multitheftauto/mtasa-blue/commit/6b823653ecf68e181de91392d5d8931488f90f20 6b82365] by '''W3lac3''')&lt;br /&gt;
* New MTA splash window ([https://github.com/multitheftauto/mtasa-blue/commit/215173eeb1e015c0381ce94f95429c36ab1b4430 215173e] by '''botder''')&lt;br /&gt;
* Fixed multiple damage instances in certain areas during explosions ([https://github.com/multitheftauto/mtasa-blue/commit/3bce4080ec66a993096f9e7fb039cc7d5d0d8175 3bce408] by '''FileEX''')&lt;br /&gt;
* From now on, before disconnecting from the server using the main menu, you will be asked to confirm if you really want to do it ([https://github.com/multitheftauto/mtasa-blue/commit/6aa763fb79701c57402fccca9ae6c0f396fb8f3c 6aa763f] by '''tonievalue''')&lt;br /&gt;
&lt;br /&gt;
== Statistics ==&lt;br /&gt;
&amp;lt;section show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
These are some statistics since the [[Changes in 1.6.0|previous release]].&lt;br /&gt;
* This is the '''28&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt;''' 1.x.x release&lt;br /&gt;
* '''{{date difference|2023|06|16}}''' days&lt;br /&gt;
* '''39''' new functions&lt;br /&gt;
* '''12''' new events&lt;br /&gt;
* '''4''' deprecations&lt;br /&gt;
* '''50+''' bug fixes and changes&lt;br /&gt;
* '''734''' commits ([https://github.com/multitheftauto/mtasa-blue/compare/1.6.0...master mtasa-blue])  ([https://github.com/multitheftauto/mtasa-resources/compare/1.6.0...master mtasa-resources])&lt;br /&gt;
* '''78''' new open GitHub issues ([https://github.com/multitheftauto/mtasa-blue/issues?q=is%3Aopen+is%3Aissue+created%3A2023-06-16..2024-10-01 see list])&lt;br /&gt;
* '''29''' resolved GitHub issues ([https://github.com/multitheftauto/mtasa-blue/issues?q=is%3Aclosed+is%3Aissue+milestone%3A%221.6.1%22 see list])&lt;br /&gt;
* '''28''' closed GitHub issues ([https://github.com/multitheftauto/mtasa-blue/issues?q=is%3Aclosed+is%3Aissue+closed%3A2023-06-16..2024-10-01+no%3Amilestone+-label%3Ainvalid see list])&lt;br /&gt;
* '''30''' new open GitHub pull requests ([https://github.com/multitheftauto/mtasa-blue/pulls?q=is%3Aopen+is%3Apr+created%3A2023-06-16..2024-10-01 see list])&lt;br /&gt;
* '''81''' merged GitHub pull requests ([https://github.com/multitheftauto/mtasa-blue/pulls?q=is%3Apr+is%3Amerged+milestone%3A%221.6.1%22 see list])&lt;br /&gt;
* '''26''' closed GitHub pull requests ([https://github.com/multitheftauto/mtasa-blue/pulls?q=is%3Apr+is%3Aunmerged+closed%3A2023-06-16..2024-10-01 see list])&lt;br /&gt;
* '''2+''' contributors of which '''0+''' are new ([https://github.com/multitheftauto/mtasa-blue/graphs/contributors?from=2023-06-16&amp;amp;to=2024-10-01&amp;amp;type=c see list])&lt;br /&gt;
* '''100+''' total contributors ([https://github.com/multitheftauto/mtasa-blue/graphs/contributors see list])&lt;br /&gt;
* '''3''' vendor updates&lt;br /&gt;
&lt;br /&gt;
&amp;lt;sub&amp;gt;'''Note:''' Last update to these statistics was made {{date difference human friendly|2024|04|04}}.&amp;lt;/sub&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 86 New Features ==&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Added new ''special world properties'' to [[setWorldSpecialPropertyEnabled]] function&lt;br /&gt;
:* Added '''fireballdestruct''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
:* Added '''roadsignstext''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/4a746eca1b5a546a19344a76573a5108ff9d79e6 4a746ec] by '''FileEX''')&lt;br /&gt;
:* Added '''extendedwatercannons''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/13a53959f52c978b416c00b428938f82818b2312 13a5395] by '''FileEX''')&lt;br /&gt;
:* Added '''tunnelweatherblend''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/9a0790ec7fab1efb7817eead371744fcd47da5c5 9a0790e] by ''''gta191977649''')&lt;br /&gt;
:* Added '''ignorefirestate''' special world proeprty ([https://github.com/multitheftauto/mtasa-blue/commit/46f3580fbd8ea5cf48c14cf8fee0bd6eb6691854 46f3580] by '''FileEX''')&lt;br /&gt;
:* Added '''flyingcomponents''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/5ee641436821ae8a59484ac721a4ec929d5cc152 5ee6414] by '''FileEX''')&lt;br /&gt;
:* Added '''vehicleburnexplosions''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/88d303c0bbcc0ed4fee958df2d16ace562ce0108 88d303c] by '''samr46''')&lt;br /&gt;
:* Added '''vehicle_engine_autostart''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/8b3f3440f8bc485f90d466a3fe6f3e5819de9c2f 8b3f344] by '''samr46''')&lt;br /&gt;
&lt;br /&gt;
* Added new ''glitches'' to [[setGlitchEnabled]] function&lt;br /&gt;
:* Added '''vehicle_rapid_stop''' glitch ([https://github.com/multitheftauto/mtasa-blue/commit/3f5801e65d8a51d112b686485d4a2491151c3311 3f5801e], [https://github.com/multitheftauto/mtasa-blue/commit/ef792d6af62443f97014621334c7188dddb4ef29 ef792d6] by '''samr46''' and '''Merlin''')&lt;br /&gt;
&lt;br /&gt;
* New '''file''' functions&lt;br /&gt;
:* Added [[fileGetContents]] ([https://github.com/multitheftauto/mtasa-blue/commit/22930d854ce67d84a4a3b65a61b98a9ffd3f9e38 22930d8] by '''botder''')&lt;br /&gt;
:* Added [[fileGetHash]] ([https://github.com/multitheftauto/mtasa-blue/commit/94f944f508b99b5d7e84fbb0be07a483e10517a9 94f944f] by '''botder''')&lt;br /&gt;
&lt;br /&gt;
* New and updated [[object]] functions&lt;br /&gt;
:* '''[Updated]''' Added [[isObjectMoving]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/7c939adb892c08836462a78cd9b987884cdb49ee 7c939ad] by '''FileEX''')&lt;br /&gt;
:* '''[Updated]''' Added [[breakObject]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/aa1a7853f46fc796a94f38b7df2a5293fb941ba2 aa1a785] by '''FileEX''')&lt;br /&gt;
:* '''[Updated]''' Added [[respawnObject]] and [[toggleObjectRespawn]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/9d65bb673c4df16def27e97a4af74d3b0c7eedc9 9d65bb6] by '''FileEX''')&lt;br /&gt;
:* '''[New]''' Added [[isObjectRespawnable]] ([https://github.com/multitheftauto/mtasa-blue/commit/9d65bb673c4df16def27e97a4af74d3b0c7eedc9 9d65bb6] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New '''file-path''' functions&lt;br /&gt;
:* Added [[pathListDir]], [[pathIsFile]] and [[pathIsDirectory]] ([https://github.com/multitheftauto/mtasa-blue/commit/74781c6295b5b6dc81cd95d4cfab7900d88d7524 74781c6] by '''Tracer''')&lt;br /&gt;
&lt;br /&gt;
* New [[marker]] functions&lt;br /&gt;
:* Added [[setMarkerTargetArrowProperties]] and [[getMarkerTargetArrowProperties]] ([https://github.com/multitheftauto/mtasa-blue/commit/071378ec4326408a9520c79c96befca995d097f6 071378e] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[timer]] functions&lt;br /&gt;
:* Added [[setTimerPaused]] and [[isTimerPaused]] ([https://github.com/multitheftauto/mtasa-blue/commit/69aa420f21fde3ac56e3d3bbc62ef0f060295c0a 69aa420] by '''jvstns''')&lt;br /&gt;
&lt;br /&gt;
* New and updated '''world''' functions&lt;br /&gt;
:* '''[New]''' Added [[resetWorldProperties]] ([https://github.com/multitheftauto/mtasa-blue/commit/6df889e78328b80f8e4bdc02f8761472cf87c54c 6df889e] by '''FileEX''')&lt;br /&gt;
:* '''[Updated]''' Added [[isWorldSpecialPropertyEnabled]] and [[setWorldSpecialPropertyEnabled]] also to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
&lt;br /&gt;
* New and updated [[vehicle]] functions&lt;br /&gt;
:* '''[New]''' Added [[spawnVehicleFlyingComponent]] ([https://github.com/multitheftauto/mtasa-blue/commit/9f54cfcd7a584f413db731052ebed921acfc71ea 9f54cfc] by '''FileEX''')&lt;br /&gt;
:* '''[Upated]''' Added [[setVehicleNitroActivated]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/e9e5819c394987de2b9a5d581c4df9fd47057d9d#diff-49b4b89bf4463f38e70a325131b4da66457d783b1401dde0ffbad723624f8612R130 e9e5819] by '''Proxy-99''')&lt;br /&gt;
:* '''[Updated]''' Added [[addVehicleSirens]] and [[removeVehicleSirens]] to client-side ([https://github.com/multitheftauto/mtasa-blue/commit/682cdca3c37248a9e725b461ba322db413653f25 682cdca] by '''Proxy-99''')&lt;br /&gt;
&lt;br /&gt;
* Updated [[player]] functions&lt;br /&gt;
:* Added [[getPlayerScriptDebugLevel]] to client-side ([https://github.com/multitheftauto/mtasa-blue/commit/8403da54ecfd20d6b9740fb79d90ac936d316112 8403da5] by '''Nico834''')&lt;br /&gt;
&lt;br /&gt;
* Updated [[ped]] functions&lt;br /&gt;
:* Added [[isPedReloadingWeapon]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/e71f4828b46bb69b9622a11d0f700a79f986ee9b e71f482] by '''Nico834''')&lt;br /&gt;
&lt;br /&gt;
* New [[element]] functions&lt;br /&gt;
:* Added [[setElementOnFire]] and [[isElementOnFire]] ([https://github.com/multitheftauto/mtasa-blue/commit/7ad96e2e78fe41f8924d3f105b1683f7363c6fcb 7ad96e2] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
=== Client ===&lt;br /&gt;
====Functions====&lt;br /&gt;
* New '''engine''' functions &lt;br /&gt;
:* Added '''streaming''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/7ffc31243c1dbca8ed5e7b0f8c05da239aa918bd 7ffc312], [https://github.com/multitheftauto/mtasa-blue/commit/6c86ebbf0801c45d5e0bcbb9d9f2e8fd55525b15 6c86ebb], [https://github.com/multitheftauto/mtasa-blue/commit/3c44dc5dcde0a5f98ff470ce9bc64443d47de807 3c44dc5] by '''Pirulax''')&lt;br /&gt;
::* [[engineStreamingSetMemorySize]]&lt;br /&gt;
::* [[engineStreamingGetMemorySize]]&lt;br /&gt;
::* [[engineStreamingRestoreMemorySize]]&lt;br /&gt;
::* [[engineStreamingSetBufferSize]]&lt;br /&gt;
::* [[engineStreamingGetBufferSize]]&lt;br /&gt;
::* [[engineStreamingRestoreBufferSize]]&lt;br /&gt;
::* [[engineStreamingSetModelCacheLimits]]&lt;br /&gt;
:* Added '''model-streaming''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/008eaa7e36ae74bbab7c5bc9861d8f0f890eb945 008eaa7] by '''TheNormalnij''')&lt;br /&gt;
::* [[engineStreamingRequestModel]]&lt;br /&gt;
::* [[engineStreamingReleaseModel]]&lt;br /&gt;
::* [[engineStreamingGetModelLoadState]]&lt;br /&gt;
:* Added new '''TXD''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/3e9a3735a8022a0acabaa3041c8a3f8d91e547b7 3e9a373] by '''TheNormalnij''')&lt;br /&gt;
::* [[engineSetModelTXDID]]&lt;br /&gt;
::* [[engineResetModelTXDID]]&lt;br /&gt;
:* Added '''pools''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/bdf12215d1f6e73d87f5cb0881049aa224b46b65 bdf1221] by '''TheNormalnij''')&lt;br /&gt;
::* [[engineGetPoolCapacity]]&lt;br /&gt;
::* [[engineSetPoolCapacity]]&lt;br /&gt;
::* [[engineGetPoolDefaultCapacity]]&lt;br /&gt;
::* [[engineGetPoolUsedCapacity]]&lt;br /&gt;
:* Added [[enginePreloadWorldArea]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b72fb9d3c9e6813cdf56e53d1a1e72958abd3cf 5b72fb9] by '''MegadreamsBE''')&lt;br /&gt;
&lt;br /&gt;
* New functions for '''Discord RPC''' ([https://github.com/multitheftauto/mtasa-blue/commit/fdaa3aca3e233c7aba69d0fd5f85e78288a4401a fdaa3ac], [https://github.com/multitheftauto/mtasa-blue/commit/ef26810df4542283fee8edcc165bc9be22f2ca98 ef26810], [https://github.com/multitheftauto/mtasa-blue/commit/acfbd40df1ff1432ea1d6663c005d43fce22899c acfbd40] by '''znjvder''', '''tederis''', '''patrikjuvonen''' and '''Deihim007''')&lt;br /&gt;
:* [[setDiscordApplicationID]]&lt;br /&gt;
:* [[setDiscordRichPresenceDetails]]&lt;br /&gt;
:* [[setDiscordRichPresenceState]]&lt;br /&gt;
:* [[setDiscordRichPresenceAsset]]&lt;br /&gt;
:* [[setDiscordRichPresenceSmallAsset]]&lt;br /&gt;
:* [[setDiscordRichPresenceButton]]&lt;br /&gt;
:* [[resetDiscordRichPresenceData]]&lt;br /&gt;
:* [[isDiscordRichPresenceConnected]]&lt;br /&gt;
:* [[setDiscordRichPresencePartySize]]&lt;br /&gt;
:* [[setDiscordRichPresenceStartTime]]&lt;br /&gt;
:* [[setDiscordRichPresenceEndTime]]&lt;br /&gt;
:* [[getDiscordRichPresenceUserID]]&lt;br /&gt;
&lt;br /&gt;
* New [[building]] functions ([https://github.com/multitheftauto/mtasa-blue/commit/81242edb9295efbf4bf8b198b12d577a0877aec2 81242ed], [https://github.com/multitheftauto/mtasa-blue/commit/eb6b18a5d49a7f0f34bdbf42b15f933e42876cf8 eb6b18a] by '''TheNormalnij''')&lt;br /&gt;
:* [[createBuilding]]&lt;br /&gt;
:* '''[Deprecated]''' [[removeAllGameBuildings]] &lt;br /&gt;
:* '''[Deprecated]''' [[restoreAllGameBuildings]] &lt;br /&gt;
&lt;br /&gt;
* New '''world''' functions&lt;br /&gt;
:* Added [[processLineAgainstMesh]] ([https://github.com/multitheftauto/mtasa-blue/commit/acb80a3945d0d5e0230b8a41394a3fe3e70b8d0b acb80a3] by '''Pirulax''')&lt;br /&gt;
:* Added '''volumetric shadows''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/6c93a49c4c2381f4ce84df195d98d36372a47d37 6c93a49] by '''Proxy-99''')&lt;br /&gt;
:::* [[setVolumetricShadowsEnabled]]&lt;br /&gt;
:::* [[isVolumetricShadowsEnabled]]&lt;br /&gt;
:::* [[resetVolumetricShadows]]&lt;br /&gt;
:* Added [[testSphereAgainstWorld]] ([https://github.com/multitheftauto/mtasa-blue/commit/aa90aa5f31e59df455af33b49e3eee5e4f107bfd aa90aa5] by '''FileEX''')&lt;br /&gt;
:* Added [[removeGameWorld]] and [[restoreGameWorld]] ([https://github.com/multitheftauto/mtasa-blue/commit/d7adae68791ce237704acc06bf794b5fbda96f95 d7adae6] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
* New '''drawing''' functions&lt;br /&gt;
:* Added [[dxDrawModel3D]] ([https://github.com/multitheftauto/mtasa-blue/commit/f886a359dd4a680c080da7f132db0527116b5d7a f886a35], [https://github.com/multitheftauto/mtasa-blue/commit/04ef14bbf2182b356155f28d4ed972b0f293632f 04ef14b] by '''CrosRoad95''' and '''tederis''')&lt;br /&gt;
&lt;br /&gt;
* New '''effects/fx''' functions&lt;br /&gt;
:* Added [[fxCreateParticle]] ([https://github.com/multitheftauto/mtasa-blue/commit/8f2730d2e260c3319cb51101c6aedb45e22bbd89 8f2730d] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[ped]] functions&lt;br /&gt;
:* Added [[resetPedVoice]] ([https://github.com/multitheftauto/mtasa-blue/commit/18986a4542db5eb72f6d0dfffb80cb8bb6eb1442 18986a4] by '''Tracer''')&lt;br /&gt;
:* Added new animation features ([https://github.com/multitheftauto/mtasa-blue/commit/aa0591c6f7b529a27b4ed8667e1dc70e68bd9386 aa0591c] by '''Tracer''')&lt;br /&gt;
::* [[getPedAnimationProgress]]&lt;br /&gt;
::* [[getPedAnimationSpeed]]&lt;br /&gt;
::* [[getPedAnimationLength]]&lt;br /&gt;
:* Added [[killPedTask]] ([https://github.com/multitheftauto/mtasa-blue/commit/e4a502bc7619dc3913c70d169f6105ecfb0633ff e4a502b] by '''Proxy-99''')&lt;br /&gt;
:* Added ped shadow features ([https://github.com/multitheftauto/mtasa-blue/commit/26d18288730fd3a7a854152da60c9acd18ab6c6f 26d1828] by '''Proxy-99''')&lt;br /&gt;
::* [[setDynamicPedShadowsEnabled]]&lt;br /&gt;
::* [[isDynamicPedShadowsEnabled]]&lt;br /&gt;
::* [[resetDynamicPedShadows]]&lt;br /&gt;
:* Added [[playPedVoiceLine]] ([https://github.com/multitheftauto/mtasa-blue/commit/7067ac1a73bb0b8c5a1f37794504a00e9703332e 7067ac1] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[player]] functions&lt;br /&gt;
:* Added [[isPlayerCrosshairVisible]] ([https://github.com/multitheftauto/mtasa-blue/commit/03e851a2f5ff2d917ba3c7a1c7577fdb5b8d2a6f 03e851a], [https://github.com/multitheftauto/mtasa-blue/commit/5f21c32fb0725140d6d03476e08de330d429b55a 5f21c32] by '''FileEX''')&lt;br /&gt;
:* New '''HUD''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/5ea0e0fb23b21750207b23191db92562cf9b822c 5ea0e0f] by '''FileEX''')&lt;br /&gt;
::* [[setPlayerHudComponentProperty]]&lt;br /&gt;
::* [[getPlayerHudComponentProperty]]&lt;br /&gt;
::* [[resetPlayerHudComponentProperty]]&lt;br /&gt;
&lt;br /&gt;
* New [[vehicle]] functions&lt;br /&gt;
:* Added [[setVehicleWheelsRotation]] ([https://github.com/multitheftauto/mtasa-blue/commit/aeb113d269fffee7d9ac435ce87b51e905e9efa6 aeb113d] by '''gta191977649''')&lt;br /&gt;
:* Added [[getVehicleEntryPoints]] ([https://github.com/multitheftauto/mtasa-blue/commit/bf588c163cd5bc134771e3842a6585212f06307f bf588c1] by '''MegadreamsBE''')&lt;br /&gt;
:* Added [[setVehicleSmokeTrailEnabled]] and [[isVehicleSmokeTrailEnabled]] for planes ([https://github.com/multitheftauto/mtasa-blue/commit/a5dfc5223358127299511b618ab29da08ff23030 a5dfc52] by '''Proxy-99''')&lt;br /&gt;
:* Added [[setVehicleRotorState]] and [[getVehicleRotorState]] for planes and helicopters ([https://github.com/multitheftauto/mtasa-blue/commit/c7644f2773c37c4e3d40b00807f2e962daca83b6#diff-9a175949acc865a4deea435d73c2082716ab68c6811ef1a657783f3d420dc00fR165 c7644f2] by '''FileEX''')&lt;br /&gt;
:* Added '''vehicle audio''' functions: ([https://github.com/multitheftauto/mtasa-blue/commit/53ee579670ef4ecec28f44627ff99321bba48cbd 53ee579] by '''TheNormalnij''')&lt;br /&gt;
::* [[setVehicleModelAudioSetting]]&lt;br /&gt;
::* [[getVehicleModelAudioSettings]]&lt;br /&gt;
::* [[resetVehicleModelAudioSettings]]&lt;br /&gt;
::* [[setVehicleAudioSetting]]&lt;br /&gt;
::* [[getVehicleAudioSettings]]&lt;br /&gt;
::* [[resetVehicleAudioSettings]]&lt;br /&gt;
&lt;br /&gt;
* New '''camera''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/40ec398bb15e775d1552286eb86fe7aa0dffefa4 40ec398], [https://github.com/multitheftauto/mtasa-blue/commit/d9c2793de2a9f0782ec59cf0ef9907abf935d421 d9c2793] by '''Tracer''')&lt;br /&gt;
:* [[shakeCamera]]&lt;br /&gt;
:* [[resetShakeCamera]]&lt;br /&gt;
&lt;br /&gt;
* New '''game-time''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/b8b7ce555e2f0f0dd74425ac7c91786374513bee b8b7ce5] by '''Proxy-99''')&lt;br /&gt;
:* [[setTimeFrozen]]&lt;br /&gt;
:* [[isTimeFrozen]]&lt;br /&gt;
:* [[resetTimeFrozen]]&lt;br /&gt;
&lt;br /&gt;
* New [[element]] functions&lt;br /&gt;
:* Added [[setElementBoneQuaternion]] and [[getElementBoneQuaternion]] ([https://github.com/multitheftauto/mtasa-blue/commit/10098b0984bf5d5955ea1764e28f616c8a60714f 10098b0] by '''gownosatana''')&lt;br /&gt;
:* Added [[setElementLighting]] ([https://github.com/multitheftauto/mtasa-blue/commit/90fd98a6381991cfa926a9a65b9b934d0343e2b1 90fd98a] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[browser]] functions&lt;br /&gt;
:* Added [[isBrowserGPUEnabled]] ([https://github.com/multitheftauto/mtasa-blue/commit/bfdfdb5f44726df85626e6e3e06c2a319c0c8962 bfdfdb5] by '''Lpsd''')&lt;br /&gt;
&lt;br /&gt;
* New '''weapons''' functions&lt;br /&gt;
:* Added [[setWeaponRenderEnabled]] &amp;amp; [[isWeaponRenderEnabled]] ([https://github.com/multitheftauto/mtasa-blue/commit/efed59b7dc7b076219f1c8a868ef8aa028582127 efed59b] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
====Events====&lt;br /&gt;
* Added [[onClientCoreCommand]] ([https://github.com/multitheftauto/mtasa-blue/commit/b2cf02943924c4972d2a695cdbfd7c9873fc3cbb b2cf029] by '''Pieter-Dewachter''')&lt;br /&gt;
&lt;br /&gt;
* Added [[onClientBrowserConsoleMessage]] ([https://github.com/multitheftauto/mtasa-blue/pull/3676 #3676], [https://github.com/multitheftauto/mtasa-blue/commit/d296a653c5ce2ecfd4f7150d74391b703b773baf d296a65] by '''gownosatana''' and '''Tracer''')&lt;br /&gt;
&lt;br /&gt;
=== Server ===&lt;br /&gt;
====Functions====&lt;br /&gt;
* New [[ACL]] functions&lt;br /&gt;
:* Added [[aclObjectGetGroups]] ([https://github.com/multitheftauto/mtasa-blue/commit/cf46bd8487bdb2d0cafdab1f43936357f670fe10 cf46bd8] by '''Tracer''')&lt;br /&gt;
&lt;br /&gt;
* New '''acl-account''' functions&lt;br /&gt;
:* Added [[getAccountType]] ([https://github.com/multitheftauto/mtasa-blue/commit/545f54b6ae0bfc721abba12402ad3787ed9ae811 545f54b] by '''Tracer''')&lt;br /&gt;
:* Added [[setAccountSerial]] ([https://github.com/multitheftauto/mtasa-blue/commit/a0c2e410f225ebd245a7c5b8031812cf94360097 a0c2e41] by '''camargo2019''')&lt;br /&gt;
&lt;br /&gt;
* New [[vehicle]] functions&lt;br /&gt;
:* Added new vehicle respawn functions ([https://github.com/multitheftauto/mtasa-blue/commit/1ff7137fd4477626d7ef4abfb1c696872cdf0eab 1ff7137], [https://github.com/multitheftauto/mtasa-blue/commit/d93287de761e568400b3b555a277e4ead6546ca3 d93287d] by '''Tracer''')&lt;br /&gt;
::* [[isVehicleRespawnable]]&lt;br /&gt;
::* [[getVehicleRespawnDelay]]&lt;br /&gt;
::* [[getVehicleIdleRespawnDelay]]&lt;br /&gt;
&lt;br /&gt;
* Added [[createBuilding]] to server-side also ([https://github.com/multitheftauto/mtasa-blue/commit/6e221298f4998c576ebf5a783cd0761b89117a7a 6e22129] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
* Security improvements for element-data system ([https://github.com/multitheftauto/mtasa-blue/commit/750d09adb9fd35f4c1b7786966b7ca292e35c200 750d09a] by '''TheNormalnij''')&lt;br /&gt;
:* Added [[onPlayerChangesProtectedData]] event&lt;br /&gt;
:* Added '''elementdata_whitelisted''' tag to the '''mtaserver.conf'''&lt;br /&gt;
:* Added '''clientChangesPolicy''' argument to the [[setElementData]].&lt;br /&gt;
&lt;br /&gt;
* Added new [[Server_mtaserver.conf|mta_server.conf]] tags:&lt;br /&gt;
&amp;lt;!--:* Added object specific contact radius and limit contact check. This can be set in the [[server_mtaserver.conf#object_contact_sync_radius|mtaserver.conf]]([https://github.com/multitheftauto/mtasa-blue/commit/6085796cafd1008ed4a74eae614d651c6c734741 6085796] by '''MegadreamsBE''')--&amp;gt;&lt;br /&gt;
:* Added [[Server_mtaserver.conf#vehicle_contact_sync_radius#vehicle_contact_sync_radius|vehicle_contact_sync_radius]] tag ([https://github.com/multitheftauto/mtasa-blue/commit/e3338c2fbbdb500c4ce28dc0677ceadef1f1ca4c e3338c2] by '''MegadreamsBE''')&lt;br /&gt;
:* Added [[Server_mtaserver.conf#vehicle_contact_sync_radius#check_duplicate_serials|check_duplicate_serials]] tag ([https://github.com/multitheftauto/mtasa-blue/commit/e094942b75117a49cae8c35d6508f37d0cf511fe e094942] by '''Nico834''')&lt;br /&gt;
:* Added [[Server_mtaserver.conf#vehicle_contact_sync_radius#elementdata_whitelisted|elementdata_whitelisted]] tag [https://github.com/multitheftauto/mtasa-blue/commit/750d09adb9fd35f4c1b7786966b7ca292e35c200 750d09a] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
====Events====&lt;br /&gt;
* Added [[onExplosion]] event ([https://github.com/multitheftauto/mtasa-blue/commit/9edffc4997579583407e8c2910264b344cf626a3 9edffc4] by '''botder''')&lt;br /&gt;
* Added [[onPlayerProjectileCreation]] and [[onPlayerDetonateSatchels]] events ([https://github.com/multitheftauto/mtasa-blue/commit/bc404021f66228fb00f1f136a606425da6075daa bc40402] by '''Zangomangu''')&lt;br /&gt;
* Added [[onPlayerTriggerEventThreshold]] event ([https://github.com/multitheftauto/mtasa-blue/commit/eae47fe2f432d9053c425fd515ea27f963c254ec eae47fe] by '''Lpsd''')&lt;br /&gt;
* Added [[onResourceStateChange]] ([https://github.com/multitheftauto/mtasa-blue/commit/cfe9cd9d0006580e7e70dc9e93672e3d1d3b9836 cfe9cd9] by '''Tracer''')&lt;br /&gt;
* Added [[onPlayerTeamChange]] ([https://github.com/multitheftauto/mtasa-blue/commit/c4e18c618db299ea05f5395c798f2a7d6515f5ea c4e18c6] by '''esmail9900''')&lt;br /&gt;
* Added [[onAccountCreate]] and [[onAccountRemove]] ([https://github.com/multitheftauto/mtasa-blue/commit/545f54b6ae0bfc721abba12402ad3787ed9ae811 545f54b] by '''Tracer''')&lt;br /&gt;
* Added [[onPlayerTriggerInvalidEvent]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b4122d35f725e4d258b408253c93e7cbd2ec783 5b4122d] by '''Lpsd''')&lt;br /&gt;
* Added [[onPlayerChangesWorldSpecialProperty]] event ([https://github.com/multitheftauto/mtasa-blue/commit/bbf511d4c5a94fc42d4ead201446fcef8ae430ec bbf511d] by '''Nico834''')&lt;br /&gt;
* Added [[onPlayerChangesProtectedData]] event ([https://github.com/multitheftauto/mtasa-blue/commit/750d09adb9fd35f4c1b7786966b7ca292e35c200 750d09a] by '''TheNormalnij''')&lt;br /&gt;
* Added [[onShutdown]] ([https://github.com/multitheftauto/mtasa-blue/commit/aa20c7d279ac92f1f98c54e79fda7fe00de64e50 aa20c7d] by '''FileEX''')&lt;br /&gt;
* Added [[onPedWeaponReload]] and [[onPlayerWeaponReload]] ([https://github.com/multitheftauto/mtasa-blue/commit/e71f4828b46bb69b9622a11d0f700a79f986ee9b e71f482] by '''Nico834''')&lt;br /&gt;
* Added [[onPlayerTeleport]] ([https://github.com/multitheftauto/mtasa-blue/commit/4000ea4edb37d2d2caeb60a5977f7a38c8a22f06 a38e6ac] by '''imfelipedev''')&lt;br /&gt;
* Added [[onAccountNameChange]] ([https://github.com/multitheftauto/mtasa-blue/commit/078d46b13164c940f3a713039e1a1be6d52c6c76 078d46b] by '''Davis22d''')&lt;br /&gt;
&lt;br /&gt;
== 77 Changes and Bug Fixes ==&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Fixed random toggle of world special properties ([https://github.com/multitheftauto/mtasa-blue/commit/bf95b1d16e31f36899350e2acac4bb8adfad5cdd bf95b1d] by '''samr46''')&lt;br /&gt;
* Many debugscript fixes&lt;br /&gt;
:* Fixed [[onClientDebugMessage]]/[[onDebugMessage]] recognizing level 4 as 0 ([https://github.com/multitheftauto/mtasa-blue/commit/783971efbdfcae622dbc03fd7647c337c2a3a306 783971e] by '''Tracer''')&lt;br /&gt;
:* Fixed outputDebugString level 4 colors ([https://github.com/multitheftauto/mtasa-blue/commit/5d4d7df3b8ff703cf954f3af394c811c489dcb18 5d4d7df] by '''MegadreamsBE''')&lt;br /&gt;
:* Fixed [[outputDebugString]] level 4 not being logged ([https://github.com/multitheftauto/mtasa-blue/commit/1951a5e62d35b2cf4ec292d294f8c818b8463418 1951a5e] by '''MegadreamsBE''')&lt;br /&gt;
:* Fixed outputDebugString with level 4 not showing ([https://github.com/multitheftauto/mtasa-blue/commit/b459973f8ad00aff79042a338a70700a21b426dc b459973] by '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
* Ped sync improvements ([https://github.com/multitheftauto/mtasa-blue/commit/f5b599c9f45777f924f7980cadb2d3cc6431d8b8 f5b599c] by '''tederis''')&lt;br /&gt;
* Fixed &amp;quot;Using setElementHealth on a dead ped makes it invincible&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/836888379dc3e434752ad20c10a8d7d33ffc65a2 8368883] by '''FileEX''')&lt;br /&gt;
* Fixed setting player model resets their current weapon slot ([https://github.com/multitheftauto/mtasa-blue/commit/f7ce562b645cb05a18658df62d093b753b881bb9 f7ce562] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where ''&amp;quot;arrow&amp;quot;'' and ''&amp;quot;checkpoint&amp;quot;'' markers ignored the alpha color ([https://github.com/multitheftauto/mtasa-blue/commit/7988852cf3af9e78f662d76544dc00db408b5c87 7988852] by '''FileEX''')&lt;br /&gt;
* Fixed the goggle effect resetting after changing skin ([https://github.com/multitheftauto/mtasa-blue/commit/1dd291409f791891b54ccf6b1d1cebe08cff13c0 1dd2914] by '''Proxy-99''')&lt;br /&gt;
* Fixed satchels detaching after changing skin ([https://github.com/multitheftauto/mtasa-blue/commit/d93dbf2ca598bf3508364bc7c6337d82c3d9ccb2 d93dbf2] by '''FileEX''')&lt;br /&gt;
* Added '''resourceName''' global variable and added current resource as default argument for [[getResourceName]] ([https://github.com/multitheftauto/mtasa-blue/commit/49fb6c68a27ad85e5abcd563f4c4f8c568305fdb 49fb6c6] by '''Nico834''')&lt;br /&gt;
* Added new parameters '''animGroup''' &amp;amp; '''animID''' for wasted events [[onPlayerWasted]], [[onPedWasted]], [[onClientPlayerWasted]] ([https://github.com/multitheftauto/mtasa-blue/commit/ecd6ed98ca129e7f45bda14384a503bee09495a7 ecd6ed9] by '''Nico834''' and '''G-Moris''')&lt;br /&gt;
* Added optional '''ignoreAlphaLimits''' argument for [[createMarker]] to maintain backward compatibility after adding the ability to change alpha for arrow and checkpoint markers ([https://github.com/multitheftauto/mtasa-blue/commit/121048cb9a14c28dcefca9bf2d4e955ef920a087 121048c] by '''FileEX''')&lt;br /&gt;
* Added optional '''property''' argument for [[getVehicleHandling]] ([https://github.com/multitheftauto/mtasa-blue/commit/a08e38d6507fdc1c051c2b84727c83dd9c418649 a08e38d] by '''XJMLN''')&lt;br /&gt;
* Fixed health value issues ([https://github.com/multitheftauto/mtasa-blue/commit/612f9a6715059baa43182e891258d9c3ceb19591 612f9a6] by '''Tracer''')&lt;br /&gt;
* Fixed [[getTimerDetails]] negative remaining duration ([https://github.com/multitheftauto/mtasa-blue/commit/1c6cab5a94c8c6ff5cf9b1fc0c9bc04808c922f8 1c6cab5] by '''jvstns''')&lt;br /&gt;
* Fixed changing [[setElementCollisionsEnabled]] doesn't update contact element ([https://github.com/multitheftauto/mtasa-blue/commit/71c683f547aac34e876601d24c881227fe3ca05f 71c683f] by '''FileEX''')&lt;br /&gt;
* Removed ability to skip [[addDebugHook]] ([https://github.com/multitheftauto/mtasa-blue/commit/2fecd74fdd453efdcbdddfd8f3fa3c092640cf9f 2fecd74] by '''PlatinMTA''')&lt;br /&gt;
* Fixed hydraulics stopping working after using [[setVehicleHandling]] ([https://github.com/multitheftauto/mtasa-blue/commit/f96836397a075585d4d112eb7d0240f1abf361d4 f968363] by '''FileEX''')&lt;br /&gt;
* Fixed helicopter rotor unaffected by vehicle alpha ([https://github.com/multitheftauto/mtasa-blue/commit/55d39225254c0b9961c1423b0d5695beff20072b 55d3922] by '''FileEX''')&lt;br /&gt;
* Add '''spawnFlyingComponent &amp;amp; breakGlass''' arguments for [[setVehiclePanelState]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b69d700c848e36b2f427bbc6ba5b2c905592783 5b69d70] by '''FileEX''')&lt;br /&gt;
* Fixed armor synchronization ([https://github.com/multitheftauto/mtasa-blue/commit/583e675da976fbf90f45804ad834d8fe33c779a1 583e675] by '''Nico834''')&lt;br /&gt;
* Fixed jetpack disappearing after changing position and coming back after changing skin ([https://github.com/multitheftauto/mtasa-blue/commit/de26a9e98519350f0486290ce886595068c02470 de26a9e] by '''FileEX''')&lt;br /&gt;
* Added support for '''ZLIB''' compression to [[encodeString]] &amp;amp; [[decodeString]]. ([https://github.com/multitheftauto/mtasa-blue/commit/6230161f8d0c83b60aec3f4afa5be88dd213b88b 6230161] by '''samr46''')&lt;br /&gt;
* Fixed a bug where hex color codes were included in the chat message length. ([https://github.com/multitheftauto/mtasa-blue/commit/9a0b1d59233f7001e991262b4df9d1c17850dc08 9a0b1d5] by '''shadylua''')&lt;br /&gt;
&lt;br /&gt;
=== Client ===&lt;br /&gt;
* Update d3dcompiler_47.dll from CEF ([https://github.com/multitheftauto/mtasa-blue/commit/75a1a298113721343090a06d60394f63f64df9ca 75a1a29] and [https://github.com/multitheftauto/mtasa-blue/commit/6d8fd8cc2fe7377318583f70abf58dcdb7d09cb0 6d8fd8c] by '''patrikjuvonen''')&lt;br /&gt;
* Updated translations from Crowdin ([https://github.com/multitheftauto/mtasa-blue/commit/29baf29a0143706eb08ef76c4743a452a7f83600 29baf29] by '''patrikjuvonen''')&lt;br /&gt;
:* Added Azerbaijani to client languages&lt;br /&gt;
* Resolved cursor being invisible with main menu open in certain scenarios ([https://github.com/multitheftauto/mtasa-blue/commit/bb1f675e6fee0ca3967f05afb5d2592dec9459b2 bb1f675] by '''Lpsd''')&lt;br /&gt;
* Partially fixed screen flickering on high memory usage ([https://github.com/multitheftauto/mtasa-blue/commit/1a886460a9fab1041cfba38078ae544b0fa51240 1a88646] by '''Zangomangu''')&lt;br /&gt;
* Added ''texture hit info'' parameter to [[processLineOfSight]] ([https://github.com/multitheftauto/mtasa-blue/commit/86f3344d1371a9783c2c7b755b895160a03ff6cd 86f3344] by '''Pirulax''')&lt;br /&gt;
* Fixed CStreamingSA::GetUnusedStreamHandle ([https://github.com/multitheftauto/mtasa-blue/commit/38624a4c2d18f4b60064d49069d3bcd81fbb4385 38624a4] by '''tederis''')&lt;br /&gt;
* IMG count extension ([https://github.com/multitheftauto/mtasa-blue/commit/1a60f6094b6660d29cabae780e6fbea5f5f1abf2 1a60f60] by '''tederis''')&lt;br /&gt;
* Fixed a desync state after aborted carjacking ([https://github.com/multitheftauto/mtasa-blue/commit/3f510fcdc7722cdfcb2e09ea43990b56aa43162b 3f510fc] by '''Zangomangu''')&lt;br /&gt;
* Allowed allocating clump models ([https://github.com/multitheftauto/mtasa-blue/commit/428561f1ebab49b8370ef0f022510cd67e98ab59 428561f] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash in CEF init ([https://github.com/multitheftauto/mtasa-blue/commit/c782826c955dfbdbaa67852a245e1c601d6b9f2c c782826] by '''TheNormalnij''')&lt;br /&gt;
* Fixed &amp;quot;Changing vehicle model from doorless or &amp;quot;doorful&amp;quot; causes doors to fall off&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/d6659dae263e2883d9e479ca271f0e9c8e622f95 d6659da] by '''FileEX''')&lt;br /&gt;
* Fixed &amp;quot;Wheel visibility when using setVehicleWheelStates&amp;quot;  ([https://github.com/multitheftauto/mtasa-blue/commit/51c9257a427957642932a216bd76cb7de59fea1b 51c9257] by '''FileEX''')&lt;br /&gt;
* Added new world special property ''burnflippedcars'' ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
* Streaming buffer restore and fixes ([https://github.com/multitheftauto/mtasa-blue/commit/6c86ebbf0801c45d5e0bcbb9d9f2e8fd55525b15 6c86ebb] by '''Pirulax''')&lt;br /&gt;
* Fixed Unicode file path passed in CClientIMG ([https://github.com/multitheftauto/mtasa-blue/commit/c57f07bfad8b02953dbe7b2b6e9b9de08ba88226 c57f07b] by '''TheNormalnij''')&lt;br /&gt;
* Added new world special property ''fireballdestruct'' ([https://github.com/multitheftauto/mtasa-blue/commit/219ad73d600140724eefcf5ca4040ac417cdee12 219ad73] by '''samr46''')&lt;br /&gt;
* Fixed &amp;quot;Hide question box when hiding main menu&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/4beff0447f093c66594a5f32ad5e52c7d7188ce9 4beff04] by '''XJMLN''')&lt;br /&gt;
* Fixed engineFreeModel regression ([https://github.com/multitheftauto/mtasa-blue/commit/b52500e92fb2591c092a6e66121471f098a2e044 b52500e] by '''TheNormalnij''')&lt;br /&gt;
* Fixed assert when model info is missing ([https://github.com/multitheftauto/mtasa-blue/commit/d431e5e16120b63beafbfe69110da601d12a76bb d431e5e] by '''TheNormalnij''')&lt;br /&gt;
* Fixed engineFreeModel crashes ([https://github.com/multitheftauto/mtasa-blue/commit/c289c22fb9a13730b7fd793752d84adbf2b928ee c289c22] by '''TheNormalnij''')&lt;br /&gt;
* Filtered URLs in requestBrowserDomains with incorrect symbols ([https://github.com/multitheftauto/mtasa-blue/commit/74bbb068acc6757ff0e04d0c63b999236e51ce63 74bbb06] by '''TheNormalnij''')&lt;br /&gt;
* Fixed issues with ped shaders ([https://github.com/multitheftauto/mtasa-blue/commit/3bc1e6d98ab13a9e7db95cc616b4645dc761889b 3bc1e6d] by '''Merlin''')&lt;br /&gt;
* Fixed 3D primitives disappearing ([https://github.com/multitheftauto/mtasa-blue/commit/04a1e2ba9157e4a1a91297f91554b72a87bf0ed4 04a1e2b] by '''tederis''')&lt;br /&gt;
* Fixed [[svgSetSize]] issues ([https://github.com/multitheftauto/mtasa-blue/commit/721c2b6d0f0c4ab016be079f1d4e28dec0123a6d 721c2b6] by '''Nico834''')&lt;br /&gt;
* Fixed the marker flickering issue during water cannon effects ([https://github.com/multitheftauto/mtasa-blue/commit/e83f700ee24904c0411b4dad3e695b3c3e30d9e4 e83f700] by '''Merlin''')&lt;br /&gt;
* Fixed buildings removal ([https://github.com/multitheftauto/mtasa-blue/commit/1b40db7cb5b63966ee97d0cbe79190360e1d32a0 1b40db7] by '''tederis''')&lt;br /&gt;
* Fixed crashes caused by [[createBuilding]] with [[engineRequestModel]] ([https://github.com/multitheftauto/mtasa-blue/commit/6245a68f3d97fc222d78fbc66b67f422a13710bf 6245a68] by '''TheNormalnij''')&lt;br /&gt;
* Fixed wrong getModelMatrix result for buildings ([https://github.com/multitheftauto/mtasa-blue/commit/f691946bc2d3dac75bd27d31886cd6b66d55811d f691946] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crashes for ''timed-object'' in [[engineRequestModel]] ([https://github.com/multitheftauto/mtasa-blue/commit/229389a4bd1c4c02010ba27ce26a428b41b68560 229389a] by '''TheNormalnij''')&lt;br /&gt;
* Fixed incorrect colors for 3D draws ([https://github.com/multitheftauto/mtasa-blue/commit/1f2c6e75fb71b01f0053f151e766a232ed33692b 1f2c6e7] by '''Nico834''')&lt;br /&gt;
* Add missing definition GuiGridList::getColumnWidth ([https://github.com/multitheftauto/mtasa-blue/commit/b34b1d5362291bcf00c7a0a0b694f60e1dccb363 b34b1d5] by '''Lpsd''')&lt;br /&gt;
* Fixed [[resetPedVoice]] not working at all ([https://github.com/multitheftauto/mtasa-blue/commit/3d8bd504f009fc2aa66e1dc9d35427a889ccd6aa 3d8bd50] by '''Tracer''')&lt;br /&gt;
* Added LOD support for buildings ([https://github.com/multitheftauto/mtasa-blue/commit/77ab3e64a3c6dacdcee02a223b67aec6c5b97ec2 77ab3e6] by '''TheNormalnij''')&lt;br /&gt;
* Added render stages for 3D primitives (new ''stage'' parameter) ([https://github.com/multitheftauto/mtasa-blue/commit/841447684c2d1992656555f81d73da52b2ce5c4f 8414476] by '''tederis''')&lt;br /&gt;
* Added disable option for [[engineSetModelPhysicalPropertiesGroup]] ([https://github.com/multitheftauto/mtasa-blue/commit/b6216cad058582b0feb34e98e94531d4acbf7c5b b6216ca] by '''TheNormalnij''')&lt;br /&gt;
* Fixed return correct value for stuntDistance parameter ([https://github.com/multitheftauto/mtasa-blue/commit/1f464d61c8c5f1400faa5472ccb67d2436d52903 1f464d6] by '''XJMLN''')&lt;br /&gt;
* Fixed [[engineRestoreModelPhysicalPropertiesGroup]] restores incorrect group ([https://github.com/multitheftauto/mtasa-blue/commit/291dfb4bc9bd72307a4ba4b42ffcbfc03ded4e38 291dfb4] by '''TheNormalnij''')&lt;br /&gt;
* Fixed OGG sound files can't be played as RAW data ([https://github.com/multitheftauto/mtasa-blue/commit/2764b7983c4e1bde20b894ebcfef5f230b149030 2764b79] by '''FileEX''')&lt;br /&gt;
* Implement [[getElementBoundingBox]] for buildings ([https://github.com/multitheftauto/mtasa-blue/commit/7b228daea3e0dc22d808abcf0eb568d99efcf63d 7b228da] by '''TheNormalnij''')&lt;br /&gt;
* Fixed streaming size check after [[engineAddImage]] ([https://github.com/multitheftauto/mtasa-blue/commit/5cdc04d6d61f40e89a5da3d27ae9575f4a419a08 5cdc04d] by '''TheNormalnij''')&lt;br /&gt;
* Fixed [[removeWorldModel]] crash ([https://github.com/multitheftauto/mtasa-blue/commit/ae98b04753b54208961759b295bef44f0ffafe43 ae98b04] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash when using [[extinguishFire]] in [[onClientVehicleDamage]] event ([https://github.com/multitheftauto/mtasa-blue/commit/d6ae4e9e24b0b7de704a3cbeec25dfd661b4a3fc d6ae4e9] by '''FileEX''')&lt;br /&gt;
* Fixed weapon models being invisible when using the jetpack with [[setJetpackWeaponEnabled]] ([https://github.com/multitheftauto/mtasa-blue/commit/a68c2c4232c28c6ba5595a814b89be976c4fa9c3 a68c2c4] by '''FileEX''')&lt;br /&gt;
* Fixed animations validation to avoid crashes ([https://github.com/multitheftauto/mtasa-blue/commit/27a24b551d86c6fbf9ee308603f24b011e941399 27a24b5] by '''G-Moris''')&lt;br /&gt;
* Fixed a bug where the &amp;quot;attacker&amp;quot; parameter is always nil in the [[onClientObjectBreak]] event if the object is glass ([https://github.com/multitheftauto/mtasa-blue/commit/dca5e2065af4a0195526541f9a8285db0401616e dca5e20] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where the [[onClientObjectBreak]] event was not triggered if the glass was broken by an explosion ([https://github.com/multitheftauto/mtasa-blue/commit/dca5e2065af4a0195526541f9a8285db0401616e dca5e20] by '''FileEX''')&lt;br /&gt;
* Fixed a bug that prevented players from switching weapons with an active jetpack ([https://github.com/multitheftauto/mtasa-blue/commit/180fbc0b5fdba95450e7a519f78f7588849349bf 180fbc0] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where hitElement in the [[onClientVehicleCollision]] event was always nil for projectiles ([https://github.com/multitheftauto/mtasa-blue/commit/43cc7b3e34eb4680120eb8ebf40d31d845850df2 43cc7b3] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where hydra flares did not work with [[createProjectile]] ([https://github.com/multitheftauto/mtasa-blue/commit/2bdac16d1d868f396786fbfdcfa2595004e1fff5 2bdac16] by '''FileEX''')&lt;br /&gt;
* Fixed inconsistent extra component names ([https://github.com/multitheftauto/mtasa-blue/commit/d4f884935626c638dca0f7f45c71cfb22c4e2d72 d4f8849] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where after changing the key in the bind settings, only the key for the &amp;quot;down&amp;quot; status changed, while the &amp;quot;up&amp;quot; key remained unchanged.([https://github.com/multitheftauto/mtasa-blue/commit/3ebefc37951e24cbfb25035d99045d67571b5324 3ebefc3] by '''FileEX''')&lt;br /&gt;
* Maked frame graph scale accordingly to resolution ([https://github.com/multitheftauto/mtasa-blue/commit/e431474c676a253004a26d86fc9e1a6100d329d4 e431474] by '''ffsPLASMA''')&lt;br /&gt;
* Fixed old [[setElementModel]] memory leak ([https://github.com/multitheftauto/mtasa-blue/commit/4e7afa2586c6992a75ac5312378c1096d87148ae 4e7afa2] by '''tederis''')&lt;br /&gt;
* Fixed [[getObjectProperty]] returns invalid ''air_ressistance'' property ([https://github.com/multitheftauto/mtasa-blue/commit/b51e1116283e9ec453881d3c48229b96c6198d5a b51e111] by '''FileEX''')&lt;br /&gt;
* Fixed missing states in [[getPedControlState]] ([https://github.com/multitheftauto/mtasa-blue/commit/3333a115f1a14f00378161681aeba609b4e993c0 3333a11] by '''FileEX''')&lt;br /&gt;
* Fixed for randomly bright objects after weapon change  ([https://github.com/multitheftauto/mtasa-blue/commit/9b9120c73ec97bf1b2f24703889a62fc19326f1f 9b9120c] by '''FileEX''')&lt;br /&gt;
* Fixed some small problems with Device Selection Dialog ([https://github.com/multitheftauto/mtasa-blue/commit/6f90880bee4d9169d4eda5f6afc63f4ed1bf652f 6f90880] by '''forkerer''')&lt;br /&gt;
* Allow dynamic models to be created as buildings ([https://github.com/multitheftauto/mtasa-blue/commit/642438ec1302daba50b6f6069844e96cbaa31818 642438e] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash when disconnecting from server after creating projectiles ([https://github.com/multitheftauto/mtasa-blue/commit/9ab6104d9c1ec246fde29ae6bf303ae5848bbbe1 9ab6104] by '''TheNormalnij''')&lt;br /&gt;
* Allow client peds to enter/exit client vehicles ([https://github.com/multitheftauto/mtasa-blue/pull/3678 #3678], [https://github.com/multitheftauto/mtasa-blue/commit/67beec77b06897552dc2c756c15283bfdc19b143 67beec7] by '''gownosatana''' and '''Tracer''')&lt;br /&gt;
* Use immersive dark mode on game window ([https://github.com/multitheftauto/mtasa-blue/commit/fd9520498919ae191c718c49b2a5c742bbbf8239 fd95204] by '''FileEX''')&lt;br /&gt;
* Added damageable objects support for [[engineRequestModel]] ([https://github.com/multitheftauto/mtasa-blue/commit/21593b9239765343ad5a4975c9f8424e571a036d 21593b9] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash with [[setElementHealth]] in [[onClientPedDamage]] event ([https://github.com/multitheftauto/mtasa-blue/commit/2d3397df56827f7c218689873f8b4741ea9af44e 2d3397d] by '''FileEX''')&lt;br /&gt;
* Fixed [[setPedControlState]] is aborted when ped created/player join ([https://github.com/multitheftauto/mtasa-blue/commit/8117ebcb95d3e3c35c400ee073a6ebab81e3f9fb 8117ebc] by '''FileEX''')&lt;br /&gt;
* Added '''buildings''' support to [[engineApplyShaderToWorldTexture]] ([https://github.com/multitheftauto/mtasa-blue/commit/fe1dd063170aef6a866bc241c305278a73200fdd fe1dd06] by '''TheNormalnij''')&lt;br /&gt;
* Fixed unintended behavior for ped control states ([https://github.com/multitheftauto/mtasa-blue/commit/a38e6acaf5c0fd83b5627660439f36d380cd26e6 a38e6ac] by '''Nico834''')&lt;br /&gt;
* Fixed SVG colors bug ([https://github.com/multitheftauto/mtasa-blue/commit/04f297b7b1aecb3753c8fbfa19fa9627abf422b4 04f297b] by '''TheNormalnij''')&lt;br /&gt;
* Fixed &amp;quot;CEF Launcher&amp;quot; process remaining after closing MTA ([https://github.com/multitheftauto/mtasa-blue/commit/a6c00278a5329e3b2b870b298d78565b14a7bed2 a6c0027] by '''botder''')&lt;br /&gt;
* Removed ''login'' cmd from chat history ([https://github.com/multitheftauto/mtasa-blue/commit/4639aea8a5544bfa4460bfcc8bba1d5b032e931a 4639aea] by '''PlatinMTA''')&lt;br /&gt;
* Fixed in-game updater dialog incorrectly showing 0% progress ([https://github.com/multitheftauto/mtasa-blue/commit/40d9ac11a9864d4f26c9eb1979e3a30ec0624061 40d9ac1] by '''Dutchman101''')&lt;br /&gt;
* Fixed invalid references counter to TXD after [[engineSetModelTXDID]] (top 1 crash according to players crash stats) ([https://github.com/multitheftauto/mtasa-blue/commit/1b7e9e82997fb4ac2eec5722d9134299902a16e6 1b7e9e8] by '''TheNormalnij''')&lt;br /&gt;
* Fixed server cache memory leak on connecting to another server ([https://github.com/multitheftauto/mtasa-blue/commit/e3476592fc46dc28f9da98f525797ae94ebf3ec3 e347659] by '''Lpsd''')&lt;br /&gt;
* Added the ability to set CPU affinity (CPU 0) in the '''advanced''' tab in the settings ([https://github.com/multitheftauto/mtasa-blue/commit/d04c92b24e7b85f6015fa93192ddda06e9023c85 d04c92b] by '''FileEX''')&lt;br /&gt;
* Fixed crash in ''CClientDisplayManager'' (top 2 crash according to players crash stats) ([https://github.com/multitheftauto/mtasa-blue/commit/0df0a4b40f7aea7c16473d0844a03fcece888420 0df0a4b] by '''Lpsd''')&lt;br /&gt;
* Set main menu FPS limit to current display refresh rate ([https://github.com/multitheftauto/mtasa-blue/commit/acbcc8e03ba8ac677a9c2c8182fb6f24868cae46 acbcc8e] by '''samr46''')&lt;br /&gt;
* [[setSoundEffectParameter]] and [[getSoundEffectParameters]] can be now used also on players! ([https://github.com/multitheftauto/mtasa-blue/commit/20851ecf7d69cc42fc00a62446a87d7e99c1e19d 20851ec] by '''tederis''')&lt;br /&gt;
* Fixed elements sometimes being visible from other dimensions in the current dimension ([https://github.com/multitheftauto/mtasa-blue/commit/9af03b3263a5a320e2f92140f6caa6c94b9fe9a5 9af03b3], [https://github.com/multitheftauto/mtasa-blue/commit/1dff560099459bc1b8248ef50643886158b0d731 1dff560] by '''FileEX''' &amp;amp; '''tederis''')&lt;br /&gt;
* Fixed bug &amp;quot;Copying text from CEF Browser shows Chinese characters in console&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/892beb0457b461d5afd5d91e86763181bdb972d3 892beb0] by '''ColombuxMaximus''')&lt;br /&gt;
* Fixed a bug where hidden vehicle components became visible after changing the variant or handling ([https://github.com/multitheftauto/mtasa-blue/commit/1d81347ee7e2614cd94e4b1807947d2c98b3305f 1d81347] by '''ColombuxMaximus''')&lt;br /&gt;
* Fixed persian characters in main menu &amp;amp; CEGUI ([https://github.com/multitheftauto/mtasa-blue/commit/efb2edfa853aa9a95f39ed9a843c3230b2e627cf efb2edf] by '''tzwer''')&lt;br /&gt;
* Added new movement states to [[getPedMoveState]] and fixed incorrect returning of &amp;quot;fall&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/c43c1b98b8ec0b7253d98c65b405ead482a765d8 c43c1b9], [https://github.com/multitheftauto/mtasa-blue/commit/797331fadbca4367f6cfd43633e48af44a99a115 797331f] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where friendly fire did not prevent fire damage ([https://github.com/multitheftauto/mtasa-blue/commit/9c4397707dd2a94d8a6124d6b502d39793f0d2ba 9c43977] by '''FileEX''')&lt;br /&gt;
* Fixed [[engineReplaceModel]] memory leak &amp;amp; potential crash ([https://github.com/multitheftauto/mtasa-blue/commit/1dbbfd025c5ff791f31e1ef4f255514198f88d0c 1dbbfd0] by '''FileEX''')&lt;br /&gt;
* Fixed '''ALT + F4''' not working ([https://github.com/multitheftauto/mtasa-blue/commit/93963a98f24fdb5e8374baaddaa6d99260be967e 93963a9] by '''lopezloo''')&lt;br /&gt;
* Fixed [[setPedOnFire]] doesn't cancel '''TASK_SIMPLE_PLAYER_ON_FIRE''' ([https://github.com/multitheftauto/mtasa-blue/commit/2a2f31bccd9d90adfc2b03f1f63248b9d016c725 2a2f31b] by '''FileEX''')&lt;br /&gt;
* Fixed crash related to buildings ([https://github.com/multitheftauto/mtasa-blue/commit/4bcded5c89caffd005b266021d3c1bbd83a554cb 4bcded5] by '''tederis''')&lt;br /&gt;
* Fixed client freeze in some locations on the map ([https://github.com/multitheftauto/mtasa-blue/commit/3a376e479201b30b27488a5a674d7d816397e79a 3a376e4] by '''tederis''')&lt;br /&gt;
* Added disconnect warning when using quick connect while connected to server ([https://github.com/multitheftauto/mtasa-blue/commit/be395665c0f5094793b923e9f4fb94056ccff961 be39566] by '''omar-o22''')&lt;br /&gt;
* Added missing trashcan in help section ([https://github.com/multitheftauto/mtasa-blue/commit/853a7d54a25bc09ee421ac837f22201882ece1b7 853a7d5] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
=== Server ===&lt;br /&gt;
* Fixed bullet sync check in CBulletsyncPacket by verifying total ammo instead of clip ammo ([https://github.com/multitheftauto/mtasa-blue/commit/ca06762413833e1c7f8d17970334607763414a45 ca06762] by '''shadylua''')&lt;br /&gt;
* Check deprecated account name length on [[banPlayer]] to fix all players getting kicked ([https://github.com/multitheftauto/mtasa-blue/commit/b5e2332ca5857f3e984467ca0cb8163ec998ea06 b5e2332] by '''patrikjuvonen''')&lt;br /&gt;
* Fixed a crash in CHandlingManager ([https://github.com/multitheftauto/mtasa-blue/commit/b6867a0d2ed0b4ab12a4461c3f1ca7d667bdedbc b6867a0] by '''Olya-Marinova''')&lt;br /&gt;
* Removed min-version lua function from old MTA versions ([https://github.com/multitheftauto/mtasa-blue/commit/222b2720c93f29977fffb722f8d42ea3fb5f790d 222b272] by '''Olya-Marinova''')&lt;br /&gt;
* Disallow loadstring by default ([https://github.com/multitheftauto/mtasa-blue/commit/89e2d375d12deb026ee91fedc5e1ced04dc9a723 89e2d37] by '''srslyyyy''')&lt;br /&gt;
* Added valid values for 'donotbroadcastlan' setting ([https://github.com/multitheftauto/mtasa-blue/commit/f8d4422ad75c0d7f21894f9f868aa37ec6993a35 f8d4422] by '''Dark-Dragon''')&lt;br /&gt;
* Fixed &amp;quot;ped revives when syncer changes&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/af604ae7dfec742661206fb809f149140ce3a960 af604ae] by '''Zangomangu''')&lt;br /&gt;
* Fixed files not unloading after renaming ([https://github.com/multitheftauto/mtasa-blue/commit/2846e2794af1d9d441b7b988f49af521bd765fb0 2846e27] by '''W3lac3''')&lt;br /&gt;
* Added ability to limit client triggered events via [[triggerServerEvent]] ([https://github.com/multitheftauto/mtasa-blue/commit/eae47fe2f432d9053c425fd515ea27f963c254ec eae47fe] by '''Lpsd''')&lt;br /&gt;
* Added FileExists check to CMainConfig::AddMissingSettings ([https://github.com/multitheftauto/mtasa-blue/commit/1ebaa28e0381fb114b946f2f5a4d4bc5834ebd03 1ebaa28] by '''Lpsd''')&lt;br /&gt;
* Added server side weapon related checks ([https://github.com/multitheftauto/mtasa-blue/commit/86448ea52c7ee13e554a907c424aa3c891e51e31 86448ea] by '''NanoBob''')&lt;br /&gt;
* Added [[dbConnect]] option for MySQL ''&amp;quot;use_ssl=0&amp;quot;'' ([https://github.com/multitheftauto/mtasa-blue/commit/e6476767a9b6848467f0d123830dd2f90bd4442d e647676] by '''Lpsd''')&lt;br /&gt;
* Added ''content'' parameter to [[onPlayerPrivateMessage]] event ([https://github.com/multitheftauto/mtasa-blue/commit/79f8ed6a374d62e5cf1ec707b2ba25e3a959f509 79f8ed6] by '''FileEX''')&lt;br /&gt;
* Fix ability to move server-side vehicles that are far away from the player. New parameter can be set in the [[Server_mtaserver.conf#vehicle_contact_sync_radius|mtaserver.conf]] ([https://github.com/multitheftauto/mtasa-blue/commit/e3338c2fbbdb500c4ce28dc0677ceadef1f1ca4c e3338c2] by '''MegadreamsBE''')&lt;br /&gt;
* Added ''sync'' parameter for vehicles ([https://github.com/multitheftauto/mtasa-blue/commit/f88d31306d3c7fadfbc1542c85922612fd00b131 f88d313] by '''znvjder''')&lt;br /&gt;
* Fixed server-side pickup collision size ([https://github.com/multitheftauto/mtasa-blue/commit/49d97513e1eb2e0c96c5aa5a1d542d14131edd76 49d9751] by '''Proxy-99''') &lt;br /&gt;
* Fixed ''CSimBulletsyncPacket'' crash ([https://github.com/multitheftauto/mtasa-blue/commit/ee8bc92907a112a5584844329dbb07cc82326ad1 ee8bc92] by '''G-Moris''')&lt;br /&gt;
* Fixed onVehicleExit doesn't trigger if pulled out ([https://github.com/multitheftauto/mtasa-blue/commit/af4f7facca73bb68238437e6eff3504bd6f1cfe0 af4f7fa] by '''Proxy-99''')&lt;br /&gt;
* Fixed arguments in [[setPedAnimation]] being ignored when nil was passed ([https://github.com/multitheftauto/mtasa-blue/commit/f6f544e6b54054a06497fdf94cd077b862af8055 f6f544e] by '''FileEX''')&lt;br /&gt;
* Fixed Sirens not removed correctly ([https://github.com/multitheftauto/mtasa-blue/commit/9e419620069ec8ad5828c50295c1901685166cf9 9e41962] by '''Proxy-99''')&lt;br /&gt;
* Fixed a bug where [[setPedWeaponSlot]] did not update data in [[getPedWeapon]] and [[getPedWeaponSlot]] ([https://github.com/multitheftauto/mtasa-blue/commit/9615523faf84f584179412fb8e0cc04f9f4ee48f 9615523] by '''FileEX''')&lt;br /&gt;
* Added '''player''' parameter to [[onVehicleExplode]] ([https://github.com/multitheftauto/mtasa-blue/commit/1ec1f5be69d3ef99bd2e26fd3d008a7cecd0a5ad 1ec1f5b] by '''FileEX''')&lt;br /&gt;
* Excluded '''meta.xml''' from glob patterns for security reasons ([https://github.com/multitheftauto/mtasa-blue/commit/78f6d669adc97c51a825250dd4dbf1a4a4a0ff15 78f6d66] by '''FileEX''')&lt;br /&gt;
* Fixed the bug where changing a vehicle to one with a different number of seats caused passengers to experience network trouble ([https://github.com/multitheftauto/mtasa-blue/commit/1fcd732ca9031060602c8e2425e40ce602d35253 1fcd732] by '''FileEX''')&lt;br /&gt;
* Glob patterns added to meta.xml for HTML files ([https://github.com/multitheftauto/mtasa-blue/commit/7e6b4d02ec113b7ce3a6fd9937a6e8ad0a1ad9cb 7e6b4d0] by '''FileEX''')&lt;br /&gt;
* Fixed console not maintaining position &amp;amp; size when GUI skin changed ([https://github.com/multitheftauto/mtasa-blue/commit/30d8e6dbfe75db47cf396aa909f43c24c4dbe127] by '''NanoBob''')&lt;br /&gt;
* Added '''includeCustom''' argument for [[getValidPedModels]] clientside ([https://github.com/multitheftauto/mtasa-blue/commit/889567a7a0ecb8a8b8d938826d2395ef9f43a76b] by '''Fernando-A-Rocha''')&lt;br /&gt;
* Fixed '''min_mta_version''' tag for server ([https://github.com/multitheftauto/mtasa-blue/commit/8c0a01bac62ecc3e9510133dee9f8d6700065f03 8c0a01b] by '''Fernando-A-Rocha''')&lt;br /&gt;
* Allowed user to pass multiple resource names to start/stop/restart ([https://github.com/multitheftauto/mtasa-blue/commit/6f5fb9c65ee93a5c1692b0d3516a483dcea48f08 6f5fb9c] by '''botder''')&lt;br /&gt;
* Added sync peds/players animations for new players ([https://github.com/multitheftauto/mtasa-blue/commit/b32eafc70816ece8ad995d98d380d8f6e9950475 b32eafc] by '''FileEX''')&lt;br /&gt;
* Optimized processing big files by server ([https://github.com/multitheftauto/mtasa-blue/commit/cb90339aad461d3ee8c1008f2da10934afc38a4c cb90339] by '''AlexTMjugador''')&lt;br /&gt;
* Separate icon for ''mta-server.exe'' ([https://github.com/multitheftauto/mtasa-blue/commit/6cb9d3edf9686749e524f136985cefb53772898e 6cb9d3e] by '''Nico834''')&lt;br /&gt;
* Fixed a bug that caused warnings in debugscript when using depracated function names as variable names ([https://github.com/multitheftauto/mtasa-blue/commit/f23e39521b7e35ad5389e467360fbc525c099887 f23e395] by '''YelehaUwU''')&lt;br /&gt;
* [[onVehicleExplode]] can now be cancelled! ([https://github.com/multitheftauto/mtasa-blue/commit/fcb5b038981066f561f3792c2ae3d97d76d9d0fe fcb5b03] by '''Nico834''')&lt;br /&gt;
* Added '''eventName''' parameter to [[onPlayerTriggerEventThreshold]] ([https://github.com/multitheftauto/mtasa-blue/commit/76d7764c7ec408b77eb7b12379e88882e014527f 76d7764] by '''ColombuxMaximus''')&lt;br /&gt;
&lt;br /&gt;
=== More Technical Changes and Bug Fixes ===&lt;br /&gt;
&amp;lt;section show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
:* Updated CLuaFunctionParser.h ([https://github.com/multitheftauto/mtasa-blue/commit/55647f4023c78a846870f7c96069fab411cff5c5 55647f4] by '''Xenius97''')&lt;br /&gt;
:* Fixed build after above update ([https://github.com/multitheftauto/mtasa-blue/commit/9dcc651d42ae78b7b04257e7612c5b594cb0fffd 9dcc651] by '''Pirulax''')&lt;br /&gt;
:* Fixed std::unordered_map&amp;lt;std::string, std::string&amp;gt; parsing ([https://github.com/multitheftauto/mtasa-blue/commit/005592417b42de63c3d8ba9c572a81cdc8f96164 0055924] by '''tederis''')&lt;br /&gt;
:* Addendum to [https://github.com/multitheftauto/mtasa-blue/pull/3251 #3251] ([https://github.com/multitheftauto/mtasa-blue/commit/9544a34a28d3b4e766d7d07a44d63a8fe45dc506 9544a34] by '''Lpsd''')&lt;br /&gt;
:* Fixes for [https://github.com/multitheftauto/mtasa-blue/pull/3251 #3251] ([https://github.com/multitheftauto/mtasa-blue/commit/07013d24766a6259f4115bd0349a86f790dbf5d0 07013d2] by '''Lpsd''')&lt;br /&gt;
:* Fixed SetStreamingBufferSize possibly accessing memory out-of-bounds ([https://github.com/multitheftauto/mtasa-blue/commit/e08b84fbfe6ad0431605b31c2ba5a50a8f116dc9 e08b84f] by '''Pirulax''')&lt;br /&gt;
:* Added a check to verify itemList validity ([https://github.com/multitheftauto/mtasa-blue/commit/668073787fa6b952d0f1520e8ccae0999dbdba13 6680737] by '''R4ven47''')&lt;br /&gt;
:* Various code clean ups and refactors&lt;br /&gt;
::* Removed COffsetsMP and EU addresses ([https://github.com/multitheftauto/mtasa-blue/commit/52b0115a2d9157b7a153b5f24316ff6fd053e79b 52b0115] by '''Merlin''')&lt;br /&gt;
::* Removed COffsets and EU addresses ([https://github.com/multitheftauto/mtasa-blue/commit/959141de324126245d2b5ebf029c924302ff64e9 959141d] by '''Merlin''')&lt;br /&gt;
::* Clean ups ''multiplayer_sa'' code ([https://github.com/multitheftauto/mtasa-blue/commit/38982043978dd1ec72230569a6d534792e7c18bd 3898204] by '''CrosRoad95''')&lt;br /&gt;
::* Removed old easter-egg &amp;amp; debug code ([https://github.com/multitheftauto/mtasa-blue/commit/b26f80c3d72d628d63807529b408be4b61a5be60 b26f80c], [https://github.com/multitheftauto/mtasa-blue/commit/530212f34fc44e95599ca5e39e608583ecdbb5cc 530212f] by '''botder''' and '''Merlin''')&lt;br /&gt;
::* Refactored entity hierarchy &amp;lt;!-- Fixed accepting possible malicious packets --&amp;gt; ([https://github.com/multitheftauto/mtasa-blue/commit/fdaced046a9421a39de87b81eaf0f7de7c234c4b fdaced0] by '''Tracer''')&lt;br /&gt;
::* Removed unused symbol from ''CConsole'' class ([https://github.com/multitheftauto/mtasa-blue/commit/4fe9084a2e5c5eeed4b0a9a30a07607c812e923b 4fe9084] by '''Nico834''')&lt;br /&gt;
::* Refactored ''CLuaBlipDefs'' ([https://github.com/multitheftauto/mtasa-blue/commit/d05d09be8b9bd1327e37631411fa1e3b16c4dbb7 d05d09b], [https://github.com/multitheftauto/mtasa-blue/commit/c278c12debfd346377354017992543fc7cf6397b c278c12] by '''FileEX''')&lt;br /&gt;
::* Refactored ''CLuaTeamDefs'' ([https://github.com/multitheftauto/mtasa-blue/commit/74ffa1d0138ab3d848b0e081ca265f18ae6c7bd8 74ffa1d], [https://github.com/multitheftauto/mtasa-blue/commit/f37bbada1381370eeadabd4f4dde2a024ec48f5f f37bbad] by '''Nico834''')&lt;br /&gt;
::* Removed dead ''CAnimManagerSA'' code ([https://github.com/multitheftauto/mtasa-blue/commit/d18d7d35fb50fdeea3f70ad688a5857b29867185 d18d7d3] by '''G-Moris''')&lt;br /&gt;
::* Refactored class hierarchy and removed VTBL hacks ([https://github.com/multitheftauto/mtasa-blue/commit/61d1caffb5bfa9c620c08d43280150906dd172d5 61d1caf] by '''TheNormalnij''')&lt;br /&gt;
::* Refactored ''CWeaponSA'' and ''CPedSA'' classes ([https://github.com/multitheftauto/mtasa-blue/commit/a3b7c8519d0d167c66e70c8c7ed5d2f810b7ae39 a3b7c85], [https://github.com/multitheftauto/mtasa-blue/commit/2526a7dd6cde545e600792dcac3ab1b8ece0edec 2526a7d] by '''FileEX''')&lt;br /&gt;
::* Cleaning up client Common.h and moving enums to separate files ([https://github.com/multitheftauto/mtasa-blue/commit/1e56571479217f787b6444d48770f8aa69f14387 1e56571] by '''FileEX''')&lt;br /&gt;
:* Addd Comments to Frame Rate Fixes in CMultiplayerSA_FrameRateFixes.cpp ([https://github.com/multitheftauto/mtasa-blue/commit/e4e6d1b5a9609cb093a191db405c61339d4280d2 e4e6d1b] by '''Merlin''')&lt;br /&gt;
:* Fixed build after CEF update ([https://github.com/multitheftauto/mtasa-blue/commit/9980252446a6869609b1afa1ae1168282a99cb17 9980252] by '''TheNormalnij''')&lt;br /&gt;
:* Bump chromedriver from 114.0.2 to 119.0.1 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/5d8d3756d98b0272687b87c30adca2961eee86c8 5d8d375])&lt;br /&gt;
:* Bump axios from 1.4.0 to 1.6.1 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/ba018013085058905aa789c4fa3f39c4ed32fc69 ba01801])&lt;br /&gt;
:* Fixed file lock after img:destroy ([https://github.com/multitheftauto/mtasa-blue/commit/c2ccfd2c648a2d3f33ead2169262c30533f79bac c2ccfd2] by '''TheNormalnij''')&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
:* Bump follow-redirects from 1.15.2 to 1.15.6 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/437dbcd8024c5217c22ef0e38719f93f33f47ce5 437dbcd])&lt;br /&gt;
:* Fix permission check in File.create method ([https://github.com/multitheftauto/mtasa-blue/commit/92144a4d7383af09dfa05b7bcd3db09fa487e6fd 92144a4] by '''theSarrum''')&lt;br /&gt;
:* mbedTLS fix for cURL 8.8.0 ([https://github.com/multitheftauto/mtasa-blue/commit/4f7e0d87ec04e44d2e47f5b869c2d7c765817c0f 4f7e0d8] by '''Lpsd''')&lt;br /&gt;
:* Discord RPC Tweaks ([https://github.com/multitheftauto/mtasa-blue/commit/8ef351eabe46fd50da096247d8b6fc74508cb911 8ef351e] by '''theSarrum''')&lt;br /&gt;
:* Fixed small overhead in argument parser for strings ([https://github.com/multitheftauto/mtasa-blue/commit/d20582d770dfd2a1677d9981005b3b6d28fb8e4e d20582d] by '''TheNormalnij''')&lt;br /&gt;
:* Bump ws from 8.13.0 to 8.17.1 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/cc172fcae7654ead0d3530a4819c71f76205a175 cc172fc])&lt;br /&gt;
:* Generic exception type for argument parser instead of std::invalid_argument ([https://github.com/multitheftauto/mtasa-blue/commit/2043acfdb210a8f1158501e2fbb431b625bbf74d 2043acf] by '''tederis''')&lt;br /&gt;
:* Added comments for hooks in CMultiplayerSA_CrashFixHacks.cpp ([https://github.com/multitheftauto/mtasa-blue/commit/0327cb1bef9b234451f8a22ece9c6c70fdc9adb0 0327cb1] by '''FileEX''')&lt;br /&gt;
:* Optimization handling ([https://github.com/multitheftauto/mtasa-blue/commit/e3a8bd96d4eccb30e439ba8bd4a2029d01586154 e3a8bd9], [https://github.com/multitheftauto/mtasa-blue/commit/5ac6c8adad9c9ffd4a1c299c7cd548713e485bd6 5ac6c8a] by '''G-Moris''')&lt;br /&gt;
:* Added ability to use varargs in ArgumentParser functions ([https://github.com/multitheftauto/mtasa-blue/commit/8c2f95a5ffade0e7fb212b62282e69d7f433d36f 8c2f95a] by '''Tracer''')&lt;br /&gt;
:* Fixed google-breakpad in newer GCC versions ([https://github.com/multitheftauto/mtasa-blue/commit/5508c7e4058ad9d29cacc9964f8e84df2c60d14f 5508c7e] by '''Tracer''')&lt;br /&gt;
:* Validate serial on player join ([https://github.com/multitheftauto/mtasa-blue/commit/84437e49e6ebca758e1e87d93e7846f9aa99a673 84437e4] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Extract TXD class ([https://github.com/multitheftauto/mtasa-blue/commit/733683d70dc037fdcbb256fb17d86e93b fedd239] by '''TheNormalnij''')&lt;br /&gt;
:* Fixed a bug with desynchronization of the values of some fields of the ''CTickRateSettings'' structure ([https://github.com/multitheftauto/mtasa-blue/commit/af5b6968e0a28dbde7d92f3828dead0f1a936eec af5b696], [https://github.com/multitheftauto/mtasa-blue/commit/514a3b36d09906f09bb32e900c39dc09b1c29d10 514a3b3] by '''nweb''')&lt;br /&gt;
:* Fixed ''MinClientReqCheck'' and improve resource upgrade ([https://github.com/multitheftauto/mtasa-blue/commit/f0954109c0644c551ae3ec1df4474d1857e4bed8 f095410] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Refactored and improved player map (F11) ([https://github.com/multitheftauto/mtasa-blue/commit/2c5cf3226a573637b91d8b255d57113b7043dc28 2c5cf32] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Fixed ''CVector'' optional arguments ([https://github.com/multitheftauto/mtasa-blue/commit/6a70cf7def14db86980a499d0fdf4c63565915e1 6a70cf7] by '''Tracer''')&lt;br /&gt;
:* Fixed memory overwriting by ''EnumToString'' &amp;amp; ''StringToEnum'' ([https://github.com/multitheftauto/mtasa-blue/commit/3ab068ba213abca718ace47ac3bb8df9e4b1c3fc 3ab068b] by '''FileEX''')&lt;br /&gt;
:* Allow using ''std::variant'' with several pointers ([https://github.com/multitheftauto/mtasa-blue/commit/9d776c8bfc2680fc28857fc0a5dc4a4e40d4c3bf 9d776c8] by '''tederis''')&lt;br /&gt;
:* Fixed argument parser not distinguishing arrays from maps ([https://github.com/multitheftauto/mtasa-blue/commit/d4388a2452f4427bd56c3d93b80d4ea74c05b6e5 d4388a2] by '''FileEX''')&lt;br /&gt;
:* Fixed crash with nested arrays/maps in new argument parser ([https://github.com/multitheftauto/mtasa-blue/commit/ca877d33471fabbe970cf03d9d6d9b3413b6daa1 ca877d3] by '''tederis''')&lt;br /&gt;
&lt;br /&gt;
== 13 Vendor Updates ==&lt;br /&gt;
=== Client ===&lt;br /&gt;
* Updated libpng to 1.6.50 ([https://github.com/multitheftauto/mtasa-blue/commit/c24b39d41fd768337c3d336a944588d53dfaba44] by '''Nico834''')&lt;br /&gt;
* Updatee CEF to 127.3.5+g114ea2a+chromium-127.0.6533.120 ([https://github.com/multitheftauto/mtasa-blue/commit/bca4dff8dc490328000d7653a9166704d859b7e5 bca4dff] by '''Dutchman101''')&lt;br /&gt;
* Updated Unifont to 15.1.05 ([https://github.com/multitheftauto/mtasa-blue/commit/02115a5c00e2480bbb3b829b655869e7436de955 02115a5] by '''Dutchman101''')&lt;br /&gt;
&lt;br /&gt;
=== Server ===&lt;br /&gt;
* Updated cURL to 8.14.1 ([https://github.com/multitheftauto/mtasa-blue/commit/7c27c20da7503c68234cde0b726f10a3dcdf85e3] by '''Nico834''')&lt;br /&gt;
* Updated MySQL to 8.4.0 &amp;amp; OpenSSL to 3.3.1 ([https://github.com/multitheftauto/mtasa-blue/commit/a44d673bb8731506418fdbaa6690b339a98d82c1 a44d673] by '''botder''')&lt;br /&gt;
* Updated SQLite to 3.46.0 ([https://github.com/multitheftauto/mtasa-blue/commit/30e31af2ca1ae96e03386670a9df6db70336b968 30e31af] by '''Dutchman101''')&lt;br /&gt;
&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Updated mbedTLS to 3.6.4 ([https://github.com/multitheftauto/mtasa-blue/commit/45955dad5471f49e2784e37cbafd1b92196abe96] by '''Nico834''')&lt;br /&gt;
* Updated 7-Zip Standalone plugins to 24.07 (24.7.0.0) ([https://github.com/multitheftauto/mtasa-blue/commit/9b979b2d5c7f4b885046a85d9895e58416563890 9b979b2] by '''Dutchman101''')&lt;br /&gt;
* Updated freetype to freetype-37cefe3 (freetype/freetype@37cefe3) ([https://github.com/multitheftauto/mtasa-blue/commit/89e022cb8586aba5bdacd7b56c7d45c9b7b95f97 89e022c] by '''Dutchman101''')&lt;br /&gt;
* Updated nvapi from r550 to r555 ([https://github.com/multitheftauto/mtasa-blue/commit/5fdcada80a18af530381b04f54c3c69b6988f479 5fdcada] by '''Dutchman101''')&lt;br /&gt;
* Updated unrar to 7.0.9 ([https://github.com/multitheftauto/mtasa-blue/commit/ab9461be5777427261bc3a330acb4c0f5cdc2c8b ab9461b] by '''Dutchman101''')&lt;br /&gt;
* Updated FreeType to 2.13.2 ([https://github.com/multitheftauto/mtasa-blue/commit/a783e994264d4e954489e31459505c53759ca7f1 a783e99] by '''Dutchman101''')&lt;br /&gt;
* Updated zlib from 1.2.13 to 1.3 ([https://github.com/multitheftauto/mtasa-blue/commit/0f37ac0b18845e9f035d0ca45bbb41b9cd1aa979 0f37ac0] by '''Dutchman101''')&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
=== 46+ Changes and Bug Fixes ===&lt;br /&gt;
&lt;br /&gt;
'''admin'''&lt;br /&gt;
:* Removed execute code functionality for safety reasons ([https://github.com/multitheftauto/mtasa-resources/commit/507a04937524997410e450a6d4292974fa801bf8 507a049] by '''srslyyyy''')&lt;br /&gt;
:* Updated skins.xml ([https://github.com/multitheftauto/mtasa-resources/commit/b5306484a789cc59b05f4182505ac07df3d90e07 b530648] by '''shadylua''')&lt;br /&gt;
:* Fixed warnings ([https://github.com/multitheftauto/mtasa-resources/commit/d7b02022fa8168fc300dd562118100265cf0688b d7b0202] by '''jlillis''')&lt;br /&gt;
:* Making the admin window focused ([https://github.com/multitheftauto/mtasa-resources/commit/33f7cc938d243687fa36fa300ec588b2d057d02c 33f7cc9] by '''Proxy-99''')&lt;br /&gt;
:* Resource settings button is only displayed if there are settings ([https://github.com/multitheftauto/mtasa-resources/commit/0224ef52c699f27bd6e0e6364fbc81ecd0ec345f 0224ef5] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed nil index error and removed invalid characters causing syntax errors ([https://github.com/multitheftauto/mtasa-resources/commit/79857393ddb42f52ee05cf5758d5fdc8c2ff845c 7985739] by '''rad3sh''')&lt;br /&gt;
:* Allow disabling/enabling default reporting system ([https://github.com/multitheftauto/mtasa-resources/commit/0dbb83df7d3e9a20a2c897612db778bf4e395c92 0dbb83d] by '''Viude''')&lt;br /&gt;
:* Updated clientcheckban setting to ban serial instead of IP ([https://github.com/multitheftauto/mtasa-resources/commit/fa5beb96e10d9f30d9565ca212fe901f88e413a5 fa5beb9] by '''Viude''')&lt;br /&gt;
:* Fixed that double clicking on a resource without setting opened the GUI settings window ([https://github.com/multitheftauto/mtasa-resources/commit/82d5b835b503594101a99041498501e19a433a79 82d5b83] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed gridlist bug in weapons/vehicles ([https://github.com/multitheftauto/mtasa-resources/commit/6ba5a88b8a5da4a9df67f20347056754ea5a2c87 6ba5a88] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''admin2'''&lt;br /&gt;
:* Forward-ported permissions widget from admin1 and minor fixes ([https://github.com/multitheftauto/mtasa-resources/commit/25dcc4c655de26de0a2d0eb1b55ef7f3b3f6725e 25dcc4c] by '''Dark-Dragon''')&lt;br /&gt;
:* Fixed /report message viewer widget and minor fixes ([https://github.com/multitheftauto/mtasa-resources/commit/6dbdf2cf90d0e447879bea86942e01caf949b8f5 6dbdf2c] by '''Dark-Dragon''')&lt;br /&gt;
:* Refactored bans functionality ([https://github.com/multitheftauto/mtasa-resources/commit/d8c35b0a38a295d119054c4328a892c4e26be358 d8c35b0] by '''jlillis''')&lt;br /&gt;
:* Fixed messagebox not showing ([https://github.com/multitheftauto/mtasa-resources/commit/5afe0247e6ca44c5754a2d9a6a0af7bc8b57f967 5afe024] by '''FileEX''')&lt;br /&gt;
:* Added missing glitches and world properties ([https://github.com/multitheftauto/mtasa-resources/commit/6856aa075c8e5674379c2a89f355d8b167ab6fdb 6856aa0] by '''FileEX''')&lt;br /&gt;
:* Added content for &amp;quot;Users&amp;quot; sub-tab in the &amp;quot;Rights&amp;quot; tab ([https://github.com/multitheftauto/mtasa-resources/commit/3f8ecca953cc3dfa84e4d1b38b6b4c41f323688b 3f8ecca] by '''FileEX''')&lt;br /&gt;
:* Removed execute code functionality for safety reasons ([https://github.com/multitheftauto/mtasa-resources/commit/c4bc73a2b088b98116ece27065cc7f5a1dced15b c4bc73a] by '''jlillis''')&lt;br /&gt;
:* Replaced checkboxes with a gridlist for glitches and special world properties ([https://github.com/multitheftauto/mtasa-resources/commit/1dcb2953757c6741c93b9c63db33c032183047bc 1dcb295] by '''FileEX''')&lt;br /&gt;
:* Added ability to change server configuration settings ([https://github.com/multitheftauto/mtasa-resources/commit/118d58e383f631f111fe3f2463480182235c71d1 118d58e] by '''FileEX''')&lt;br /&gt;
:* Added content for &amp;quot;Resources&amp;quot; sub-tab in the &amp;quot;Rights&amp;quot; tab ([https://github.com/multitheftauto/mtasa-resources/commit/f16577e24ca9125eac5f2e96621077ad0d213b69 f16577e] by '''FileEX''')&lt;br /&gt;
:* Making the admin window focused ([https://github.com/multitheftauto/mtasa-resources/commit/33f7cc938d243687fa36fa300ec588b2d057d02c 33f7cc9] by '''Proxy-99''')&lt;br /&gt;
:* Fixed panel bind bug after reconnect ([https://github.com/multitheftauto/mtasa-resources/commit/c96bdd5297cf180f947596c1eded8929b4982e6c c96bdd5] by '''ricksterhd123''')&lt;br /&gt;
:* Added the new world special ([https://github.com/multitheftauto/mtasa-resources/commit/08ef1d07ee44540d1f74737e4871288568222331 08ef1d0] by '''omar-o22''')&lt;br /&gt;
:* Updated add ban GUI style ([https://github.com/multitheftauto/mtasa-resources/commit/52aec17bda8b63be70f02385400cf649952ac3ea 52aec17] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''chatmanager'''&lt;br /&gt;
:* Added a new resource for chat handling and management ([https://github.com/multitheftauto/mtasa-resources/commit/4e45cb75a8780b0c191031091a4fcd2d76442aa7 4e45cb7], [https://github.com/multitheftauto/mtasa-resources/commit/3f0f0d09a640178e01de71fa9e9b2caa9c21bcfa 3f0f0d0] by '''omar-o22''' and '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
'''defaultstats'''&lt;br /&gt;
:* Don't re-apply stats on every respawn ([https://github.com/multitheftauto/mtasa-resources/commit/9fde199ec5025052468df0255bf5c5011ef29718 9fde199] by '''Dutchman101''')&lt;br /&gt;
:* Fixed issue where defaultstats did not set player stats correctly ([https://github.com/multitheftauto/mtasa-resources/commit/567d10c552305dae3f57d5c422a34c25f22fdc12 567d10c] by '''MittellBuurman''')&lt;br /&gt;
&lt;br /&gt;
'''editor'''&lt;br /&gt;
:* Various fixes for local spawned or invalid elements ([https://github.com/multitheftauto/mtasa-resources/commit/4e3c57941cd789cff8d9ce240e99edca871a345d 4e3c579] by '''chris1384''')&lt;br /&gt;
:* Various bug fixes and improvements ([https://github.com/multitheftauto/mtasa-resources/commit/4674fa9c6dbff7a1073fb949cac44588c65df3fb 4674fa9] by '''IIYAMA12''')&lt;br /&gt;
:* Fixed rotation issues ([https://github.com/multitheftauto/mtasa-resources/commit/679c01b93132050548a86dba25ead7feaf9d5a1f 679c01b] by '''Nico834''')&lt;br /&gt;
:* Toggleable rotation mechanic and improve threshold ([https://github.com/multitheftauto/mtasa-resources/commit/83e2c79cbd959aa54c55d4220a5b4d38747e8353 83e2c79] by '''chris1384''')&lt;br /&gt;
:* Added missing objects and collisions ([https://github.com/multitheftauto/mtasa-resources/commit/4e83755d51345c0dc8e2e0f2ddf61588bf854641 4e83755] by '''THEGizmoOfficial''')&lt;br /&gt;
&lt;br /&gt;
'''edf'''&lt;br /&gt;
:* Fixed massive lag after stopping ''editor'' resource ([https://github.com/multitheftauto/mtasa-resources/commit/4674fa9c6dbff7a1073fb949cac44588c65df3fb 4674fa9] by '''IIYAMA12''')&lt;br /&gt;
&lt;br /&gt;
'''editor_main'''&lt;br /&gt;
:* Improvements ([https://github.com/multitheftauto/mtasa-resources/commit/5bf553f85cb9c53027814fe666268cb24ed66b2e 5bf553f], [https://github.com/multitheftauto/mtasa-resources/commit/e9b75fd615922c7d70f4e435a05fa933dcb9d2a5 e9b75fd] by '''q8X''')&lt;br /&gt;
:* Add xmlns namespace when saving map ([https://github.com/multitheftauto/mtasa-resources/commit/23fa3f38f71c2f3d28780df1b3ce163ab2eaae84 23fa3f3] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''editor_gui'''&lt;br /&gt;
:* Fixed test panel issues ([https://github.com/multitheftauto/mtasa-resources/commit/e558c846e8b0589997f342f431b36fdc371da000 e558c84] by '''chris1384''')&lt;br /&gt;
&lt;br /&gt;
'''fallout'''&lt;br /&gt;
:* Refactor &amp;amp; many improvements ([https://github.com/multitheftauto/mtasa-resources/commit/c733b69a735d004235ba61b1201ac1412acc6482 c733b69] by '''IIYAMA12''')&lt;br /&gt;
&lt;br /&gt;
'''freeroam'''&lt;br /&gt;
:* Updated skins.xml ([https://github.com/multitheftauto/mtasa-resources/commit/cacbe40a805402dec3a62180b987d4b777817ea6 cacbe40] by '''shadylua''')&lt;br /&gt;
:* Added Walk styles ([https://github.com/multitheftauto/mtasa-resources/commit/4a18d7585a2fa45eaed18d4b4796744a235a23c5 4a18d75] by '''shadylua''')&lt;br /&gt;
:* Security improvements ([https://github.com/multitheftauto/mtasa-resources/commit/2ec92132036d0dc073279dda3c88d71f578d651f 2ec9213] by '''IIYAMA12''')&lt;br /&gt;
:* Fixed freezetime flickering ([https://github.com/multitheftauto/mtasa-resources/commit/b40f27be0274b641c2cddd4c75a6f86f73ea4941 b40f27b], [https://github.com/multitheftauto/mtasa-resources/commit/817aa1ea9130fbccb1a23b7410309af2f8a21ddc 817aa1e] by '''ricksterhd123''' and '''jlillis''')&lt;br /&gt;
:* Fixed map key bind interferes with race editor help ([https://github.com/multitheftauto/mtasa-resources/commit/e62bc5471433b347b16c15709d469209cf202390 e62bc54] by '''MittellBuurman''')&lt;br /&gt;
:* Fixed player blips staying visible after closing spawn map with F1 ([https://github.com/multitheftauto/mtasa-resources/commit/aaf2dd7ed7a0b6b6c6609a4ee5d8319101e8a674 1a5031c] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''hedit'''&lt;br /&gt;
:* Added German localization [[File:Flag_de.png|x14px]] ([https://github.com/multitheftauto/mtasa-resources/pull/568/commits/c58df8666fbccfb0be73f27c52aa680dae2f0c1a bc33634] by '''shadylua''')&lt;br /&gt;
:* Added Brazilian Portuguese localization [[File:Flag_br.png|x14px]] ([https://github.com/multitheftauto/mtasa-resources/commit/d1b85d7dda45293ce497cf03f21eea2f59100b89 d1b85d7] by '''ricksterhd123''')&lt;br /&gt;
:* Added Hungarian localization [[File:Flag_hu.png|x18px]] ([https://github.com/multitheftauto/mtasa-resources/commit/53050dd0bf73a164969480c9277fc3c6b0601b7e 53050dd] by '''Nico834''')&lt;br /&gt;
:* Updated Turkish localization [[File:Tr.gif]] ([https://github.com/multitheftauto/mtasa-resources/commit/3044d00a796488870556b19b088ac505c332952c 3044d00] by '''mahlukat5''')&lt;br /&gt;
:* Updated Spanish localization [[File:Flag_es.png|x18px]] ([https://github.com/multitheftauto/mtasa-resources/commit/b74c2393cc15e403d4588ebb671659c16cc36269 b74c239] by '''kxndrick0''')&lt;br /&gt;
&lt;br /&gt;
'''internetradio'''&lt;br /&gt;
:* Fixed that the GUI window of the resource &amp;quot;internetradio&amp;quot; collides with the GUI window of the resource &amp;quot;helpmanager&amp;quot; ([https://github.com/multitheftauto/mtasa-resources/commit/313f3dde6b7cdb389f11f1a62a6d3e8c093c159f 313f3dd] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Improvements ([https://github.com/multitheftauto/mtasa-resources/commit/a3c9e17cf6b85374b5f9b5881937aee97da94745 a3c9e17] by '''srslyyyy''')&lt;br /&gt;
:* Added attaching to vehicles ([https://github.com/multitheftauto/mtasa-resources/commit/3dd5cbd32f092337707277fbecc5ee54988e07fc 3dd5cbd] by '''ds1-e''')&lt;br /&gt;
:* Added admin commands ([https://github.com/multitheftauto/mtasa-resources/commit/5c160212e190f74461d65fac1668cda07a2d0b11 https://github.com/multitheftauto/mtasa-resources/commit/5c160212e190f74461d65fac1668cda07a2d0b11] by '''ds1-e''')&lt;br /&gt;
:* Added ability to show speaker owner ([https://github.com/multitheftauto/mtasa-resources/commit/6189fc1eefce29c8467c5a1093eaa8bfd8ed97f0 6189fc1] by '''ds1-e''')&lt;br /&gt;
:* Fixed playSound3D and track name showing in other dimensions ([https://github.com/multitheftauto/mtasa-resources/commit/d4c04db009cdd68913fdb47bbc73acd91e63f981 d4c04db] by '''mateo-14'''&lt;br /&gt;
:* Added ability to edit the volume ([https://github.com/multitheftauto/mtasa-resources/commit/73ecb610fdc096926291e8c24c56eea7c43bb4d6 73ecb61], [https://github.com/multitheftauto/mtasa-resources/commit/254700cffdf5c6b054e8f6e17afb4b7342593a85 254700c] by '''omar-o22''' and '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
'''ip2c'''&lt;br /&gt;
:* Added missing fetchRemote aclrequest ([https://github.com/multitheftauto/mtasa-resources/commit/e1364c3ebcc956dbf7f61e2d89741837776edec2 e1364c3] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Added backed up file and .gitignore to ignore the real one (auto-updated) ([https://github.com/multitheftauto/mtasa-resources/commit/e182291a53c3c76a2cf45834ba313aa9d18c16f4 e182291] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''ipb'''&lt;br /&gt;
:* Replaced the onClientResource start event with the onPlayerResourceStart event ([https://github.com/multitheftauto/mtasa-resources/commit/cca3a05adf7fc940b913453a5fad5d5f3c8e3518 cca3a05] by '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
'''parachute'''&lt;br /&gt;
:* Fixed warnings about min_mta_version ([https://github.com/multitheftauto/mtasa-resources/commit/b4119cca4665d63a3043f14c1624ce9c96700b96 b4119cc] by '''NetroX1993''')&lt;br /&gt;
&lt;br /&gt;
'''playerblips'''&lt;br /&gt;
:* Fixed that the resource &amp;quot;playercolors&amp;quot; should be activated for teams ([https://github.com/multitheftauto/mtasa-resources/commit/2cd28db5fa891f361c5af07a491532378a820b83 2cd28db] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Real-time update of settings ([https://github.com/multitheftauto/mtasa-resources/commit/9505b181fe7fc2bab53142746f73bc64a8fd984d 9505b18] by '''Nico834''')&lt;br /&gt;
:* Improved debug messages ([https://github.com/multitheftauto/mtasa-resources/commit/4084e5d369907d3ededd1b2eb19c916983680154 4084e5d] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed that when a player changed or joined teams the color of the blip was not updated ([https://github.com/multitheftauto/mtasa-resources/commit/ff80005f114a3d010624f7d54510ffde47dddb00 ff80005] by '''T-MaxWiese-T''')&lt;br /&gt;
&lt;br /&gt;
'''playercolors'''&lt;br /&gt;
:* Player nametag color should revert to team color when the resource is stopped ([https://github.com/multitheftauto/mtasa-resources/commit/d45d2d0cd963186639d76ab1cb27ef6a042cd0bd d45d2d0] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed chat messages sent twice ([https://github.com/multitheftauto/mtasa-resources/commit/0547cf72514a7dc7efc987f47903c35b310a3b22 0547cf7] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''performancebrowser'''&lt;br /&gt;
:* Fixed player names not being reinitialized on change ([https://github.com/multitheftauto/mtasa-resources/commit/3e0166dc7fa9c11c596a7958b02423b6aeff8410 3e0166d] by '''YelehaUwU''')&lt;br /&gt;
&lt;br /&gt;
'''runcode'''&lt;br /&gt;
:* Added aclrequest for loadstring function ([https://github.com/multitheftauto/mtasa-resources/commit/c40b8095f054b6e87b46e1d53d9b6ec77cf943c7 c40b809] by '''IIYAMA12 ''')&lt;br /&gt;
&lt;br /&gt;
'''scoreboard'''&lt;br /&gt;
:* Replaced drawing arrow from path to texture ([https://github.com/multitheftauto/mtasa-resources/commit/128f26952810804df6acb233ca9476853caa1286 128f269] by '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
'''speedometer'''&lt;br /&gt;
:* Display at resource start ([https://github.com/multitheftauto/mtasa-resources/commit/31a5ac4013c3633647178e695474da6632eb38b8 31a5ac4] by '''Nico834''')&lt;br /&gt;
:* Preventing pointer overflow ([https://github.com/multitheftauto/mtasa-resources/commit/8689cdc247a3fd16125524aac04eb054c398084c 8689cdc] by '''Nico834''')&lt;br /&gt;
&lt;br /&gt;
'''superman'''&lt;br /&gt;
:* Fixes and improvements ([https://github.com/multitheftauto/mtasa-resources/commit/2b3bc102225b2f1c3144cffe290175e9a2c71728 2b3bc10], [https://github.com/multitheftauto/mtasa-resources/commit/e1c06c3c2581c16a6e05401381263a47dd6ac5f0 e1c06c3], [https://github.com/multitheftauto/mtasa-resources/commit/1e4319d180be0f482d42f2f32fbf2c1e5cd440cc 1e4319d] by '''ds1-e''')&lt;br /&gt;
:* Fixed a bug where you couldn't move after death while Superman is active ([https://github.com/multitheftauto/mtasa-resources/commit/715ee57664287083f7ecb299f534bc3093f796a0 715ee57] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''votemanager'''&lt;br /&gt;
:* Fixed lint error ([https://github.com/multitheftauto/mtasa-resources/commit/c8630075317123e510645464a3bf56ebb244573b c863007] by '''Dark-Dragon''')&lt;br /&gt;
&lt;br /&gt;
'''mapfixes'''&lt;br /&gt;
:* A new resource has been added that fixes many holes and bugs in the default map ([https://github.com/multitheftauto/mtasa-resources/commit/23f6bd94370440af5ed79a47bda1ff0caf92fa8e 23f6bd9] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''gps'''&lt;br /&gt;
:* Added export functions for custom logic ([https://github.com/multitheftauto/mtasa-resources/commit/537d92d11b357cf9e795a7bb3ec87c13fa62c7bc 537d92d] by '''T-MaxWiese-T''')&lt;br /&gt;
&lt;br /&gt;
'''deathmatch'''&lt;br /&gt;
:* Improvements and update ([https://github.com/multitheftauto/mtasa-resources/commit/a01ec8a86e636ca61f25a03d4ee30bd898754cbd a01ec8a], [https://github.com/multitheftauto/mtasa-resources/commit/b94ffddfd5b230544d54e5eca8c9c5d87dc69128 b94ffdd] by '''jlillis'''&lt;br /&gt;
&lt;br /&gt;
'''race'''&lt;br /&gt;
:* Fixed automatic nextid assignment breaking ([https://github.com/multitheftauto/mtasa-resources/commit/2c695a9e793825a8cafd2ee3be490d2d8e9ad318 2c695a9] by '''lotsofs''')&lt;br /&gt;
&lt;br /&gt;
'''voice_local'''&lt;br /&gt;
:* Improvements ([https://github.com/multitheftauto/mtasa-resources/commit/53cf63d83169018e0de9f45ecb565958855d717d 53cf63d] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''Others / Uncategorized'''&lt;br /&gt;
:* Refactor of resources meta.xml ([https://github.com/multitheftauto/mtasa-resources/commit/6713b07a459739c06112ac3e608776f3f0696144 6713b07] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
== Extra information ==&lt;br /&gt;
''More detailed information available on our GitHub repositories:&lt;br /&gt;
* [https://github.com/multitheftauto/mtasa-blue MTA:SA Blue]&lt;br /&gt;
* [https://github.com/multitheftauto/mtasa-resources MTA:SA Official Resources]&lt;br /&gt;
&lt;br /&gt;
[[Category:Changelog]]&lt;br /&gt;
[[Category:Incomplete]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=GuiCreateScrollBar&amp;diff=82489</id>
		<title>GuiCreateScrollBar</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=GuiCreateScrollBar&amp;diff=82489"/>
		<updated>2025-09-28T19:01:12Z</updated>

		<summary type="html">&lt;p&gt;O22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ &lt;br /&gt;
{{Client function}}&lt;br /&gt;
This function creates a GUI scrollbar. You can use the functions [[guiScrollBarSetScrollPosition]] and [[guiScrollBarGetScrollPosition]] to read and modify the scrollbar's scroll.&lt;br /&gt;
&lt;br /&gt;
==Syntax== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
gui-scrollbar guiCreateScrollBar ( float x, float y, float width, float height, bool horizontal, [ bool relative = false, gui-element parent = nil ] )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Required Arguments=== &lt;br /&gt;
[[Image:gui-scrollbar.png|frame|Example GUI scrollbar.]]&lt;br /&gt;
*'''x:''' the 2D x offset of the GUI scrollbar from its parent.  This is affected by the ''relative'' argument.&lt;br /&gt;
*'''y:''' the 2D y offset of the GUI scrollbar from its parent. This is affected by the ''relative'' argument.&lt;br /&gt;
*'''width:''' the width of the GUI scrollbar. This is affected by the ''relative'' argument.&lt;br /&gt;
*'''height:''' the height of the GUI scrollbar. This is affected by the ''relative'' argument.&lt;br /&gt;
*'''horizontal:''' whether this scrollbar is horizontal (''true'') or vertical (''false'').&lt;br /&gt;
&lt;br /&gt;
===Optional Arguments=== &lt;br /&gt;
{{OptionalArg}} &lt;br /&gt;
*'''relative:''' whether sizes and positions are relative to their parent's.  If this is ''true'', then all measures must be between 0 and 1, representing sizes/positions as a fraction of the parent widget's size.&lt;br /&gt;
*'''parent:''' the gui-element this scrollbar is attached to. By default, it is nil, meaning the widget is attached to the background.&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns a ''gui-scrollbar'' if it was created successfully, ''false'' otherwise.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
{{Client function}}&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function scBar()&lt;br /&gt;
    Window = guiCreateWindow(0.3664, 0.2764, 0.3508, 0.3477, &amp;quot;Window&amp;quot;, true)--We create a window.&lt;br /&gt;
    guiCreateScrollBar(15, 81, 24, 245, false, false, Window)--We create a scrollbar as a child of 'Window'&lt;br /&gt;
end&lt;br /&gt;
addEventHandler(&amp;quot;onClientResourceStart&amp;quot;, resourceRoot, scBar) --We handle it with 'onClientResourceStart' event.&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{GUI_functions}}&lt;br /&gt;
{{GUI_events}}&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Changes_in_1.7&amp;diff=82479</id>
		<title>Changes in 1.7</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Changes_in_1.7&amp;diff=82479"/>
		<updated>2025-09-17T10:47:41Z</updated>

		<summary type="html">&lt;p&gt;O22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pageclass class=&amp;quot;#4286f4&amp;quot; subcaption=&amp;quot;Next release&amp;quot;&amp;gt;&amp;lt;/pageclass&amp;gt;&lt;br /&gt;
{{Changelogs}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
'''This changelog is partial and needs updating. It is updated progressively to keep the page always up to date.'''&lt;br /&gt;
&lt;br /&gt;
* GitHub commit log: https://github.com/multitheftauto/mtasa-blue/compare/1.6.0...master&lt;br /&gt;
* GitHub milestone: https://github.com/multitheftauto/mtasa-blue/milestone/10&lt;br /&gt;
* Resources GitHub commit log: https://github.com/multitheftauto/mtasa-resources/compare/1.6.0...master&lt;br /&gt;
* Release announcement on forums: TBA&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Important notice to Windows 7 and 8.x users ==&lt;br /&gt;
If you are using Windows 7 or 8.x, please upgrade your system to Windows 10 or 11 as soon as possible. Windows 7 and 8.x are no longer supported by Microsoft (since January 2020 and January 2023 respectively) and most software (including Google Chrome and Steam) which means you are running an insecure system. Multi Theft Auto will also eventually drop Windows 7 and 8.x support sometime in the future, so it would be a good idea to start looking at upgrade options right now. Thank you!&lt;br /&gt;
&lt;br /&gt;
'''CEF in MTA is no longer updated for Windows 7 or 8.x. This is because CEF no longer supports those versions of Windows. This is bad for security, so please upgrade to Windows 10+ and MTA to 1.6+'''&lt;br /&gt;
&lt;br /&gt;
== 4 Deprecations ==&lt;br /&gt;
These changes will take effect in this version and scripts may need to be manually upgraded when updating:&lt;br /&gt;
* Changed [[base64Encode]] and [[base64Decode]] to throw a warning on use, please upgrade to [[encodeString]] and [[decodeString]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/30a83b0af164fb6920a2a60e089d08a6f5622f7d 30a83b0] by '''Nico834''')&lt;br /&gt;
* Changed [[setHelicopterRotorSpeed]] and [[getHelicopterRotorSpeed]] to throw a warning on use, please upgrade to [[setVehicleRotorSpeed]] and [[getVehicleRotorSpeed]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/82000c34830b51ace2d14e39f3b487feb1aac1da 82000c3] by '''FileEX''')&lt;br /&gt;
* Changes [[setPedOnFire]] and [[isPedOnFire]] to throw a warning on use, please upgrade to [[setElementOnFire]] and [[isElementOnFire]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/7ad96e2e78fe41f8924d3f105b1683f7363c6fcb 7ad96e2] by '''FileEX''')&lt;br /&gt;
* Changes [[removeAllGameBuildings]] and [[restoreAllGameBuildings]] to throw a warning on use, please upgrade to [[removeGameWorld]] and [[restoreGameWorld]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/d7adae68791ce237704acc06bf794b5fbda96f95#diff-93c130ddb85da32121129a437ac5b28ba16fa17f6e3506e4cddfb7bc3d8eb9fbR180 d7adae6] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
== Notable Changes ==&lt;br /&gt;
* Support for Discord Rich Presence ([https://github.com/multitheftauto/mtasa-blue/commit/fdaa3aca3e233c7aba69d0fd5f85e78288a4401a fdaa3ac], [https://github.com/multitheftauto/mtasa-blue/commit/ef26810df4542283fee8edcc165bc9be22f2ca98 ef26810], [https://github.com/multitheftauto/mtasa-blue/commit/acfbd40df1ff1432ea1d6663c005d43fce22899c acfbd40] by '''znjvder''', '''tederis''', '''patrikjuvonen''' and '''Deihim007''')&lt;br /&gt;
* Added support for [[Building]]'s ([https://github.com/multitheftauto/mtasa-blue/commit/81242edb9295efbf4bf8b198b12d577a0877aec2 81242ed], [https://github.com/multitheftauto/mtasa-blue/commit/eb6b18a5d49a7f0f34bdbf42b15f933e42876cf8 eb6b18a] by '''TheNormalnij''')&lt;br /&gt;
* Added the ability to generate a nickname ([https://github.com/multitheftauto/mtasa-blue/commit/12c50eee66898771244074a3a44818dab36a7ac3 12c50ee] by '''Nico834''')&lt;br /&gt;
* Added ''meta.xml'' loading files pattern ([https://github.com/multitheftauto/mtasa-blue/commit/90e2737d0a5eb12f34d2fd3c1f270bedf34cda35 90e2737] by '''W3lac3''')&lt;br /&gt;
* Added world properties (time cycle and weather related features) with new functions: [[setWorldProperty]], [[getWorldProperty]], [[resetWorldProperty]] ([https://github.com/multitheftauto/mtasa-blue/commit/a75f1e9a03e74f7c9d4ae9e5aef8433af84d5ea2 a75f1e9] by '''Samr46''')&lt;br /&gt;
* Added file-system related functions (list files and folders in directories) ([https://github.com/multitheftauto/mtasa-blue/commit/74781c6295b5b6dc81cd95d4cfab7900d88d7524 74781c6] by '''Tracer''')&lt;br /&gt;
* Added the ability to change the color and size of the target arrow in the checkpoint marker ([https://github.com/multitheftauto/mtasa-blue/commit/071378ec4326408a9520c79c96befca995d097f6 071378e] by '''FileEX''')&lt;br /&gt;
* Added the ability to change the alpha of checkpoint and arrow marker ([https://github.com/multitheftauto/mtasa-blue/commit/7988852cf3af9e78f662d76544dc00db408b5c87 7988852] by '''FileEX''')&lt;br /&gt;
* Fixed weapon issues when using the jetpack ([https://github.com/multitheftauto/mtasa-blue/commit/180fbc0b5fdba95450e7a519f78f7588849349bf 180fbc0], [https://github.com/multitheftauto/mtasa-blue/commit/a68c2c4232c28c6ba5595a814b89be976c4fa9c3 a68c2c4] by '''FileEX''')&lt;br /&gt;
* Fixed vehicle windows not being visible from the inside when the lights are on ([https://github.com/multitheftauto/mtasa-blue/commit/934c1d6cfef19902cc391c896bbe2f80ba5a4f70 934c1d6] by '''FileEX''')&lt;br /&gt;
* Fixed old [[setElementModel]] memory leak ([https://github.com/multitheftauto/mtasa-blue/commit/4e7afa2586c6992a75ac5312378c1096d87148ae 4e7afa2] by '''tederis''')&lt;br /&gt;
* Enabled WebGL (GPU Acceleration) in CEF ([https://github.com/multitheftauto/mtasa-blue/commit/026301168d2cd8239650a4f0aa33ff0be6d752dc 0263011] by '''TFP-dev''')&lt;br /&gt;
* Refactored '''Quick Connect button''' ([https://github.com/multitheftauto/mtasa-blue/commit/5b59e2236b30ec696ac1c05f8bb4e509ec06c0f7 5b59e22] by '''Fernando-A-Rocha''')&lt;br /&gt;
* Added setting to save camera photos in documents folder ([https://github.com/multitheftauto/mtasa-blue/commit/3419b9b7a20e3d1893d673a2a07ee1a0efda1bd5 3419b9b] by '''ffsPLASMA''')&lt;br /&gt;
* Added HUD customization ([https://github.com/multitheftauto/mtasa-blue/commit/5ea0e0fb23b21750207b23191db92562cf9b822c 5ea0e0f] by '''FileEX''')&lt;br /&gt;
* Added sync peds/players animations for new players ([https://github.com/multitheftauto/mtasa-blue/commit/b32eafc70816ece8ad995d98d380d8f6e9950475 b32eafc] by '''FileEX''')&lt;br /&gt;
* From now on, animation progress is preserved even after a restream; the animation will not start from the beginning. ([https://github.com/multitheftauto/mtasa-blue/commit/ad0d6bfdd7bf56b78f7c8c1b9a60597ef9b6dca3 ad0d6bf] by '''FileEX''')&lt;br /&gt;
* Added ability to replace CJ clothing models ([https://github.com/multitheftauto/mtasa-blue/commit/6b823653ecf68e181de91392d5d8931488f90f20 6b82365] by '''W3lac3''')&lt;br /&gt;
* New MTA splash window ([https://github.com/multitheftauto/mtasa-blue/commit/215173eeb1e015c0381ce94f95429c36ab1b4430 215173e] by '''botder''')&lt;br /&gt;
* Fixed multiple damage instances in certain areas during explosions ([https://github.com/multitheftauto/mtasa-blue/commit/3bce4080ec66a993096f9e7fb039cc7d5d0d8175 3bce408] by '''FileEX''')&lt;br /&gt;
* From now on, before disconnecting from the server using the main menu, you will be asked to confirm if you really want to do it ([https://github.com/multitheftauto/mtasa-blue/commit/6aa763fb79701c57402fccca9ae6c0f396fb8f3c 6aa763f] by '''tonievalue''')&lt;br /&gt;
&lt;br /&gt;
== Statistics ==&lt;br /&gt;
&amp;lt;section show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
These are some statistics since the [[Changes in 1.6.0|previous release]].&lt;br /&gt;
* This is the '''28&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt;''' 1.x.x release&lt;br /&gt;
* '''{{date difference|2023|06|16}}''' days&lt;br /&gt;
* '''39''' new functions&lt;br /&gt;
* '''12''' new events&lt;br /&gt;
* '''4''' deprecations&lt;br /&gt;
* '''50+''' bug fixes and changes&lt;br /&gt;
* '''734''' commits ([https://github.com/multitheftauto/mtasa-blue/compare/1.6.0...master mtasa-blue])  ([https://github.com/multitheftauto/mtasa-resources/compare/1.6.0...master mtasa-resources])&lt;br /&gt;
* '''78''' new open GitHub issues ([https://github.com/multitheftauto/mtasa-blue/issues?q=is%3Aopen+is%3Aissue+created%3A2023-06-16..2024-10-01 see list])&lt;br /&gt;
* '''29''' resolved GitHub issues ([https://github.com/multitheftauto/mtasa-blue/issues?q=is%3Aclosed+is%3Aissue+milestone%3A%221.6.1%22 see list])&lt;br /&gt;
* '''28''' closed GitHub issues ([https://github.com/multitheftauto/mtasa-blue/issues?q=is%3Aclosed+is%3Aissue+closed%3A2023-06-16..2024-10-01+no%3Amilestone+-label%3Ainvalid see list])&lt;br /&gt;
* '''30''' new open GitHub pull requests ([https://github.com/multitheftauto/mtasa-blue/pulls?q=is%3Aopen+is%3Apr+created%3A2023-06-16..2024-10-01 see list])&lt;br /&gt;
* '''81''' merged GitHub pull requests ([https://github.com/multitheftauto/mtasa-blue/pulls?q=is%3Apr+is%3Amerged+milestone%3A%221.6.1%22 see list])&lt;br /&gt;
* '''26''' closed GitHub pull requests ([https://github.com/multitheftauto/mtasa-blue/pulls?q=is%3Apr+is%3Aunmerged+closed%3A2023-06-16..2024-10-01 see list])&lt;br /&gt;
* '''2+''' contributors of which '''0+''' are new ([https://github.com/multitheftauto/mtasa-blue/graphs/contributors?from=2023-06-16&amp;amp;to=2024-10-01&amp;amp;type=c see list])&lt;br /&gt;
* '''100+''' total contributors ([https://github.com/multitheftauto/mtasa-blue/graphs/contributors see list])&lt;br /&gt;
* '''3''' vendor updates&lt;br /&gt;
&lt;br /&gt;
&amp;lt;sub&amp;gt;'''Note:''' Last update to these statistics was made {{date difference human friendly|2024|04|04}}.&amp;lt;/sub&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 86 New Features ==&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Added new ''special world properties'' to [[setWorldSpecialPropertyEnabled]] function&lt;br /&gt;
:* Added '''fireballdestruct''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
:* Added '''roadsignstext''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/4a746eca1b5a546a19344a76573a5108ff9d79e6 4a746ec] by '''FileEX''')&lt;br /&gt;
:* Added '''extendedwatercannons''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/13a53959f52c978b416c00b428938f82818b2312 13a5395] by '''FileEX''')&lt;br /&gt;
:* Added '''tunnelweatherblend''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/9a0790ec7fab1efb7817eead371744fcd47da5c5 9a0790e] by ''''gta191977649''')&lt;br /&gt;
:* Added '''ignorefirestate''' special world proeprty ([https://github.com/multitheftauto/mtasa-blue/commit/46f3580fbd8ea5cf48c14cf8fee0bd6eb6691854 46f3580] by '''FileEX''')&lt;br /&gt;
:* Added '''flyingcomponents''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/5ee641436821ae8a59484ac721a4ec929d5cc152 5ee6414] by '''FileEX''')&lt;br /&gt;
:* Added '''vehicleburnexplosions''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/88d303c0bbcc0ed4fee958df2d16ace562ce0108 88d303c] by '''samr46''')&lt;br /&gt;
:* Added '''vehicle_engine_autostart''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/8b3f3440f8bc485f90d466a3fe6f3e5819de9c2f 8b3f344] by '''samr46''')&lt;br /&gt;
&lt;br /&gt;
* Added new ''glitches'' to [[setGlitchEnabled]] function&lt;br /&gt;
:* Added '''vehicle_rapid_stop''' glitch ([https://github.com/multitheftauto/mtasa-blue/commit/3f5801e65d8a51d112b686485d4a2491151c3311 3f5801e], [https://github.com/multitheftauto/mtasa-blue/commit/ef792d6af62443f97014621334c7188dddb4ef29 ef792d6] by '''samr46''' and '''Merlin''')&lt;br /&gt;
&lt;br /&gt;
* New '''file''' functions&lt;br /&gt;
:* Added [[fileGetContents]] ([https://github.com/multitheftauto/mtasa-blue/commit/22930d854ce67d84a4a3b65a61b98a9ffd3f9e38 22930d8] by '''botder''')&lt;br /&gt;
:* Added [[fileGetHash]] ([https://github.com/multitheftauto/mtasa-blue/commit/94f944f508b99b5d7e84fbb0be07a483e10517a9 94f944f] by '''botder''')&lt;br /&gt;
&lt;br /&gt;
* New and updated [[object]] functions&lt;br /&gt;
:* '''[Updated]''' Added [[isObjectMoving]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/7c939adb892c08836462a78cd9b987884cdb49ee 7c939ad] by '''FileEX''')&lt;br /&gt;
:* '''[Updated]''' Added [[breakObject]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/aa1a7853f46fc796a94f38b7df2a5293fb941ba2 aa1a785] by '''FileEX''')&lt;br /&gt;
:* '''[Updated]''' Added [[respawnObject]] and [[toggleObjectRespawn]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/9d65bb673c4df16def27e97a4af74d3b0c7eedc9 9d65bb6] by '''FileEX''')&lt;br /&gt;
:* '''[New]''' Added [[isObjectRespawnable]] ([https://github.com/multitheftauto/mtasa-blue/commit/9d65bb673c4df16def27e97a4af74d3b0c7eedc9 9d65bb6] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New '''file-path''' functions&lt;br /&gt;
:* Added [[pathListDir]], [[pathIsFile]] and [[pathIsDirectory]] ([https://github.com/multitheftauto/mtasa-blue/commit/74781c6295b5b6dc81cd95d4cfab7900d88d7524 74781c6] by '''Tracer''')&lt;br /&gt;
&lt;br /&gt;
* New [[marker]] functions&lt;br /&gt;
:* Added [[setMarkerTargetArrowProperties]] and [[getMarkerTargetArrowProperties]] ([https://github.com/multitheftauto/mtasa-blue/commit/071378ec4326408a9520c79c96befca995d097f6 071378e] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[timer]] functions&lt;br /&gt;
:* Added [[setTimerPaused]] and [[isTimerPaused]] ([https://github.com/multitheftauto/mtasa-blue/commit/69aa420f21fde3ac56e3d3bbc62ef0f060295c0a 69aa420] by '''jvstns''')&lt;br /&gt;
&lt;br /&gt;
* New and updated '''world''' functions&lt;br /&gt;
:* '''[New]''' Added [[resetWorldProperties]] ([https://github.com/multitheftauto/mtasa-blue/commit/6df889e78328b80f8e4bdc02f8761472cf87c54c 6df889e] by '''FileEX''')&lt;br /&gt;
:* '''[Updated]''' Added [[isWorldSpecialPropertyEnabled]] and [[setWorldSpecialPropertyEnabled]] also to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
&lt;br /&gt;
* New and updated [[vehicle]] functions&lt;br /&gt;
:* '''[New]''' Added [[spawnVehicleFlyingComponent]] ([https://github.com/multitheftauto/mtasa-blue/commit/9f54cfcd7a584f413db731052ebed921acfc71ea 9f54cfc] by '''FileEX''')&lt;br /&gt;
:* '''[Upated]''' Added [[setVehicleNitroActivated]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/e9e5819c394987de2b9a5d581c4df9fd47057d9d#diff-49b4b89bf4463f38e70a325131b4da66457d783b1401dde0ffbad723624f8612R130 e9e5819] by '''Proxy-99''')&lt;br /&gt;
:* '''[Updated]''' Added [[addVehicleSirens]] and [[removeVehicleSirens]] to client-side ([https://github.com/multitheftauto/mtasa-blue/commit/682cdca3c37248a9e725b461ba322db413653f25 682cdca] by '''Proxy-99''')&lt;br /&gt;
&lt;br /&gt;
* Updated [[player]] functions&lt;br /&gt;
:* Added [[getPlayerScriptDebugLevel]] to client-side ([https://github.com/multitheftauto/mtasa-blue/commit/8403da54ecfd20d6b9740fb79d90ac936d316112 8403da5] by '''Nico834''')&lt;br /&gt;
&lt;br /&gt;
* Updated [[ped]] functions&lt;br /&gt;
:* Added [[isPedReloadingWeapon]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/e71f4828b46bb69b9622a11d0f700a79f986ee9b e71f482] by '''Nico834''')&lt;br /&gt;
&lt;br /&gt;
* New [[element]] functions&lt;br /&gt;
:* Added [[setElementOnFire]] and [[isElementOnFire]] ([https://github.com/multitheftauto/mtasa-blue/commit/7ad96e2e78fe41f8924d3f105b1683f7363c6fcb 7ad96e2] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
=== Client ===&lt;br /&gt;
====Functions====&lt;br /&gt;
* New '''engine''' functions &lt;br /&gt;
:* Added '''streaming''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/7ffc31243c1dbca8ed5e7b0f8c05da239aa918bd 7ffc312], [https://github.com/multitheftauto/mtasa-blue/commit/6c86ebbf0801c45d5e0bcbb9d9f2e8fd55525b15 6c86ebb], [https://github.com/multitheftauto/mtasa-blue/commit/3c44dc5dcde0a5f98ff470ce9bc64443d47de807 3c44dc5] by '''Pirulax''')&lt;br /&gt;
::* [[engineStreamingSetMemorySize]]&lt;br /&gt;
::* [[engineStreamingGetMemorySize]]&lt;br /&gt;
::* [[engineStreamingRestoreMemorySize]]&lt;br /&gt;
::* [[engineStreamingSetBufferSize]]&lt;br /&gt;
::* [[engineStreamingGetBufferSize]]&lt;br /&gt;
::* [[engineStreamingRestoreBufferSize]]&lt;br /&gt;
::* [[engineStreamingSetModelCacheLimits]]&lt;br /&gt;
:* Added '''model-streaming''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/008eaa7e36ae74bbab7c5bc9861d8f0f890eb945 008eaa7] by '''TheNormalnij''')&lt;br /&gt;
::* [[engineStreamingRequestModel]]&lt;br /&gt;
::* [[engineStreamingReleaseModel]]&lt;br /&gt;
::* [[engineStreamingGetModelLoadState]]&lt;br /&gt;
:* Added new '''TXD''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/3e9a3735a8022a0acabaa3041c8a3f8d91e547b7 3e9a373] by '''TheNormalnij''')&lt;br /&gt;
::* [[engineSetModelTXDID]]&lt;br /&gt;
::* [[engineResetModelTXDID]]&lt;br /&gt;
:* Added '''pools''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/bdf12215d1f6e73d87f5cb0881049aa224b46b65 bdf1221] by '''TheNormalnij''')&lt;br /&gt;
::* [[engineGetPoolCapacity]]&lt;br /&gt;
::* [[engineSetPoolCapacity]]&lt;br /&gt;
::* [[engineGetPoolDefaultCapacity]]&lt;br /&gt;
::* [[engineGetPoolUsedCapacity]]&lt;br /&gt;
:* Added [[enginePreloadWorldArea]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b72fb9d3c9e6813cdf56e53d1a1e72958abd3cf 5b72fb9] by '''MegadreamsBE''')&lt;br /&gt;
&lt;br /&gt;
* New functions for '''Discord RPC''' ([https://github.com/multitheftauto/mtasa-blue/commit/fdaa3aca3e233c7aba69d0fd5f85e78288a4401a fdaa3ac], [https://github.com/multitheftauto/mtasa-blue/commit/ef26810df4542283fee8edcc165bc9be22f2ca98 ef26810], [https://github.com/multitheftauto/mtasa-blue/commit/acfbd40df1ff1432ea1d6663c005d43fce22899c acfbd40] by '''znjvder''', '''tederis''', '''patrikjuvonen''' and '''Deihim007''')&lt;br /&gt;
:* [[setDiscordApplicationID]]&lt;br /&gt;
:* [[setDiscordRichPresenceDetails]]&lt;br /&gt;
:* [[setDiscordRichPresenceState]]&lt;br /&gt;
:* [[setDiscordRichPresenceAsset]]&lt;br /&gt;
:* [[setDiscordRichPresenceSmallAsset]]&lt;br /&gt;
:* [[setDiscordRichPresenceButton]]&lt;br /&gt;
:* [[resetDiscordRichPresenceData]]&lt;br /&gt;
:* [[isDiscordRichPresenceConnected]]&lt;br /&gt;
:* [[setDiscordRichPresencePartySize]]&lt;br /&gt;
:* [[setDiscordRichPresenceStartTime]]&lt;br /&gt;
:* [[setDiscordRichPresenceEndTime]]&lt;br /&gt;
:* [[getDiscordRichPresenceUserID]]&lt;br /&gt;
&lt;br /&gt;
* New [[building]] functions ([https://github.com/multitheftauto/mtasa-blue/commit/81242edb9295efbf4bf8b198b12d577a0877aec2 81242ed], [https://github.com/multitheftauto/mtasa-blue/commit/eb6b18a5d49a7f0f34bdbf42b15f933e42876cf8 eb6b18a] by '''TheNormalnij''')&lt;br /&gt;
:* [[createBuilding]]&lt;br /&gt;
:* '''[Deprecated]''' [[removeAllGameBuildings]] &lt;br /&gt;
:* '''[Deprecated]''' [[restoreAllGameBuildings]] &lt;br /&gt;
&lt;br /&gt;
* New '''world''' functions&lt;br /&gt;
:* Added [[processLineAgainstMesh]] ([https://github.com/multitheftauto/mtasa-blue/commit/acb80a3945d0d5e0230b8a41394a3fe3e70b8d0b acb80a3] by '''Pirulax''')&lt;br /&gt;
:* Added '''volumetric shadows''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/6c93a49c4c2381f4ce84df195d98d36372a47d37 6c93a49] by '''Proxy-99''')&lt;br /&gt;
:::* [[setVolumetricShadowsEnabled]]&lt;br /&gt;
:::* [[isVolumetricShadowsEnabled]]&lt;br /&gt;
:::* [[resetVolumetricShadows]]&lt;br /&gt;
:* Added [[testSphereAgainstWorld]] ([https://github.com/multitheftauto/mtasa-blue/commit/aa90aa5f31e59df455af33b49e3eee5e4f107bfd aa90aa5] by '''FileEX''')&lt;br /&gt;
:* Added [[removeGameWorld]] and [[restoreGameWorld]] ([https://github.com/multitheftauto/mtasa-blue/commit/d7adae68791ce237704acc06bf794b5fbda96f95 d7adae6] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
* New '''drawing''' functions&lt;br /&gt;
:* Added [[dxDrawModel3D]] ([https://github.com/multitheftauto/mtasa-blue/commit/f886a359dd4a680c080da7f132db0527116b5d7a f886a35], [https://github.com/multitheftauto/mtasa-blue/commit/04ef14bbf2182b356155f28d4ed972b0f293632f 04ef14b] by '''CrosRoad95''' and '''tederis''')&lt;br /&gt;
&lt;br /&gt;
* New '''effects/fx''' functions&lt;br /&gt;
:* Added [[fxCreateParticle]] ([https://github.com/multitheftauto/mtasa-blue/commit/8f2730d2e260c3319cb51101c6aedb45e22bbd89 8f2730d] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[ped]] functions&lt;br /&gt;
:* Added [[resetPedVoice]] ([https://github.com/multitheftauto/mtasa-blue/commit/18986a4542db5eb72f6d0dfffb80cb8bb6eb1442 18986a4] by '''Tracer''')&lt;br /&gt;
:* Added new animation features ([https://github.com/multitheftauto/mtasa-blue/commit/aa0591c6f7b529a27b4ed8667e1dc70e68bd9386 aa0591c] by '''Tracer''')&lt;br /&gt;
::* [[getPedAnimationProgress]]&lt;br /&gt;
::* [[getPedAnimationSpeed]]&lt;br /&gt;
::* [[getPedAnimationLength]]&lt;br /&gt;
:* Added [[killPedTask]] ([https://github.com/multitheftauto/mtasa-blue/commit/e4a502bc7619dc3913c70d169f6105ecfb0633ff e4a502b] by '''Proxy-99''')&lt;br /&gt;
:* Added ped shadow features ([https://github.com/multitheftauto/mtasa-blue/commit/26d18288730fd3a7a854152da60c9acd18ab6c6f 26d1828] by '''Proxy-99''')&lt;br /&gt;
::* [[setDynamicPedShadowsEnabled]]&lt;br /&gt;
::* [[isDynamicPedShadowsEnabled]]&lt;br /&gt;
::* [[resetDynamicPedShadows]]&lt;br /&gt;
:* Added [[playPedVoiceLine]] ([https://github.com/multitheftauto/mtasa-blue/commit/7067ac1a73bb0b8c5a1f37794504a00e9703332e 7067ac1] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[player]] functions&lt;br /&gt;
:* Added [[isPlayerCrosshairVisible]] ([https://github.com/multitheftauto/mtasa-blue/commit/03e851a2f5ff2d917ba3c7a1c7577fdb5b8d2a6f 03e851a], [https://github.com/multitheftauto/mtasa-blue/commit/5f21c32fb0725140d6d03476e08de330d429b55a 5f21c32] by '''FileEX''')&lt;br /&gt;
:* New '''HUD''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/5ea0e0fb23b21750207b23191db92562cf9b822c 5ea0e0f] by '''FileEX''')&lt;br /&gt;
::* [[setPlayerHudComponentProperty]]&lt;br /&gt;
::* [[getPlayerHudComponentProperty]]&lt;br /&gt;
::* [[resetPlayerHudComponentProperty]]&lt;br /&gt;
&lt;br /&gt;
* New [[vehicle]] functions&lt;br /&gt;
:* Added [[setVehicleWheelsRotation]] ([https://github.com/multitheftauto/mtasa-blue/commit/aeb113d269fffee7d9ac435ce87b51e905e9efa6 aeb113d] by '''gta191977649''')&lt;br /&gt;
:* Added [[getVehicleEntryPoints]] ([https://github.com/multitheftauto/mtasa-blue/commit/bf588c163cd5bc134771e3842a6585212f06307f bf588c1] by '''MegadreamsBE''')&lt;br /&gt;
:* Added [[setVehicleSmokeTrailEnabled]] and [[isVehicleSmokeTrailEnabled]] for planes ([https://github.com/multitheftauto/mtasa-blue/commit/a5dfc5223358127299511b618ab29da08ff23030 a5dfc52] by '''Proxy-99''')&lt;br /&gt;
:* Added [[setVehicleRotorState]] and [[getVehicleRotorState]] for planes and helicopters ([https://github.com/multitheftauto/mtasa-blue/commit/c7644f2773c37c4e3d40b00807f2e962daca83b6#diff-9a175949acc865a4deea435d73c2082716ab68c6811ef1a657783f3d420dc00fR165 c7644f2] by '''FileEX''')&lt;br /&gt;
:* Added '''vehicle audio''' functions: ([https://github.com/multitheftauto/mtasa-blue/commit/53ee579670ef4ecec28f44627ff99321bba48cbd 53ee579] by '''TheNormalnij''')&lt;br /&gt;
::* [[setVehicleModelAudioSetting]]&lt;br /&gt;
::* [[getVehicleModelAudioSettings]]&lt;br /&gt;
::* [[resetVehicleModelAudioSettings]]&lt;br /&gt;
::* [[setVehicleAudioSetting]]&lt;br /&gt;
::* [[getVehicleAudioSettings]]&lt;br /&gt;
::* [[resetVehicleAudioSettings]]&lt;br /&gt;
&lt;br /&gt;
* New '''camera''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/40ec398bb15e775d1552286eb86fe7aa0dffefa4 40ec398], [https://github.com/multitheftauto/mtasa-blue/commit/d9c2793de2a9f0782ec59cf0ef9907abf935d421 d9c2793] by '''Tracer''')&lt;br /&gt;
:* [[shakeCamera]]&lt;br /&gt;
:* [[resetShakeCamera]]&lt;br /&gt;
&lt;br /&gt;
* New '''game-time''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/b8b7ce555e2f0f0dd74425ac7c91786374513bee b8b7ce5] by '''Proxy-99''')&lt;br /&gt;
:* [[setTimeFrozen]]&lt;br /&gt;
:* [[isTimeFrozen]]&lt;br /&gt;
:* [[resetTimeFrozen]]&lt;br /&gt;
&lt;br /&gt;
* New [[element]] functions&lt;br /&gt;
:* Added [[setElementBoneQuaternion]] and [[getElementBoneQuaternion]] ([https://github.com/multitheftauto/mtasa-blue/commit/10098b0984bf5d5955ea1764e28f616c8a60714f 10098b0] by '''gownosatana''')&lt;br /&gt;
:* Added [[setElementLighting]] ([https://github.com/multitheftauto/mtasa-blue/commit/90fd98a6381991cfa926a9a65b9b934d0343e2b1 90fd98a] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[browser]] functions&lt;br /&gt;
:* Added [[isBrowserGPUEnabled]] ([https://github.com/multitheftauto/mtasa-blue/commit/bfdfdb5f44726df85626e6e3e06c2a319c0c8962 bfdfdb5] by '''Lpsd''')&lt;br /&gt;
&lt;br /&gt;
* New '''weapons''' functions&lt;br /&gt;
:* Added [[setWeaponRenderEnabled]] &amp;amp; [[isWeaponRenderEnabled]] ([https://github.com/multitheftauto/mtasa-blue/commit/efed59b7dc7b076219f1c8a868ef8aa028582127 efed59b] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
====Events====&lt;br /&gt;
* Added [[onClientCoreCommand]] ([https://github.com/multitheftauto/mtasa-blue/commit/b2cf02943924c4972d2a695cdbfd7c9873fc3cbb b2cf029] by '''Pieter-Dewachter''')&lt;br /&gt;
&lt;br /&gt;
* Added [[onClientBrowserConsoleMessage]] ([https://github.com/multitheftauto/mtasa-blue/pull/3676 #3676], [https://github.com/multitheftauto/mtasa-blue/commit/d296a653c5ce2ecfd4f7150d74391b703b773baf d296a65] by '''gownosatana''' and '''Tracer''')&lt;br /&gt;
&lt;br /&gt;
=== Server ===&lt;br /&gt;
====Functions====&lt;br /&gt;
* New [[ACL]] functions&lt;br /&gt;
:* Added [[aclObjectGetGroups]] ([https://github.com/multitheftauto/mtasa-blue/commit/cf46bd8487bdb2d0cafdab1f43936357f670fe10 cf46bd8] by '''Tracer''')&lt;br /&gt;
&lt;br /&gt;
* New '''acl-account''' functions&lt;br /&gt;
:* Added [[getAccountType]] ([https://github.com/multitheftauto/mtasa-blue/commit/545f54b6ae0bfc721abba12402ad3787ed9ae811 545f54b] by '''Tracer''')&lt;br /&gt;
:* Added [[setAccountSerial]] ([https://github.com/multitheftauto/mtasa-blue/commit/a0c2e410f225ebd245a7c5b8031812cf94360097 a0c2e41] by '''camargo2019''')&lt;br /&gt;
&lt;br /&gt;
* New [[vehicle]] functions&lt;br /&gt;
:* Added new vehicle respawn functions ([https://github.com/multitheftauto/mtasa-blue/commit/1ff7137fd4477626d7ef4abfb1c696872cdf0eab 1ff7137], [https://github.com/multitheftauto/mtasa-blue/commit/d93287de761e568400b3b555a277e4ead6546ca3 d93287d] by '''Tracer''')&lt;br /&gt;
::* [[isVehicleRespawnable]]&lt;br /&gt;
::* [[getVehicleRespawnDelay]]&lt;br /&gt;
::* [[getVehicleIdleRespawnDelay]]&lt;br /&gt;
&lt;br /&gt;
* Added [[createBuilding]] to server-side also ([https://github.com/multitheftauto/mtasa-blue/commit/6e221298f4998c576ebf5a783cd0761b89117a7a 6e22129] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
* Security improvements for element-data system ([https://github.com/multitheftauto/mtasa-blue/commit/750d09adb9fd35f4c1b7786966b7ca292e35c200 750d09a] by '''TheNormalnij''')&lt;br /&gt;
:* Added [[onPlayerChangesProtectedData]] event&lt;br /&gt;
:* Added '''elementdata_whitelisted''' tag to the '''mtaserver.conf'''&lt;br /&gt;
:* Added '''clientChangesPolicy''' argument to the [[setElementData]].&lt;br /&gt;
&lt;br /&gt;
* Added new [[Server_mtaserver.conf|mta_server.conf]] tags:&lt;br /&gt;
&amp;lt;!--:* Added object specific contact radius and limit contact check. This can be set in the [[server_mtaserver.conf#object_contact_sync_radius|mtaserver.conf]]([https://github.com/multitheftauto/mtasa-blue/commit/6085796cafd1008ed4a74eae614d651c6c734741 6085796] by '''MegadreamsBE''')--&amp;gt;&lt;br /&gt;
:* Added [[Server_mtaserver.conf#vehicle_contact_sync_radius#vehicle_contact_sync_radius|vehicle_contact_sync_radius]] tag ([https://github.com/multitheftauto/mtasa-blue/commit/e3338c2fbbdb500c4ce28dc0677ceadef1f1ca4c e3338c2] by '''MegadreamsBE''')&lt;br /&gt;
:* Added [[Server_mtaserver.conf#vehicle_contact_sync_radius#check_duplicate_serials|check_duplicate_serials]] tag ([https://github.com/multitheftauto/mtasa-blue/commit/e094942b75117a49cae8c35d6508f37d0cf511fe e094942] by '''Nico834''')&lt;br /&gt;
:* Added [[Server_mtaserver.conf#vehicle_contact_sync_radius#elementdata_whitelisted|elementdata_whitelisted]] tag [https://github.com/multitheftauto/mtasa-blue/commit/750d09adb9fd35f4c1b7786966b7ca292e35c200 750d09a] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
====Events====&lt;br /&gt;
* Added [[onExplosion]] event ([https://github.com/multitheftauto/mtasa-blue/commit/9edffc4997579583407e8c2910264b344cf626a3 9edffc4] by '''botder''')&lt;br /&gt;
* Added [[onPlayerProjectileCreation]] and [[onPlayerDetonateSatchels]] events ([https://github.com/multitheftauto/mtasa-blue/commit/bc404021f66228fb00f1f136a606425da6075daa bc40402] by '''Zangomangu''')&lt;br /&gt;
* Added [[onPlayerTriggerEventThreshold]] event ([https://github.com/multitheftauto/mtasa-blue/commit/eae47fe2f432d9053c425fd515ea27f963c254ec eae47fe] by '''Lpsd''')&lt;br /&gt;
* Added [[onResourceStateChange]] ([https://github.com/multitheftauto/mtasa-blue/commit/cfe9cd9d0006580e7e70dc9e93672e3d1d3b9836 cfe9cd9] by '''Tracer''')&lt;br /&gt;
* Added [[onPlayerTeamChange]] ([https://github.com/multitheftauto/mtasa-blue/commit/c4e18c618db299ea05f5395c798f2a7d6515f5ea c4e18c6] by '''esmail9900''')&lt;br /&gt;
* Added [[onAccountCreate]] and [[onAccountRemove]] ([https://github.com/multitheftauto/mtasa-blue/commit/545f54b6ae0bfc721abba12402ad3787ed9ae811 545f54b] by '''Tracer''')&lt;br /&gt;
* Added [[onPlayerTriggerInvalidEvent]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b4122d35f725e4d258b408253c93e7cbd2ec783 5b4122d] by '''Lpsd''')&lt;br /&gt;
* Added [[onPlayerChangesWorldSpecialProperty]] event ([https://github.com/multitheftauto/mtasa-blue/commit/bbf511d4c5a94fc42d4ead201446fcef8ae430ec bbf511d] by '''Nico834''')&lt;br /&gt;
* Added [[onPlayerChangesProtectedData]] event ([https://github.com/multitheftauto/mtasa-blue/commit/750d09adb9fd35f4c1b7786966b7ca292e35c200 750d09a] by '''TheNormalnij''')&lt;br /&gt;
* Added [[onShutdown]] ([https://github.com/multitheftauto/mtasa-blue/commit/aa20c7d279ac92f1f98c54e79fda7fe00de64e50 aa20c7d] by '''FileEX''')&lt;br /&gt;
* Added [[onPedWeaponReload]] and [[onPlayerWeaponReload]] ([https://github.com/multitheftauto/mtasa-blue/commit/e71f4828b46bb69b9622a11d0f700a79f986ee9b e71f482] by '''Nico834''')&lt;br /&gt;
* Added [[onPlayerTeleport]] ([https://github.com/multitheftauto/mtasa-blue/commit/4000ea4edb37d2d2caeb60a5977f7a38c8a22f06 a38e6ac] by '''imfelipedev''')&lt;br /&gt;
* Added [[onAccountNameChange]] ([https://github.com/multitheftauto/mtasa-blue/commit/078d46b13164c940f3a713039e1a1be6d52c6c76 078d46b] by '''Davis22d''')&lt;br /&gt;
&lt;br /&gt;
== 77 Changes and Bug Fixes ==&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Fixed random toggle of world special properties ([https://github.com/multitheftauto/mtasa-blue/commit/bf95b1d16e31f36899350e2acac4bb8adfad5cdd bf95b1d] by '''samr46''')&lt;br /&gt;
* Many debugscript fixes&lt;br /&gt;
:* Fixed [[onClientDebugMessage]]/[[onDebugMessage]] recognizing level 4 as 0 ([https://github.com/multitheftauto/mtasa-blue/commit/783971efbdfcae622dbc03fd7647c337c2a3a306 783971e] by '''Tracer''')&lt;br /&gt;
:* Fixed outputDebugString level 4 colors ([https://github.com/multitheftauto/mtasa-blue/commit/5d4d7df3b8ff703cf954f3af394c811c489dcb18 5d4d7df] by '''MegadreamsBE''')&lt;br /&gt;
:* Fixed [[outputDebugString]] level 4 not being logged ([https://github.com/multitheftauto/mtasa-blue/commit/1951a5e62d35b2cf4ec292d294f8c818b8463418 1951a5e] by '''MegadreamsBE''')&lt;br /&gt;
:* Fixed outputDebugString with level 4 not showing ([https://github.com/multitheftauto/mtasa-blue/commit/b459973f8ad00aff79042a338a70700a21b426dc b459973] by '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
* Ped sync improvements ([https://github.com/multitheftauto/mtasa-blue/commit/f5b599c9f45777f924f7980cadb2d3cc6431d8b8 f5b599c] by '''tederis''')&lt;br /&gt;
* Fixed &amp;quot;Using setElementHealth on a dead ped makes it invincible&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/836888379dc3e434752ad20c10a8d7d33ffc65a2 8368883] by '''FileEX''')&lt;br /&gt;
* Fixed setting player model resets their current weapon slot ([https://github.com/multitheftauto/mtasa-blue/commit/f7ce562b645cb05a18658df62d093b753b881bb9 f7ce562] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where ''&amp;quot;arrow&amp;quot;'' and ''&amp;quot;checkpoint&amp;quot;'' markers ignored the alpha color ([https://github.com/multitheftauto/mtasa-blue/commit/7988852cf3af9e78f662d76544dc00db408b5c87 7988852] by '''FileEX''')&lt;br /&gt;
* Fixed the goggle effect resetting after changing skin ([https://github.com/multitheftauto/mtasa-blue/commit/1dd291409f791891b54ccf6b1d1cebe08cff13c0 1dd2914] by '''Proxy-99''')&lt;br /&gt;
* Fixed satchels detaching after changing skin ([https://github.com/multitheftauto/mtasa-blue/commit/d93dbf2ca598bf3508364bc7c6337d82c3d9ccb2 d93dbf2] by '''FileEX''')&lt;br /&gt;
* Added '''resourceName''' global variable and added current resource as default argument for [[getResourceName]] ([https://github.com/multitheftauto/mtasa-blue/commit/49fb6c68a27ad85e5abcd563f4c4f8c568305fdb 49fb6c6] by '''Nico834''')&lt;br /&gt;
* Added new parameters '''animGroup''' &amp;amp; '''animID''' for wasted events [[onPlayerWasted]], [[onPedWasted]], [[onClientPlayerWasted]] ([https://github.com/multitheftauto/mtasa-blue/commit/ecd6ed98ca129e7f45bda14384a503bee09495a7 ecd6ed9] by '''Nico834''' and '''G-Moris''')&lt;br /&gt;
* Added optional '''ignoreAlphaLimits''' argument for [[createMarker]] to maintain backward compatibility after adding the ability to change alpha for arrow and checkpoint markers ([https://github.com/multitheftauto/mtasa-blue/commit/121048cb9a14c28dcefca9bf2d4e955ef920a087 121048c] by '''FileEX''')&lt;br /&gt;
* Added optional '''property''' argument for [[getVehicleHandling]] ([https://github.com/multitheftauto/mtasa-blue/commit/a08e38d6507fdc1c051c2b84727c83dd9c418649 a08e38d] by '''XJMLN''')&lt;br /&gt;
* Fixed health value issues ([https://github.com/multitheftauto/mtasa-blue/commit/612f9a6715059baa43182e891258d9c3ceb19591 612f9a6] by '''Tracer''')&lt;br /&gt;
* Fixed [[getTimerDetails]] negative remaining duration ([https://github.com/multitheftauto/mtasa-blue/commit/1c6cab5a94c8c6ff5cf9b1fc0c9bc04808c922f8 1c6cab5] by '''jvstns''')&lt;br /&gt;
* Fixed changing [[setElementCollisionsEnabled]] doesn't update contact element ([https://github.com/multitheftauto/mtasa-blue/commit/71c683f547aac34e876601d24c881227fe3ca05f 71c683f] by '''FileEX''')&lt;br /&gt;
* Removed ability to skip [[addDebugHook]] ([https://github.com/multitheftauto/mtasa-blue/commit/2fecd74fdd453efdcbdddfd8f3fa3c092640cf9f 2fecd74] by '''PlatinMTA''')&lt;br /&gt;
* Fixed hydraulics stopping working after using [[setVehicleHandling]] ([https://github.com/multitheftauto/mtasa-blue/commit/f96836397a075585d4d112eb7d0240f1abf361d4 f968363] by '''FileEX''')&lt;br /&gt;
* Fixed helicopter rotor unaffected by vehicle alpha ([https://github.com/multitheftauto/mtasa-blue/commit/55d39225254c0b9961c1423b0d5695beff20072b 55d3922] by '''FileEX''')&lt;br /&gt;
* Add '''spawnFlyingComponent &amp;amp; breakGlass''' arguments for [[setVehiclePanelState]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b69d700c848e36b2f427bbc6ba5b2c905592783 5b69d70] by '''FileEX''')&lt;br /&gt;
* Fixed armor synchronization ([https://github.com/multitheftauto/mtasa-blue/commit/583e675da976fbf90f45804ad834d8fe33c779a1 583e675] by '''Nico834''')&lt;br /&gt;
* Fixed jetpack disappearing after changing position and coming back after changing skin ([https://github.com/multitheftauto/mtasa-blue/commit/de26a9e98519350f0486290ce886595068c02470 de26a9e] by '''FileEX''')&lt;br /&gt;
* Added support for '''ZLIB''' compression to [[encodeString]] &amp;amp; [[decodeString]]. ([https://github.com/multitheftauto/mtasa-blue/commit/6230161f8d0c83b60aec3f4afa5be88dd213b88b 6230161] by '''samr46''')&lt;br /&gt;
* Fixed a bug where hex color codes were included in the chat message length. ([https://github.com/multitheftauto/mtasa-blue/commit/9a0b1d59233f7001e991262b4df9d1c17850dc08 9a0b1d5] by '''shadylua''')&lt;br /&gt;
&lt;br /&gt;
=== Client ===&lt;br /&gt;
* Update d3dcompiler_47.dll from CEF ([https://github.com/multitheftauto/mtasa-blue/commit/75a1a298113721343090a06d60394f63f64df9ca 75a1a29] and [https://github.com/multitheftauto/mtasa-blue/commit/6d8fd8cc2fe7377318583f70abf58dcdb7d09cb0 6d8fd8c] by '''patrikjuvonen''')&lt;br /&gt;
* Updated translations from Crowdin ([https://github.com/multitheftauto/mtasa-blue/commit/29baf29a0143706eb08ef76c4743a452a7f83600 29baf29] by '''patrikjuvonen''')&lt;br /&gt;
:* Added Azerbaijani to client languages&lt;br /&gt;
* Resolved cursor being invisible with main menu open in certain scenarios ([https://github.com/multitheftauto/mtasa-blue/commit/bb1f675e6fee0ca3967f05afb5d2592dec9459b2 bb1f675] by '''Lpsd''')&lt;br /&gt;
* Partially fixed screen flickering on high memory usage ([https://github.com/multitheftauto/mtasa-blue/commit/1a886460a9fab1041cfba38078ae544b0fa51240 1a88646] by '''Zangomangu''')&lt;br /&gt;
* Added ''texture hit info'' parameter to [[processLineOfSight]] ([https://github.com/multitheftauto/mtasa-blue/commit/86f3344d1371a9783c2c7b755b895160a03ff6cd 86f3344] by '''Pirulax''')&lt;br /&gt;
* Fixed CStreamingSA::GetUnusedStreamHandle ([https://github.com/multitheftauto/mtasa-blue/commit/38624a4c2d18f4b60064d49069d3bcd81fbb4385 38624a4] by '''tederis''')&lt;br /&gt;
* IMG count extension ([https://github.com/multitheftauto/mtasa-blue/commit/1a60f6094b6660d29cabae780e6fbea5f5f1abf2 1a60f60] by '''tederis''')&lt;br /&gt;
* Fixed a desync state after aborted carjacking ([https://github.com/multitheftauto/mtasa-blue/commit/3f510fcdc7722cdfcb2e09ea43990b56aa43162b 3f510fc] by '''Zangomangu''')&lt;br /&gt;
* Allowed allocating clump models ([https://github.com/multitheftauto/mtasa-blue/commit/428561f1ebab49b8370ef0f022510cd67e98ab59 428561f] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash in CEF init ([https://github.com/multitheftauto/mtasa-blue/commit/c782826c955dfbdbaa67852a245e1c601d6b9f2c c782826] by '''TheNormalnij''')&lt;br /&gt;
* Fixed &amp;quot;Changing vehicle model from doorless or &amp;quot;doorful&amp;quot; causes doors to fall off&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/d6659dae263e2883d9e479ca271f0e9c8e622f95 d6659da] by '''FileEX''')&lt;br /&gt;
* Fixed &amp;quot;Wheel visibility when using setVehicleWheelStates&amp;quot;  ([https://github.com/multitheftauto/mtasa-blue/commit/51c9257a427957642932a216bd76cb7de59fea1b 51c9257] by '''FileEX''')&lt;br /&gt;
* Added new world special property ''burnflippedcars'' ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
* Streaming buffer restore and fixes ([https://github.com/multitheftauto/mtasa-blue/commit/6c86ebbf0801c45d5e0bcbb9d9f2e8fd55525b15 6c86ebb] by '''Pirulax''')&lt;br /&gt;
* Fixed Unicode file path passed in CClientIMG ([https://github.com/multitheftauto/mtasa-blue/commit/c57f07bfad8b02953dbe7b2b6e9b9de08ba88226 c57f07b] by '''TheNormalnij''')&lt;br /&gt;
* Added new world special property ''fireballdestruct'' ([https://github.com/multitheftauto/mtasa-blue/commit/219ad73d600140724eefcf5ca4040ac417cdee12 219ad73] by '''samr46''')&lt;br /&gt;
* Fixed &amp;quot;Hide question box when hiding main menu&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/4beff0447f093c66594a5f32ad5e52c7d7188ce9 4beff04] by '''XJMLN''')&lt;br /&gt;
* Fixed engineFreeModel regression ([https://github.com/multitheftauto/mtasa-blue/commit/b52500e92fb2591c092a6e66121471f098a2e044 b52500e] by '''TheNormalnij''')&lt;br /&gt;
* Fixed assert when model info is missing ([https://github.com/multitheftauto/mtasa-blue/commit/d431e5e16120b63beafbfe69110da601d12a76bb d431e5e] by '''TheNormalnij''')&lt;br /&gt;
* Fixed engineFreeModel crashes ([https://github.com/multitheftauto/mtasa-blue/commit/c289c22fb9a13730b7fd793752d84adbf2b928ee c289c22] by '''TheNormalnij''')&lt;br /&gt;
* Filtered URLs in requestBrowserDomains with incorrect symbols ([https://github.com/multitheftauto/mtasa-blue/commit/74bbb068acc6757ff0e04d0c63b999236e51ce63 74bbb06] by '''TheNormalnij''')&lt;br /&gt;
* Fixed issues with ped shaders ([https://github.com/multitheftauto/mtasa-blue/commit/3bc1e6d98ab13a9e7db95cc616b4645dc761889b 3bc1e6d] by '''Merlin''')&lt;br /&gt;
* Fixed 3D primitives disappearing ([https://github.com/multitheftauto/mtasa-blue/commit/04a1e2ba9157e4a1a91297f91554b72a87bf0ed4 04a1e2b] by '''tederis''')&lt;br /&gt;
* Fixed [[svgSetSize]] issues ([https://github.com/multitheftauto/mtasa-blue/commit/721c2b6d0f0c4ab016be079f1d4e28dec0123a6d 721c2b6] by '''Nico834''')&lt;br /&gt;
* Fixed the marker flickering issue during water cannon effects ([https://github.com/multitheftauto/mtasa-blue/commit/e83f700ee24904c0411b4dad3e695b3c3e30d9e4 e83f700] by '''Merlin''')&lt;br /&gt;
* Fixed buildings removal ([https://github.com/multitheftauto/mtasa-blue/commit/1b40db7cb5b63966ee97d0cbe79190360e1d32a0 1b40db7] by '''tederis''')&lt;br /&gt;
* Fixed crashes caused by [[createBuilding]] with [[engineRequestModel]] ([https://github.com/multitheftauto/mtasa-blue/commit/6245a68f3d97fc222d78fbc66b67f422a13710bf 6245a68] by '''TheNormalnij''')&lt;br /&gt;
* Fixed wrong getModelMatrix result for buildings ([https://github.com/multitheftauto/mtasa-blue/commit/f691946bc2d3dac75bd27d31886cd6b66d55811d f691946] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crashes for ''timed-object'' in [[engineRequestModel]] ([https://github.com/multitheftauto/mtasa-blue/commit/229389a4bd1c4c02010ba27ce26a428b41b68560 229389a] by '''TheNormalnij''')&lt;br /&gt;
* Fixed incorrect colors for 3D draws ([https://github.com/multitheftauto/mtasa-blue/commit/1f2c6e75fb71b01f0053f151e766a232ed33692b 1f2c6e7] by '''Nico834''')&lt;br /&gt;
* Add missing definition GuiGridList::getColumnWidth ([https://github.com/multitheftauto/mtasa-blue/commit/b34b1d5362291bcf00c7a0a0b694f60e1dccb363 b34b1d5] by '''Lpsd''')&lt;br /&gt;
* Fixed [[resetPedVoice]] not working at all ([https://github.com/multitheftauto/mtasa-blue/commit/3d8bd504f009fc2aa66e1dc9d35427a889ccd6aa 3d8bd50] by '''Tracer''')&lt;br /&gt;
* Added LOD support for buildings ([https://github.com/multitheftauto/mtasa-blue/commit/77ab3e64a3c6dacdcee02a223b67aec6c5b97ec2 77ab3e6] by '''TheNormalnij''')&lt;br /&gt;
* Added render stages for 3D primitives (new ''stage'' parameter) ([https://github.com/multitheftauto/mtasa-blue/commit/841447684c2d1992656555f81d73da52b2ce5c4f 8414476] by '''tederis''')&lt;br /&gt;
* Added disable option for [[engineSetModelPhysicalPropertiesGroup]] ([https://github.com/multitheftauto/mtasa-blue/commit/b6216cad058582b0feb34e98e94531d4acbf7c5b b6216ca] by '''TheNormalnij''')&lt;br /&gt;
* Fixed return correct value for stuntDistance parameter ([https://github.com/multitheftauto/mtasa-blue/commit/1f464d61c8c5f1400faa5472ccb67d2436d52903 1f464d6] by '''XJMLN''')&lt;br /&gt;
* Fixed [[engineRestoreModelPhysicalPropertiesGroup]] restores incorrect group ([https://github.com/multitheftauto/mtasa-blue/commit/291dfb4bc9bd72307a4ba4b42ffcbfc03ded4e38 291dfb4] by '''TheNormalnij''')&lt;br /&gt;
* Fixed OGG sound files can't be played as RAW data ([https://github.com/multitheftauto/mtasa-blue/commit/2764b7983c4e1bde20b894ebcfef5f230b149030 2764b79] by '''FileEX''')&lt;br /&gt;
* Implement [[getElementBoundingBox]] for buildings ([https://github.com/multitheftauto/mtasa-blue/commit/7b228daea3e0dc22d808abcf0eb568d99efcf63d 7b228da] by '''TheNormalnij''')&lt;br /&gt;
* Fixed streaming size check after [[engineAddImage]] ([https://github.com/multitheftauto/mtasa-blue/commit/5cdc04d6d61f40e89a5da3d27ae9575f4a419a08 5cdc04d] by '''TheNormalnij''')&lt;br /&gt;
* Fixed [[removeWorldModel]] crash ([https://github.com/multitheftauto/mtasa-blue/commit/ae98b04753b54208961759b295bef44f0ffafe43 ae98b04] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash when using [[extinguishFire]] in [[onClientVehicleDamage]] event ([https://github.com/multitheftauto/mtasa-blue/commit/d6ae4e9e24b0b7de704a3cbeec25dfd661b4a3fc d6ae4e9] by '''FileEX''')&lt;br /&gt;
* Fixed weapon models being invisible when using the jetpack with [[setJetpackWeaponEnabled]] ([https://github.com/multitheftauto/mtasa-blue/commit/a68c2c4232c28c6ba5595a814b89be976c4fa9c3 a68c2c4] by '''FileEX''')&lt;br /&gt;
* Fixed animations validation to avoid crashes ([https://github.com/multitheftauto/mtasa-blue/commit/27a24b551d86c6fbf9ee308603f24b011e941399 27a24b5] by '''G-Moris''')&lt;br /&gt;
* Fixed a bug where the &amp;quot;attacker&amp;quot; parameter is always nil in the [[onClientObjectBreak]] event if the object is glass ([https://github.com/multitheftauto/mtasa-blue/commit/dca5e2065af4a0195526541f9a8285db0401616e dca5e20] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where the [[onClientObjectBreak]] event was not triggered if the glass was broken by an explosion ([https://github.com/multitheftauto/mtasa-blue/commit/dca5e2065af4a0195526541f9a8285db0401616e dca5e20] by '''FileEX''')&lt;br /&gt;
* Fixed a bug that prevented players from switching weapons with an active jetpack ([https://github.com/multitheftauto/mtasa-blue/commit/180fbc0b5fdba95450e7a519f78f7588849349bf 180fbc0] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where hitElement in the [[onClientVehicleCollision]] event was always nil for projectiles ([https://github.com/multitheftauto/mtasa-blue/commit/43cc7b3e34eb4680120eb8ebf40d31d845850df2 43cc7b3] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where hydra flares did not work with [[createProjectile]] ([https://github.com/multitheftauto/mtasa-blue/commit/2bdac16d1d868f396786fbfdcfa2595004e1fff5 2bdac16] by '''FileEX''')&lt;br /&gt;
* Fixed inconsistent extra component names ([https://github.com/multitheftauto/mtasa-blue/commit/d4f884935626c638dca0f7f45c71cfb22c4e2d72 d4f8849] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where after changing the key in the bind settings, only the key for the &amp;quot;down&amp;quot; status changed, while the &amp;quot;up&amp;quot; key remained unchanged.([https://github.com/multitheftauto/mtasa-blue/commit/3ebefc37951e24cbfb25035d99045d67571b5324 3ebefc3] by '''FileEX''')&lt;br /&gt;
* Maked frame graph scale accordingly to resolution ([https://github.com/multitheftauto/mtasa-blue/commit/e431474c676a253004a26d86fc9e1a6100d329d4 e431474] by '''ffsPLASMA''')&lt;br /&gt;
* Fixed old [[setElementModel]] memory leak ([https://github.com/multitheftauto/mtasa-blue/commit/4e7afa2586c6992a75ac5312378c1096d87148ae 4e7afa2] by '''tederis''')&lt;br /&gt;
* Fixed [[getObjectProperty]] returns invalid ''air_ressistance'' property ([https://github.com/multitheftauto/mtasa-blue/commit/b51e1116283e9ec453881d3c48229b96c6198d5a b51e111] by '''FileEX''')&lt;br /&gt;
* Fixed missing states in [[getPedControlState]] ([https://github.com/multitheftauto/mtasa-blue/commit/3333a115f1a14f00378161681aeba609b4e993c0 3333a11] by '''FileEX''')&lt;br /&gt;
* Fixed for randomly bright objects after weapon change  ([https://github.com/multitheftauto/mtasa-blue/commit/9b9120c73ec97bf1b2f24703889a62fc19326f1f 9b9120c] by '''FileEX''')&lt;br /&gt;
* Fixed some small problems with Device Selection Dialog ([https://github.com/multitheftauto/mtasa-blue/commit/6f90880bee4d9169d4eda5f6afc63f4ed1bf652f 6f90880] by '''forkerer''')&lt;br /&gt;
* Allow dynamic models to be created as buildings ([https://github.com/multitheftauto/mtasa-blue/commit/642438ec1302daba50b6f6069844e96cbaa31818 642438e] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash when disconnecting from server after creating projectiles ([https://github.com/multitheftauto/mtasa-blue/commit/9ab6104d9c1ec246fde29ae6bf303ae5848bbbe1 9ab6104] by '''TheNormalnij''')&lt;br /&gt;
* Allow client peds to enter/exit client vehicles ([https://github.com/multitheftauto/mtasa-blue/pull/3678 #3678], [https://github.com/multitheftauto/mtasa-blue/commit/67beec77b06897552dc2c756c15283bfdc19b143 67beec7] by '''gownosatana''' and '''Tracer''')&lt;br /&gt;
* Use immersive dark mode on game window ([https://github.com/multitheftauto/mtasa-blue/commit/fd9520498919ae191c718c49b2a5c742bbbf8239 fd95204] by '''FileEX''')&lt;br /&gt;
* Added damageable objects support for [[engineRequestModel]] ([https://github.com/multitheftauto/mtasa-blue/commit/21593b9239765343ad5a4975c9f8424e571a036d 21593b9] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash with [[setElementHealth]] in [[onClientPedDamage]] event ([https://github.com/multitheftauto/mtasa-blue/commit/2d3397df56827f7c218689873f8b4741ea9af44e 2d3397d] by '''FileEX''')&lt;br /&gt;
* Fixed [[setPedControlState]] is aborted when ped created/player join ([https://github.com/multitheftauto/mtasa-blue/commit/8117ebcb95d3e3c35c400ee073a6ebab81e3f9fb 8117ebc] by '''FileEX''')&lt;br /&gt;
* Added '''buildings''' support to [[engineApplyShaderToWorldTexture]] ([https://github.com/multitheftauto/mtasa-blue/commit/fe1dd063170aef6a866bc241c305278a73200fdd fe1dd06] by '''TheNormalnij''')&lt;br /&gt;
* Fixed unintended behavior for ped control states ([https://github.com/multitheftauto/mtasa-blue/commit/a38e6acaf5c0fd83b5627660439f36d380cd26e6 a38e6ac] by '''Nico834''')&lt;br /&gt;
* Fixed SVG colors bug ([https://github.com/multitheftauto/mtasa-blue/commit/04f297b7b1aecb3753c8fbfa19fa9627abf422b4 04f297b] by '''TheNormalnij''')&lt;br /&gt;
* Fixed &amp;quot;CEF Launcher&amp;quot; process remaining after closing MTA ([https://github.com/multitheftauto/mtasa-blue/commit/a6c00278a5329e3b2b870b298d78565b14a7bed2 a6c0027] by '''botder''')&lt;br /&gt;
* Removed ''login'' cmd from chat history ([https://github.com/multitheftauto/mtasa-blue/commit/4639aea8a5544bfa4460bfcc8bba1d5b032e931a 4639aea] by '''PlatinMTA''')&lt;br /&gt;
* Fixed in-game updater dialog incorrectly showing 0% progress ([https://github.com/multitheftauto/mtasa-blue/commit/40d9ac11a9864d4f26c9eb1979e3a30ec0624061 40d9ac1] by '''Dutchman101''')&lt;br /&gt;
* Fixed invalid references counter to TXD after [[engineSetModelTXDID]] (top 1 crash according to players crash stats) ([https://github.com/multitheftauto/mtasa-blue/commit/1b7e9e82997fb4ac2eec5722d9134299902a16e6 1b7e9e8] by '''TheNormalnij''')&lt;br /&gt;
* Fixed server cache memory leak on connecting to another server ([https://github.com/multitheftauto/mtasa-blue/commit/e3476592fc46dc28f9da98f525797ae94ebf3ec3 e347659] by '''Lpsd''')&lt;br /&gt;
* Added the ability to set CPU affinity (CPU 0) in the '''advanced''' tab in the settings ([https://github.com/multitheftauto/mtasa-blue/commit/d04c92b24e7b85f6015fa93192ddda06e9023c85 d04c92b] by '''FileEX''')&lt;br /&gt;
* Fixed crash in ''CClientDisplayManager'' (top 2 crash according to players crash stats) ([https://github.com/multitheftauto/mtasa-blue/commit/0df0a4b40f7aea7c16473d0844a03fcece888420 0df0a4b] by '''Lpsd''')&lt;br /&gt;
* Set main menu FPS limit to current display refresh rate ([https://github.com/multitheftauto/mtasa-blue/commit/acbcc8e03ba8ac677a9c2c8182fb6f24868cae46 acbcc8e] by '''samr46''')&lt;br /&gt;
* [[setSoundEffectParameter]] and [[getSoundEffectParameters]] can be now used also on players! ([https://github.com/multitheftauto/mtasa-blue/commit/20851ecf7d69cc42fc00a62446a87d7e99c1e19d 20851ec] by '''tederis''')&lt;br /&gt;
* Fixed elements sometimes being visible from other dimensions in the current dimension ([https://github.com/multitheftauto/mtasa-blue/commit/9af03b3263a5a320e2f92140f6caa6c94b9fe9a5 9af03b3], [https://github.com/multitheftauto/mtasa-blue/commit/1dff560099459bc1b8248ef50643886158b0d731 1dff560] by '''FileEX''' &amp;amp; '''tederis''')&lt;br /&gt;
* Fixed bug &amp;quot;Copying text from CEF Browser shows Chinese characters in console&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/892beb0457b461d5afd5d91e86763181bdb972d3 892beb0] by '''ColombuxMaximus''')&lt;br /&gt;
* Fixed a bug where hidden vehicle components became visible after changing the variant or handling ([https://github.com/multitheftauto/mtasa-blue/commit/1d81347ee7e2614cd94e4b1807947d2c98b3305f 1d81347] by '''ColombuxMaximus''')&lt;br /&gt;
* Fixed persian characters in main menu &amp;amp; CEGUI ([https://github.com/multitheftauto/mtasa-blue/commit/efb2edfa853aa9a95f39ed9a843c3230b2e627cf efb2edf] by '''tzwer''')&lt;br /&gt;
* Added new movement states to [[getPedMoveState]] and fixed incorrect returning of &amp;quot;fall&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/c43c1b98b8ec0b7253d98c65b405ead482a765d8 c43c1b9], [https://github.com/multitheftauto/mtasa-blue/commit/797331fadbca4367f6cfd43633e48af44a99a115 797331f] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where friendly fire did not prevent fire damage ([https://github.com/multitheftauto/mtasa-blue/commit/9c4397707dd2a94d8a6124d6b502d39793f0d2ba 9c43977] by '''FileEX''')&lt;br /&gt;
* Fixed [[engineReplaceModel]] memory leak &amp;amp; potential crash ([https://github.com/multitheftauto/mtasa-blue/commit/1dbbfd025c5ff791f31e1ef4f255514198f88d0c 1dbbfd0] by '''FileEX''')&lt;br /&gt;
* Fixed '''ALT + F4''' not working ([https://github.com/multitheftauto/mtasa-blue/commit/93963a98f24fdb5e8374baaddaa6d99260be967e 93963a9] by '''lopezloo''')&lt;br /&gt;
* Fixed [[setPedOnFire]] doesn't cancel '''TASK_SIMPLE_PLAYER_ON_FIRE''' ([https://github.com/multitheftauto/mtasa-blue/commit/2a2f31bccd9d90adfc2b03f1f63248b9d016c725 2a2f31b] by '''FileEX''')&lt;br /&gt;
* Fixed crash related to buildings ([https://github.com/multitheftauto/mtasa-blue/commit/4bcded5c89caffd005b266021d3c1bbd83a554cb 4bcded5] by '''tederis''')&lt;br /&gt;
* Fixed client freeze in some locations on the map ([https://github.com/multitheftauto/mtasa-blue/commit/3a376e479201b30b27488a5a674d7d816397e79a 3a376e4] by '''tederis''')&lt;br /&gt;
* Added disconnect warning when using quick connect while connected to server ([https://github.com/multitheftauto/mtasa-blue/commit/be395665c0f5094793b923e9f4fb94056ccff961 be39566] by '''omar-o22''')&lt;br /&gt;
* Added missing trashcan in help section ([https://github.com/multitheftauto/mtasa-blue/commit/853a7d54a25bc09ee421ac837f22201882ece1b7 853a7d5] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
=== Server ===&lt;br /&gt;
* Fixed bullet sync check in CBulletsyncPacket by verifying total ammo instead of clip ammo ([https://github.com/multitheftauto/mtasa-blue/commit/ca06762413833e1c7f8d17970334607763414a45 ca06762] by '''shadylua''')&lt;br /&gt;
* Check deprecated account name length on [[banPlayer]] to fix all players getting kicked ([https://github.com/multitheftauto/mtasa-blue/commit/b5e2332ca5857f3e984467ca0cb8163ec998ea06 b5e2332] by '''patrikjuvonen''')&lt;br /&gt;
* Fixed a crash in CHandlingManager ([https://github.com/multitheftauto/mtasa-blue/commit/b6867a0d2ed0b4ab12a4461c3f1ca7d667bdedbc b6867a0] by '''Olya-Marinova''')&lt;br /&gt;
* Removed min-version lua function from old MTA versions ([https://github.com/multitheftauto/mtasa-blue/commit/222b2720c93f29977fffb722f8d42ea3fb5f790d 222b272] by '''Olya-Marinova''')&lt;br /&gt;
* Disallow loadstring by default ([https://github.com/multitheftauto/mtasa-blue/commit/89e2d375d12deb026ee91fedc5e1ced04dc9a723 89e2d37] by '''srslyyyy''')&lt;br /&gt;
* Added valid values for 'donotbroadcastlan' setting ([https://github.com/multitheftauto/mtasa-blue/commit/f8d4422ad75c0d7f21894f9f868aa37ec6993a35 f8d4422] by '''Dark-Dragon''')&lt;br /&gt;
* Fixed &amp;quot;ped revives when syncer changes&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/af604ae7dfec742661206fb809f149140ce3a960 af604ae] by '''Zangomangu''')&lt;br /&gt;
* Fixed files not unloading after renaming ([https://github.com/multitheftauto/mtasa-blue/commit/2846e2794af1d9d441b7b988f49af521bd765fb0 2846e27] by '''W3lac3''')&lt;br /&gt;
* Added ability to limit client triggered events via [[triggerServerEvent]] ([https://github.com/multitheftauto/mtasa-blue/commit/eae47fe2f432d9053c425fd515ea27f963c254ec eae47fe] by '''Lpsd''')&lt;br /&gt;
* Added FileExists check to CMainConfig::AddMissingSettings ([https://github.com/multitheftauto/mtasa-blue/commit/1ebaa28e0381fb114b946f2f5a4d4bc5834ebd03 1ebaa28] by '''Lpsd''')&lt;br /&gt;
* Added server side weapon related checks ([https://github.com/multitheftauto/mtasa-blue/commit/86448ea52c7ee13e554a907c424aa3c891e51e31 86448ea] by '''NanoBob''')&lt;br /&gt;
* Added [[dbConnect]] option for MySQL ''&amp;quot;use_ssl=0&amp;quot;'' ([https://github.com/multitheftauto/mtasa-blue/commit/e6476767a9b6848467f0d123830dd2f90bd4442d e647676] by '''Lpsd''')&lt;br /&gt;
* Added ''content'' parameter to [[onPlayerPrivateMessage]] event ([https://github.com/multitheftauto/mtasa-blue/commit/79f8ed6a374d62e5cf1ec707b2ba25e3a959f509 79f8ed6] by '''FileEX''')&lt;br /&gt;
* Fix ability to move server-side vehicles that are far away from the player. New parameter can be set in the [[Server_mtaserver.conf#vehicle_contact_sync_radius|mtaserver.conf]] ([https://github.com/multitheftauto/mtasa-blue/commit/e3338c2fbbdb500c4ce28dc0677ceadef1f1ca4c e3338c2] by '''MegadreamsBE''')&lt;br /&gt;
* Added ''sync'' parameter for vehicles ([https://github.com/multitheftauto/mtasa-blue/commit/f88d31306d3c7fadfbc1542c85922612fd00b131 f88d313] by '''znvjder''')&lt;br /&gt;
* Fixed server-side pickup collision size ([https://github.com/multitheftauto/mtasa-blue/commit/49d97513e1eb2e0c96c5aa5a1d542d14131edd76 49d9751] by '''Proxy-99''') &lt;br /&gt;
* Fixed ''CSimBulletsyncPacket'' crash ([https://github.com/multitheftauto/mtasa-blue/commit/ee8bc92907a112a5584844329dbb07cc82326ad1 ee8bc92] by '''G-Moris''')&lt;br /&gt;
* Fixed onVehicleExit doesn't trigger if pulled out ([https://github.com/multitheftauto/mtasa-blue/commit/af4f7facca73bb68238437e6eff3504bd6f1cfe0 af4f7fa] by '''Proxy-99''')&lt;br /&gt;
* Fixed arguments in [[setPedAnimation]] being ignored when nil was passed ([https://github.com/multitheftauto/mtasa-blue/commit/f6f544e6b54054a06497fdf94cd077b862af8055 f6f544e] by '''FileEX''')&lt;br /&gt;
* Fixed Sirens not removed correctly ([https://github.com/multitheftauto/mtasa-blue/commit/9e419620069ec8ad5828c50295c1901685166cf9 9e41962] by '''Proxy-99''')&lt;br /&gt;
* Fixed a bug where [[setPedWeaponSlot]] did not update data in [[getPedWeapon]] and [[getPedWeaponSlot]] ([https://github.com/multitheftauto/mtasa-blue/commit/9615523faf84f584179412fb8e0cc04f9f4ee48f 9615523] by '''FileEX''')&lt;br /&gt;
* Added '''player''' parameter to [[onVehicleExplode]] ([https://github.com/multitheftauto/mtasa-blue/commit/1ec1f5be69d3ef99bd2e26fd3d008a7cecd0a5ad 1ec1f5b] by '''FileEX''')&lt;br /&gt;
* Excluded '''meta.xml''' from glob patterns for security reasons ([https://github.com/multitheftauto/mtasa-blue/commit/78f6d669adc97c51a825250dd4dbf1a4a4a0ff15 78f6d66] by '''FileEX''')&lt;br /&gt;
* Fixed the bug where changing a vehicle to one with a different number of seats caused passengers to experience network trouble ([https://github.com/multitheftauto/mtasa-blue/commit/1fcd732ca9031060602c8e2425e40ce602d35253 1fcd732] by '''FileEX''')&lt;br /&gt;
* Glob patterns added to meta.xml for HTML files ([https://github.com/multitheftauto/mtasa-blue/commit/7e6b4d02ec113b7ce3a6fd9937a6e8ad0a1ad9cb 7e6b4d0] by '''FileEX''')&lt;br /&gt;
* Fixed console not maintaining position &amp;amp; size when GUI skin changed ([https://github.com/multitheftauto/mtasa-blue/commit/30d8e6dbfe75db47cf396aa909f43c24c4dbe127] by '''NanoBob''')&lt;br /&gt;
* Added '''includeCustom''' argument for [[getValidPedModels]] clientside ([https://github.com/multitheftauto/mtasa-blue/commit/889567a7a0ecb8a8b8d938826d2395ef9f43a76b] by '''Fernando-A-Rocha''')&lt;br /&gt;
* Fixed '''min_mta_version''' tag for server ([https://github.com/multitheftauto/mtasa-blue/commit/8c0a01bac62ecc3e9510133dee9f8d6700065f03 8c0a01b] by '''Fernando-A-Rocha''')&lt;br /&gt;
* Allowed user to pass multiple resource names to start/stop/restart ([https://github.com/multitheftauto/mtasa-blue/commit/6f5fb9c65ee93a5c1692b0d3516a483dcea48f08 6f5fb9c] by '''botder''')&lt;br /&gt;
* Added sync peds/players animations for new players ([https://github.com/multitheftauto/mtasa-blue/commit/b32eafc70816ece8ad995d98d380d8f6e9950475 b32eafc] by '''FileEX''')&lt;br /&gt;
* Optimized processing big files by server ([https://github.com/multitheftauto/mtasa-blue/commit/cb90339aad461d3ee8c1008f2da10934afc38a4c cb90339] by '''AlexTMjugador''')&lt;br /&gt;
* Separate icon for ''mta-server.exe'' ([https://github.com/multitheftauto/mtasa-blue/commit/6cb9d3edf9686749e524f136985cefb53772898e 6cb9d3e] by '''Nico834''')&lt;br /&gt;
* Fixed a bug that caused warnings in debugscript when using depracated function names as variable names ([https://github.com/multitheftauto/mtasa-blue/commit/f23e39521b7e35ad5389e467360fbc525c099887 f23e395] by '''YelehaUwU''')&lt;br /&gt;
* [[onVehicleExplode]] can now be cancelled! ([https://github.com/multitheftauto/mtasa-blue/commit/fcb5b038981066f561f3792c2ae3d97d76d9d0fe fcb5b03] by '''Nico834''')&lt;br /&gt;
* Added '''eventName''' parameter to [[onPlayerTriggerEventThreshold]] ([https://github.com/multitheftauto/mtasa-blue/commit/76d7764c7ec408b77eb7b12379e88882e014527f 76d7764] by '''ColombuxMaximus''')&lt;br /&gt;
&lt;br /&gt;
=== More Technical Changes and Bug Fixes ===&lt;br /&gt;
&amp;lt;section show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
:* Updated CLuaFunctionParser.h ([https://github.com/multitheftauto/mtasa-blue/commit/55647f4023c78a846870f7c96069fab411cff5c5 55647f4] by '''Xenius97''')&lt;br /&gt;
:* Fixed build after above update ([https://github.com/multitheftauto/mtasa-blue/commit/9dcc651d42ae78b7b04257e7612c5b594cb0fffd 9dcc651] by '''Pirulax''')&lt;br /&gt;
:* Fixed std::unordered_map&amp;lt;std::string, std::string&amp;gt; parsing ([https://github.com/multitheftauto/mtasa-blue/commit/005592417b42de63c3d8ba9c572a81cdc8f96164 0055924] by '''tederis''')&lt;br /&gt;
:* Addendum to [https://github.com/multitheftauto/mtasa-blue/pull/3251 #3251] ([https://github.com/multitheftauto/mtasa-blue/commit/9544a34a28d3b4e766d7d07a44d63a8fe45dc506 9544a34] by '''Lpsd''')&lt;br /&gt;
:* Fixes for [https://github.com/multitheftauto/mtasa-blue/pull/3251 #3251] ([https://github.com/multitheftauto/mtasa-blue/commit/07013d24766a6259f4115bd0349a86f790dbf5d0 07013d2] by '''Lpsd''')&lt;br /&gt;
:* Fixed SetStreamingBufferSize possibly accessing memory out-of-bounds ([https://github.com/multitheftauto/mtasa-blue/commit/e08b84fbfe6ad0431605b31c2ba5a50a8f116dc9 e08b84f] by '''Pirulax''')&lt;br /&gt;
:* Added a check to verify itemList validity ([https://github.com/multitheftauto/mtasa-blue/commit/668073787fa6b952d0f1520e8ccae0999dbdba13 6680737] by '''R4ven47''')&lt;br /&gt;
:* Various code clean ups and refactors&lt;br /&gt;
::* Removed COffsetsMP and EU addresses ([https://github.com/multitheftauto/mtasa-blue/commit/52b0115a2d9157b7a153b5f24316ff6fd053e79b 52b0115] by '''Merlin''')&lt;br /&gt;
::* Removed COffsets and EU addresses ([https://github.com/multitheftauto/mtasa-blue/commit/959141de324126245d2b5ebf029c924302ff64e9 959141d] by '''Merlin''')&lt;br /&gt;
::* Clean ups ''multiplayer_sa'' code ([https://github.com/multitheftauto/mtasa-blue/commit/38982043978dd1ec72230569a6d534792e7c18bd 3898204] by '''CrosRoad95''')&lt;br /&gt;
::* Removed old easter-egg &amp;amp; debug code ([https://github.com/multitheftauto/mtasa-blue/commit/b26f80c3d72d628d63807529b408be4b61a5be60 b26f80c], [https://github.com/multitheftauto/mtasa-blue/commit/530212f34fc44e95599ca5e39e608583ecdbb5cc 530212f] by '''botder''' and '''Merlin''')&lt;br /&gt;
::* Refactored entity hierarchy &amp;lt;!-- Fixed accepting possible malicious packets --&amp;gt; ([https://github.com/multitheftauto/mtasa-blue/commit/fdaced046a9421a39de87b81eaf0f7de7c234c4b fdaced0] by '''Tracer''')&lt;br /&gt;
::* Removed unused symbol from ''CConsole'' class ([https://github.com/multitheftauto/mtasa-blue/commit/4fe9084a2e5c5eeed4b0a9a30a07607c812e923b 4fe9084] by '''Nico834''')&lt;br /&gt;
::* Refactored ''CLuaBlipDefs'' ([https://github.com/multitheftauto/mtasa-blue/commit/d05d09be8b9bd1327e37631411fa1e3b16c4dbb7 d05d09b], [https://github.com/multitheftauto/mtasa-blue/commit/c278c12debfd346377354017992543fc7cf6397b c278c12] by '''FileEX''')&lt;br /&gt;
::* Refactored ''CLuaTeamDefs'' ([https://github.com/multitheftauto/mtasa-blue/commit/74ffa1d0138ab3d848b0e081ca265f18ae6c7bd8 74ffa1d], [https://github.com/multitheftauto/mtasa-blue/commit/f37bbada1381370eeadabd4f4dde2a024ec48f5f f37bbad] by '''Nico834''')&lt;br /&gt;
::* Removed dead ''CAnimManagerSA'' code ([https://github.com/multitheftauto/mtasa-blue/commit/d18d7d35fb50fdeea3f70ad688a5857b29867185 d18d7d3] by '''G-Moris''')&lt;br /&gt;
::* Refactored class hierarchy and removed VTBL hacks ([https://github.com/multitheftauto/mtasa-blue/commit/61d1caffb5bfa9c620c08d43280150906dd172d5 61d1caf] by '''TheNormalnij''')&lt;br /&gt;
::* Refactored ''CWeaponSA'' and ''CPedSA'' classes ([https://github.com/multitheftauto/mtasa-blue/commit/a3b7c8519d0d167c66e70c8c7ed5d2f810b7ae39 a3b7c85], [https://github.com/multitheftauto/mtasa-blue/commit/2526a7dd6cde545e600792dcac3ab1b8ece0edec 2526a7d] by '''FileEX''')&lt;br /&gt;
::* Cleaning up client Common.h and moving enums to separate files ([https://github.com/multitheftauto/mtasa-blue/commit/1e56571479217f787b6444d48770f8aa69f14387 1e56571] by '''FileEX''')&lt;br /&gt;
:* Addd Comments to Frame Rate Fixes in CMultiplayerSA_FrameRateFixes.cpp ([https://github.com/multitheftauto/mtasa-blue/commit/e4e6d1b5a9609cb093a191db405c61339d4280d2 e4e6d1b] by '''Merlin''')&lt;br /&gt;
:* Fixed build after CEF update ([https://github.com/multitheftauto/mtasa-blue/commit/9980252446a6869609b1afa1ae1168282a99cb17 9980252] by '''TheNormalnij''')&lt;br /&gt;
:* Bump chromedriver from 114.0.2 to 119.0.1 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/5d8d3756d98b0272687b87c30adca2961eee86c8 5d8d375])&lt;br /&gt;
:* Bump axios from 1.4.0 to 1.6.1 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/ba018013085058905aa789c4fa3f39c4ed32fc69 ba01801])&lt;br /&gt;
:* Fixed file lock after img:destroy ([https://github.com/multitheftauto/mtasa-blue/commit/c2ccfd2c648a2d3f33ead2169262c30533f79bac c2ccfd2] by '''TheNormalnij''')&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
:* Bump follow-redirects from 1.15.2 to 1.15.6 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/437dbcd8024c5217c22ef0e38719f93f33f47ce5 437dbcd])&lt;br /&gt;
:* Fix permission check in File.create method ([https://github.com/multitheftauto/mtasa-blue/commit/92144a4d7383af09dfa05b7bcd3db09fa487e6fd 92144a4] by '''theSarrum''')&lt;br /&gt;
:* mbedTLS fix for cURL 8.8.0 ([https://github.com/multitheftauto/mtasa-blue/commit/4f7e0d87ec04e44d2e47f5b869c2d7c765817c0f 4f7e0d8] by '''Lpsd''')&lt;br /&gt;
:* Discord RPC Tweaks ([https://github.com/multitheftauto/mtasa-blue/commit/8ef351eabe46fd50da096247d8b6fc74508cb911 8ef351e] by '''theSarrum''')&lt;br /&gt;
:* Fixed small overhead in argument parser for strings ([https://github.com/multitheftauto/mtasa-blue/commit/d20582d770dfd2a1677d9981005b3b6d28fb8e4e d20582d] by '''TheNormalnij''')&lt;br /&gt;
:* Bump ws from 8.13.0 to 8.17.1 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/cc172fcae7654ead0d3530a4819c71f76205a175 cc172fc])&lt;br /&gt;
:* Generic exception type for argument parser instead of std::invalid_argument ([https://github.com/multitheftauto/mtasa-blue/commit/2043acfdb210a8f1158501e2fbb431b625bbf74d 2043acf] by '''tederis''')&lt;br /&gt;
:* Added comments for hooks in CMultiplayerSA_CrashFixHacks.cpp ([https://github.com/multitheftauto/mtasa-blue/commit/0327cb1bef9b234451f8a22ece9c6c70fdc9adb0 0327cb1] by '''FileEX''')&lt;br /&gt;
:* Optimization handling ([https://github.com/multitheftauto/mtasa-blue/commit/e3a8bd96d4eccb30e439ba8bd4a2029d01586154 e3a8bd9], [https://github.com/multitheftauto/mtasa-blue/commit/5ac6c8adad9c9ffd4a1c299c7cd548713e485bd6 5ac6c8a] by '''G-Moris''')&lt;br /&gt;
:* Added ability to use varargs in ArgumentParser functions ([https://github.com/multitheftauto/mtasa-blue/commit/8c2f95a5ffade0e7fb212b62282e69d7f433d36f 8c2f95a] by '''Tracer''')&lt;br /&gt;
:* Fixed google-breakpad in newer GCC versions ([https://github.com/multitheftauto/mtasa-blue/commit/5508c7e4058ad9d29cacc9964f8e84df2c60d14f 5508c7e] by '''Tracer''')&lt;br /&gt;
:* Validate serial on player join ([https://github.com/multitheftauto/mtasa-blue/commit/84437e49e6ebca758e1e87d93e7846f9aa99a673 84437e4] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Extract TXD class ([https://github.com/multitheftauto/mtasa-blue/commit/733683d70dc037fdcbb256fb17d86e93b fedd239] by '''TheNormalnij''')&lt;br /&gt;
:* Fixed a bug with desynchronization of the values of some fields of the ''CTickRateSettings'' structure ([https://github.com/multitheftauto/mtasa-blue/commit/af5b6968e0a28dbde7d92f3828dead0f1a936eec af5b696], [https://github.com/multitheftauto/mtasa-blue/commit/514a3b36d09906f09bb32e900c39dc09b1c29d10 514a3b3] by '''nweb''')&lt;br /&gt;
:* Fixed ''MinClientReqCheck'' and improve resource upgrade ([https://github.com/multitheftauto/mtasa-blue/commit/f0954109c0644c551ae3ec1df4474d1857e4bed8 f095410] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Refactored and improved player map (F11) ([https://github.com/multitheftauto/mtasa-blue/commit/2c5cf3226a573637b91d8b255d57113b7043dc28 2c5cf32] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Fixed ''CVector'' optional arguments ([https://github.com/multitheftauto/mtasa-blue/commit/6a70cf7def14db86980a499d0fdf4c63565915e1 6a70cf7] by '''Tracer''')&lt;br /&gt;
:* Fixed memory overwriting by ''EnumToString'' &amp;amp; ''StringToEnum'' ([https://github.com/multitheftauto/mtasa-blue/commit/3ab068ba213abca718ace47ac3bb8df9e4b1c3fc 3ab068b] by '''FileEX''')&lt;br /&gt;
:* Allow using ''std::variant'' with several pointers ([https://github.com/multitheftauto/mtasa-blue/commit/9d776c8bfc2680fc28857fc0a5dc4a4e40d4c3bf 9d776c8] by '''tederis''')&lt;br /&gt;
:* Fixed argument parser not distinguishing arrays from maps ([https://github.com/multitheftauto/mtasa-blue/commit/d4388a2452f4427bd56c3d93b80d4ea74c05b6e5 d4388a2] by '''FileEX''')&lt;br /&gt;
:* Fixed crash with nested arrays/maps in new argument parser ([https://github.com/multitheftauto/mtasa-blue/commit/ca877d33471fabbe970cf03d9d6d9b3413b6daa1 ca877d3] by '''tederis''')&lt;br /&gt;
&lt;br /&gt;
== 13 Vendor Updates ==&lt;br /&gt;
=== Client ===&lt;br /&gt;
* Updated libpng to 1.6.50 ([https://github.com/multitheftauto/mtasa-blue/commit/c24b39d41fd768337c3d336a944588d53dfaba44] by '''Nico834''')&lt;br /&gt;
* Updatee CEF to 127.3.5+g114ea2a+chromium-127.0.6533.120 ([https://github.com/multitheftauto/mtasa-blue/commit/bca4dff8dc490328000d7653a9166704d859b7e5 bca4dff] by '''Dutchman101''')&lt;br /&gt;
* Updated Unifont to 15.1.05 ([https://github.com/multitheftauto/mtasa-blue/commit/02115a5c00e2480bbb3b829b655869e7436de955 02115a5] by '''Dutchman101''')&lt;br /&gt;
&lt;br /&gt;
=== Server ===&lt;br /&gt;
* Updated cURL to 8.14.1 ([https://github.com/multitheftauto/mtasa-blue/commit/7c27c20da7503c68234cde0b726f10a3dcdf85e3] by '''Nico834''')&lt;br /&gt;
* Updated MySQL to 8.4.0 &amp;amp; OpenSSL to 3.3.1 ([https://github.com/multitheftauto/mtasa-blue/commit/a44d673bb8731506418fdbaa6690b339a98d82c1 a44d673] by '''botder''')&lt;br /&gt;
* Updated SQLite to 3.46.0 ([https://github.com/multitheftauto/mtasa-blue/commit/30e31af2ca1ae96e03386670a9df6db70336b968 30e31af] by '''Dutchman101''')&lt;br /&gt;
&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Updated mbedTLS to 3.6.4 ([https://github.com/multitheftauto/mtasa-blue/commit/45955dad5471f49e2784e37cbafd1b92196abe96] by '''Nico834''')&lt;br /&gt;
* Updated 7-Zip Standalone plugins to 24.07 (24.7.0.0) ([https://github.com/multitheftauto/mtasa-blue/commit/9b979b2d5c7f4b885046a85d9895e58416563890 9b979b2] by '''Dutchman101''')&lt;br /&gt;
* Updated freetype to freetype-37cefe3 (freetype/freetype@37cefe3) ([https://github.com/multitheftauto/mtasa-blue/commit/89e022cb8586aba5bdacd7b56c7d45c9b7b95f97 89e022c] by '''Dutchman101''')&lt;br /&gt;
* Updated nvapi from r550 to r555 ([https://github.com/multitheftauto/mtasa-blue/commit/5fdcada80a18af530381b04f54c3c69b6988f479 5fdcada] by '''Dutchman101''')&lt;br /&gt;
* Updated unrar to 7.0.9 ([https://github.com/multitheftauto/mtasa-blue/commit/ab9461be5777427261bc3a330acb4c0f5cdc2c8b ab9461b] by '''Dutchman101''')&lt;br /&gt;
* Updated FreeType to 2.13.2 ([https://github.com/multitheftauto/mtasa-blue/commit/a783e994264d4e954489e31459505c53759ca7f1 a783e99] by '''Dutchman101''')&lt;br /&gt;
* Updated zlib from 1.2.13 to 1.3 ([https://github.com/multitheftauto/mtasa-blue/commit/0f37ac0b18845e9f035d0ca45bbb41b9cd1aa979 0f37ac0] by '''Dutchman101''')&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
=== 46+ Changes and Bug Fixes ===&lt;br /&gt;
&lt;br /&gt;
'''admin'''&lt;br /&gt;
:* Removed execute code functionality for safety reasons ([https://github.com/multitheftauto/mtasa-resources/commit/507a04937524997410e450a6d4292974fa801bf8 507a049] by '''srslyyyy''')&lt;br /&gt;
:* Updated skins.xml ([https://github.com/multitheftauto/mtasa-resources/commit/b5306484a789cc59b05f4182505ac07df3d90e07 b530648] by '''shadylua''')&lt;br /&gt;
:* Fixed warnings ([https://github.com/multitheftauto/mtasa-resources/commit/d7b02022fa8168fc300dd562118100265cf0688b d7b0202] by '''jlillis''')&lt;br /&gt;
:* Making the admin window focused ([https://github.com/multitheftauto/mtasa-resources/commit/33f7cc938d243687fa36fa300ec588b2d057d02c 33f7cc9] by '''Proxy-99''')&lt;br /&gt;
:* Resource settings button is only displayed if there are settings ([https://github.com/multitheftauto/mtasa-resources/commit/0224ef52c699f27bd6e0e6364fbc81ecd0ec345f 0224ef5] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed nil index error and removed invalid characters causing syntax errors ([https://github.com/multitheftauto/mtasa-resources/commit/79857393ddb42f52ee05cf5758d5fdc8c2ff845c 7985739] by '''rad3sh''')&lt;br /&gt;
:* Allow disabling/enabling default reporting system ([https://github.com/multitheftauto/mtasa-resources/commit/0dbb83df7d3e9a20a2c897612db778bf4e395c92 0dbb83d] by '''Viude''')&lt;br /&gt;
:* Updated clientcheckban setting to ban serial instead of IP ([https://github.com/multitheftauto/mtasa-resources/commit/fa5beb96e10d9f30d9565ca212fe901f88e413a5 fa5beb9] by '''Viude''')&lt;br /&gt;
:* Fixed that double clicking on a resource without setting opened the GUI settings window ([https://github.com/multitheftauto/mtasa-resources/commit/82d5b835b503594101a99041498501e19a433a79 82d5b83] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed gridlist bug in weapons/vehicles ([https://github.com/multitheftauto/mtasa-resources/commit/6ba5a88b8a5da4a9df67f20347056754ea5a2c87 6ba5a88] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''admin2'''&lt;br /&gt;
:* Forward-ported permissions widget from admin1 and minor fixes ([https://github.com/multitheftauto/mtasa-resources/commit/25dcc4c655de26de0a2d0eb1b55ef7f3b3f6725e 25dcc4c] by '''Dark-Dragon''')&lt;br /&gt;
:* Fixed /report message viewer widget and minor fixes ([https://github.com/multitheftauto/mtasa-resources/commit/6dbdf2cf90d0e447879bea86942e01caf949b8f5 6dbdf2c] by '''Dark-Dragon''')&lt;br /&gt;
:* Refactored bans functionality ([https://github.com/multitheftauto/mtasa-resources/commit/d8c35b0a38a295d119054c4328a892c4e26be358 d8c35b0] by '''jlillis''')&lt;br /&gt;
:* Fixed messagebox not showing ([https://github.com/multitheftauto/mtasa-resources/commit/5afe0247e6ca44c5754a2d9a6a0af7bc8b57f967 5afe024] by '''FileEX''')&lt;br /&gt;
:* Added missing glitches and world properties ([https://github.com/multitheftauto/mtasa-resources/commit/6856aa075c8e5674379c2a89f355d8b167ab6fdb 6856aa0] by '''FileEX''')&lt;br /&gt;
:* Added content for &amp;quot;Users&amp;quot; sub-tab in the &amp;quot;Rights&amp;quot; tab ([https://github.com/multitheftauto/mtasa-resources/commit/3f8ecca953cc3dfa84e4d1b38b6b4c41f323688b 3f8ecca] by '''FileEX''')&lt;br /&gt;
:* Removed execute code functionality for safety reasons ([https://github.com/multitheftauto/mtasa-resources/commit/c4bc73a2b088b98116ece27065cc7f5a1dced15b c4bc73a] by '''jlillis''')&lt;br /&gt;
:* Replaced checkboxes with a gridlist for glitches and special world properties ([https://github.com/multitheftauto/mtasa-resources/commit/1dcb2953757c6741c93b9c63db33c032183047bc 1dcb295] by '''FileEX''')&lt;br /&gt;
:* Added ability to change server configuration settings ([https://github.com/multitheftauto/mtasa-resources/commit/118d58e383f631f111fe3f2463480182235c71d1 118d58e] by '''FileEX''')&lt;br /&gt;
:* Added content for &amp;quot;Resources&amp;quot; sub-tab in the &amp;quot;Rights&amp;quot; tab ([https://github.com/multitheftauto/mtasa-resources/commit/f16577e24ca9125eac5f2e96621077ad0d213b69 f16577e] by '''FileEX''')&lt;br /&gt;
:* Making the admin window focused ([https://github.com/multitheftauto/mtasa-resources/commit/33f7cc938d243687fa36fa300ec588b2d057d02c 33f7cc9] by '''Proxy-99''')&lt;br /&gt;
:* Fixed panel bind bug after reconnect ([https://github.com/multitheftauto/mtasa-resources/commit/c96bdd5297cf180f947596c1eded8929b4982e6c c96bdd5] by '''ricksterhd123''')&lt;br /&gt;
:* Added the new world special ([https://github.com/multitheftauto/mtasa-resources/commit/08ef1d07ee44540d1f74737e4871288568222331 08ef1d0] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''chatmanager'''&lt;br /&gt;
:* Added a new resource for chat handling and management ([https://github.com/multitheftauto/mtasa-resources/commit/4e45cb75a8780b0c191031091a4fcd2d76442aa7 4e45cb7] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''defaultstats'''&lt;br /&gt;
:* Don't re-apply stats on every respawn ([https://github.com/multitheftauto/mtasa-resources/commit/9fde199ec5025052468df0255bf5c5011ef29718 9fde199] by '''Dutchman101''')&lt;br /&gt;
:* Fixed issue where defaultstats did not set player stats correctly ([https://github.com/multitheftauto/mtasa-resources/commit/567d10c552305dae3f57d5c422a34c25f22fdc12 567d10c] by '''MittellBuurman''')&lt;br /&gt;
&lt;br /&gt;
'''editor'''&lt;br /&gt;
:* Various fixes for local spawned or invalid elements ([https://github.com/multitheftauto/mtasa-resources/commit/4e3c57941cd789cff8d9ce240e99edca871a345d 4e3c579] by '''chris1384''')&lt;br /&gt;
:* Various bug fixes and improvements ([https://github.com/multitheftauto/mtasa-resources/commit/4674fa9c6dbff7a1073fb949cac44588c65df3fb 4674fa9] by '''IIYAMA12''')&lt;br /&gt;
:* Fixed rotation issues ([https://github.com/multitheftauto/mtasa-resources/commit/679c01b93132050548a86dba25ead7feaf9d5a1f 679c01b] by '''Nico834''')&lt;br /&gt;
:* Toggleable rotation mechanic and improve threshold ([https://github.com/multitheftauto/mtasa-resources/commit/83e2c79cbd959aa54c55d4220a5b4d38747e8353 83e2c79] by '''chris1384''')&lt;br /&gt;
:* Added missing objects and collisions ([https://github.com/multitheftauto/mtasa-resources/commit/4e83755d51345c0dc8e2e0f2ddf61588bf854641 4e83755] by '''THEGizmoOfficial''')&lt;br /&gt;
&lt;br /&gt;
'''edf'''&lt;br /&gt;
:* Fixed massive lag after stopping ''editor'' resource ([https://github.com/multitheftauto/mtasa-resources/commit/4674fa9c6dbff7a1073fb949cac44588c65df3fb 4674fa9] by '''IIYAMA12''')&lt;br /&gt;
&lt;br /&gt;
'''editor_main'''&lt;br /&gt;
:* Improvements ([https://github.com/multitheftauto/mtasa-resources/commit/5bf553f85cb9c53027814fe666268cb24ed66b2e 5bf553f], [https://github.com/multitheftauto/mtasa-resources/commit/e9b75fd615922c7d70f4e435a05fa933dcb9d2a5 e9b75fd] by '''q8X''')&lt;br /&gt;
:* Add xmlns namespace when saving map ([https://github.com/multitheftauto/mtasa-resources/commit/23fa3f38f71c2f3d28780df1b3ce163ab2eaae84 23fa3f3] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''editor_gui'''&lt;br /&gt;
:* Fixed test panel issues ([https://github.com/multitheftauto/mtasa-resources/commit/e558c846e8b0589997f342f431b36fdc371da000 e558c84] by '''chris1384''')&lt;br /&gt;
&lt;br /&gt;
'''fallout'''&lt;br /&gt;
:* Refactor &amp;amp; many improvements ([https://github.com/multitheftauto/mtasa-resources/commit/c733b69a735d004235ba61b1201ac1412acc6482 c733b69] by '''IIYAMA12''')&lt;br /&gt;
&lt;br /&gt;
'''freeroam'''&lt;br /&gt;
:* Updated skins.xml ([https://github.com/multitheftauto/mtasa-resources/commit/cacbe40a805402dec3a62180b987d4b777817ea6 cacbe40] by '''shadylua''')&lt;br /&gt;
:* Added Walk styles ([https://github.com/multitheftauto/mtasa-resources/commit/4a18d7585a2fa45eaed18d4b4796744a235a23c5 4a18d75] by '''shadylua''')&lt;br /&gt;
:* Security improvements ([https://github.com/multitheftauto/mtasa-resources/commit/2ec92132036d0dc073279dda3c88d71f578d651f 2ec9213] by '''IIYAMA12''')&lt;br /&gt;
:* Fixed freezetime flickering ([https://github.com/multitheftauto/mtasa-resources/commit/b40f27be0274b641c2cddd4c75a6f86f73ea4941 b40f27b], [https://github.com/multitheftauto/mtasa-resources/commit/817aa1ea9130fbccb1a23b7410309af2f8a21ddc 817aa1e] by '''ricksterhd123''' and '''jlillis''')&lt;br /&gt;
:* Fixed map key bind interferes with race editor help ([https://github.com/multitheftauto/mtasa-resources/commit/e62bc5471433b347b16c15709d469209cf202390 e62bc54] by '''MittellBuurman''')&lt;br /&gt;
:* Fixed player blips staying visible after closing spawn map with F1 ([https://github.com/multitheftauto/mtasa-resources/commit/aaf2dd7ed7a0b6b6c6609a4ee5d8319101e8a674 1a5031c] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''hedit'''&lt;br /&gt;
:* Added German localization [[File:Flag_de.png|x14px]] ([https://github.com/multitheftauto/mtasa-resources/pull/568/commits/c58df8666fbccfb0be73f27c52aa680dae2f0c1a bc33634] by '''shadylua''')&lt;br /&gt;
:* Added Brazilian Portuguese localization [[File:Flag_br.png|x14px]] ([https://github.com/multitheftauto/mtasa-resources/commit/d1b85d7dda45293ce497cf03f21eea2f59100b89 d1b85d7] by '''ricksterhd123''')&lt;br /&gt;
:* Added Hungarian localization [[File:Flag_hu.png|x18px]] ([https://github.com/multitheftauto/mtasa-resources/commit/53050dd0bf73a164969480c9277fc3c6b0601b7e 53050dd] by '''Nico834''')&lt;br /&gt;
:* Updated Turkish localization [[File:Tr.gif]] ([https://github.com/multitheftauto/mtasa-resources/commit/3044d00a796488870556b19b088ac505c332952c 3044d00] by '''mahlukat5''')&lt;br /&gt;
:* Updated Spanish localization [[File:Flag_es.png|x18px]] ([https://github.com/multitheftauto/mtasa-resources/commit/b74c2393cc15e403d4588ebb671659c16cc36269 b74c239] by '''kxndrick0''')&lt;br /&gt;
&lt;br /&gt;
'''internetradio'''&lt;br /&gt;
:* Fixed that the GUI window of the resource &amp;quot;internetradio&amp;quot; collides with the GUI window of the resource &amp;quot;helpmanager&amp;quot; ([https://github.com/multitheftauto/mtasa-resources/commit/313f3dde6b7cdb389f11f1a62a6d3e8c093c159f 313f3dd] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Improvements ([https://github.com/multitheftauto/mtasa-resources/commit/a3c9e17cf6b85374b5f9b5881937aee97da94745 a3c9e17] by '''srslyyyy''')&lt;br /&gt;
:* Added attaching to vehicles ([https://github.com/multitheftauto/mtasa-resources/commit/3dd5cbd32f092337707277fbecc5ee54988e07fc 3dd5cbd] by '''ds1-e''')&lt;br /&gt;
:* Added admin commands ([https://github.com/multitheftauto/mtasa-resources/commit/5c160212e190f74461d65fac1668cda07a2d0b11 https://github.com/multitheftauto/mtasa-resources/commit/5c160212e190f74461d65fac1668cda07a2d0b11] by '''ds1-e''')&lt;br /&gt;
:* Added ability to show speaker owner ([https://github.com/multitheftauto/mtasa-resources/commit/6189fc1eefce29c8467c5a1093eaa8bfd8ed97f0 6189fc1] by '''ds1-e''')&lt;br /&gt;
:* Fixed playSound3D and track name showing in other dimensions ([https://github.com/multitheftauto/mtasa-resources/commit/d4c04db009cdd68913fdb47bbc73acd91e63f981 d4c04db] by '''mateo-14'''&lt;br /&gt;
&lt;br /&gt;
'''ip2c'''&lt;br /&gt;
:* Added missing fetchRemote aclrequest ([https://github.com/multitheftauto/mtasa-resources/commit/e1364c3ebcc956dbf7f61e2d89741837776edec2 e1364c3] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Added backed up file and .gitignore to ignore the real one (auto-updated) ([https://github.com/multitheftauto/mtasa-resources/commit/e182291a53c3c76a2cf45834ba313aa9d18c16f4 e182291] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''ipb'''&lt;br /&gt;
:* Replaced the onClientResource start event with the onPlayerResourceStart event ([https://github.com/multitheftauto/mtasa-resources/commit/cca3a05adf7fc940b913453a5fad5d5f3c8e3518 cca3a05] by '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
'''parachute'''&lt;br /&gt;
:* Fixed warnings about min_mta_version ([https://github.com/multitheftauto/mtasa-resources/commit/b4119cca4665d63a3043f14c1624ce9c96700b96 b4119cc] by '''NetroX1993''')&lt;br /&gt;
&lt;br /&gt;
'''playerblips'''&lt;br /&gt;
:* Fixed that the resource &amp;quot;playercolors&amp;quot; should be activated for teams ([https://github.com/multitheftauto/mtasa-resources/commit/2cd28db5fa891f361c5af07a491532378a820b83 2cd28db] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Real-time update of settings ([https://github.com/multitheftauto/mtasa-resources/commit/9505b181fe7fc2bab53142746f73bc64a8fd984d 9505b18] by '''Nico834''')&lt;br /&gt;
:* Improved debug messages ([https://github.com/multitheftauto/mtasa-resources/commit/4084e5d369907d3ededd1b2eb19c916983680154 4084e5d] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed that when a player changed or joined teams the color of the blip was not updated ([https://github.com/multitheftauto/mtasa-resources/commit/ff80005f114a3d010624f7d54510ffde47dddb00 ff80005] by '''T-MaxWiese-T''')&lt;br /&gt;
&lt;br /&gt;
'''playercolors'''&lt;br /&gt;
:* Player nametag color should revert to team color when the resource is stopped ([https://github.com/multitheftauto/mtasa-resources/commit/d45d2d0cd963186639d76ab1cb27ef6a042cd0bd d45d2d0] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed chat messages sent twice ([https://github.com/multitheftauto/mtasa-resources/commit/0547cf72514a7dc7efc987f47903c35b310a3b22 0547cf7] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''performancebrowser'''&lt;br /&gt;
:* Fixed player names not being reinitialized on change ([https://github.com/multitheftauto/mtasa-resources/commit/3e0166dc7fa9c11c596a7958b02423b6aeff8410 3e0166d] by '''YelehaUwU''')&lt;br /&gt;
&lt;br /&gt;
'''runcode'''&lt;br /&gt;
:* Added aclrequest for loadstring function ([https://github.com/multitheftauto/mtasa-resources/commit/c40b8095f054b6e87b46e1d53d9b6ec77cf943c7 c40b809] by '''IIYAMA12 ''')&lt;br /&gt;
&lt;br /&gt;
'''scoreboard'''&lt;br /&gt;
:* Replaced drawing arrow from path to texture ([https://github.com/multitheftauto/mtasa-resources/commit/128f26952810804df6acb233ca9476853caa1286 128f269] by '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
'''speedometer'''&lt;br /&gt;
:* Display at resource start ([https://github.com/multitheftauto/mtasa-resources/commit/31a5ac4013c3633647178e695474da6632eb38b8 31a5ac4] by '''Nico834''')&lt;br /&gt;
:* Preventing pointer overflow ([https://github.com/multitheftauto/mtasa-resources/commit/8689cdc247a3fd16125524aac04eb054c398084c 8689cdc] by '''Nico834''')&lt;br /&gt;
&lt;br /&gt;
'''superman'''&lt;br /&gt;
:* Fixes and improvements ([https://github.com/multitheftauto/mtasa-resources/commit/2b3bc102225b2f1c3144cffe290175e9a2c71728 2b3bc10], [https://github.com/multitheftauto/mtasa-resources/commit/e1c06c3c2581c16a6e05401381263a47dd6ac5f0 e1c06c3], [https://github.com/multitheftauto/mtasa-resources/commit/1e4319d180be0f482d42f2f32fbf2c1e5cd440cc 1e4319d] by '''ds1-e''')&lt;br /&gt;
&lt;br /&gt;
'''votemanager'''&lt;br /&gt;
:* Fixed lint error ([https://github.com/multitheftauto/mtasa-resources/commit/c8630075317123e510645464a3bf56ebb244573b c863007] by '''Dark-Dragon''')&lt;br /&gt;
&lt;br /&gt;
'''mapfixes'''&lt;br /&gt;
:* A new resource has been added that fixes many holes and bugs in the default map ([https://github.com/multitheftauto/mtasa-resources/commit/23f6bd94370440af5ed79a47bda1ff0caf92fa8e 23f6bd9] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''gps'''&lt;br /&gt;
:* Added export functions for custom logic ([https://github.com/multitheftauto/mtasa-resources/commit/537d92d11b357cf9e795a7bb3ec87c13fa62c7bc 537d92d] by '''T-MaxWiese-T''')&lt;br /&gt;
&lt;br /&gt;
'''deathmatch'''&lt;br /&gt;
:* Improvements and update ([https://github.com/multitheftauto/mtasa-resources/commit/a01ec8a86e636ca61f25a03d4ee30bd898754cbd a01ec8a], [https://github.com/multitheftauto/mtasa-resources/commit/b94ffddfd5b230544d54e5eca8c9c5d87dc69128 b94ffdd] by '''jlillis'''&lt;br /&gt;
&lt;br /&gt;
'''race'''&lt;br /&gt;
:* Fixed automatic nextid assignment breaking ([https://github.com/multitheftauto/mtasa-resources/commit/2c695a9e793825a8cafd2ee3be490d2d8e9ad318 2c695a9] by '''lotsofs''')&lt;br /&gt;
&lt;br /&gt;
'''voice_local'''&lt;br /&gt;
:* Improvements ([https://github.com/multitheftauto/mtasa-resources/commit/53cf63d83169018e0de9f45ecb565958855d717d 53cf63d] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''Others / Uncategorized'''&lt;br /&gt;
:* Refactor of resources meta.xml ([https://github.com/multitheftauto/mtasa-resources/commit/6713b07a459739c06112ac3e608776f3f0696144 6713b07] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
== Extra information ==&lt;br /&gt;
''More detailed information available on our GitHub repositories:&lt;br /&gt;
* [https://github.com/multitheftauto/mtasa-blue MTA:SA Blue]&lt;br /&gt;
* [https://github.com/multitheftauto/mtasa-resources MTA:SA Official Resources]&lt;br /&gt;
&lt;br /&gt;
[[Category:Changelog]]&lt;br /&gt;
[[Category:Incomplete]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Changes_in_1.7&amp;diff=82478</id>
		<title>Changes in 1.7</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Changes_in_1.7&amp;diff=82478"/>
		<updated>2025-09-17T02:05:46Z</updated>

		<summary type="html">&lt;p&gt;O22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pageclass class=&amp;quot;#4286f4&amp;quot; subcaption=&amp;quot;Next release&amp;quot;&amp;gt;&amp;lt;/pageclass&amp;gt;&lt;br /&gt;
{{Changelogs}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
'''This changelog is partial and needs updating. It is updated progressively to keep the page always up to date.'''&lt;br /&gt;
&lt;br /&gt;
* GitHub commit log: https://github.com/multitheftauto/mtasa-blue/compare/1.6.0...master&lt;br /&gt;
* GitHub milestone: https://github.com/multitheftauto/mtasa-blue/milestone/10&lt;br /&gt;
* Resources GitHub commit log: https://github.com/multitheftauto/mtasa-resources/compare/1.6.0...master&lt;br /&gt;
* Release announcement on forums: TBA&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Important notice to Windows 7 and 8.x users ==&lt;br /&gt;
If you are using Windows 7 or 8.x, please upgrade your system to Windows 10 or 11 as soon as possible. Windows 7 and 8.x are no longer supported by Microsoft (since January 2020 and January 2023 respectively) and most software (including Google Chrome and Steam) which means you are running an insecure system. Multi Theft Auto will also eventually drop Windows 7 and 8.x support sometime in the future, so it would be a good idea to start looking at upgrade options right now. Thank you!&lt;br /&gt;
&lt;br /&gt;
'''CEF in MTA is no longer updated for Windows 7 or 8.x. This is because CEF no longer supports those versions of Windows. This is bad for security, so please upgrade to Windows 10+ and MTA to 1.6+'''&lt;br /&gt;
&lt;br /&gt;
== 4 Deprecations ==&lt;br /&gt;
These changes will take effect in this version and scripts may need to be manually upgraded when updating:&lt;br /&gt;
* Changed [[base64Encode]] and [[base64Decode]] to throw a warning on use, please upgrade to [[encodeString]] and [[decodeString]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/30a83b0af164fb6920a2a60e089d08a6f5622f7d 30a83b0] by '''Nico834''')&lt;br /&gt;
* Changed [[setHelicopterRotorSpeed]] and [[getHelicopterRotorSpeed]] to throw a warning on use, please upgrade to [[setVehicleRotorSpeed]] and [[getVehicleRotorSpeed]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/82000c34830b51ace2d14e39f3b487feb1aac1da 82000c3] by '''FileEX''')&lt;br /&gt;
* Changes [[setPedOnFire]] and [[isPedOnFire]] to throw a warning on use, please upgrade to [[setElementOnFire]] and [[isElementOnFire]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/7ad96e2e78fe41f8924d3f105b1683f7363c6fcb 7ad96e2] by '''FileEX''')&lt;br /&gt;
* Changes [[removeAllGameBuildings]] and [[restoreAllGameBuildings]] to throw a warning on use, please upgrade to [[removeGameWorld]] and [[restoreGameWorld]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/d7adae68791ce237704acc06bf794b5fbda96f95#diff-93c130ddb85da32121129a437ac5b28ba16fa17f6e3506e4cddfb7bc3d8eb9fbR180 d7adae6] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
== Notable Changes ==&lt;br /&gt;
* Support for Discord Rich Presence ([https://github.com/multitheftauto/mtasa-blue/commit/fdaa3aca3e233c7aba69d0fd5f85e78288a4401a fdaa3ac], [https://github.com/multitheftauto/mtasa-blue/commit/ef26810df4542283fee8edcc165bc9be22f2ca98 ef26810], [https://github.com/multitheftauto/mtasa-blue/commit/acfbd40df1ff1432ea1d6663c005d43fce22899c acfbd40] by '''znjvder''', '''tederis''', '''patrikjuvonen''' and '''Deihim007''')&lt;br /&gt;
* Added support for [[Building]]'s ([https://github.com/multitheftauto/mtasa-blue/commit/81242edb9295efbf4bf8b198b12d577a0877aec2 81242ed], [https://github.com/multitheftauto/mtasa-blue/commit/eb6b18a5d49a7f0f34bdbf42b15f933e42876cf8 eb6b18a] by '''TheNormalnij''')&lt;br /&gt;
* Added the ability to generate a nickname ([https://github.com/multitheftauto/mtasa-blue/commit/12c50eee66898771244074a3a44818dab36a7ac3 12c50ee] by '''Nico834''')&lt;br /&gt;
* Added ''meta.xml'' loading files pattern ([https://github.com/multitheftauto/mtasa-blue/commit/90e2737d0a5eb12f34d2fd3c1f270bedf34cda35 90e2737] by '''W3lac3''')&lt;br /&gt;
* Added world properties (time cycle and weather related features) with new functions: [[setWorldProperty]], [[getWorldProperty]], [[resetWorldProperty]] ([https://github.com/multitheftauto/mtasa-blue/commit/a75f1e9a03e74f7c9d4ae9e5aef8433af84d5ea2 a75f1e9] by '''Samr46''')&lt;br /&gt;
* Added file-system related functions (list files and folders in directories) ([https://github.com/multitheftauto/mtasa-blue/commit/74781c6295b5b6dc81cd95d4cfab7900d88d7524 74781c6] by '''Tracer''')&lt;br /&gt;
* Added the ability to change the color and size of the target arrow in the checkpoint marker ([https://github.com/multitheftauto/mtasa-blue/commit/071378ec4326408a9520c79c96befca995d097f6 071378e] by '''FileEX''')&lt;br /&gt;
* Added the ability to change the alpha of checkpoint and arrow marker ([https://github.com/multitheftauto/mtasa-blue/commit/7988852cf3af9e78f662d76544dc00db408b5c87 7988852] by '''FileEX''')&lt;br /&gt;
* Fixed weapon issues when using the jetpack ([https://github.com/multitheftauto/mtasa-blue/commit/180fbc0b5fdba95450e7a519f78f7588849349bf 180fbc0], [https://github.com/multitheftauto/mtasa-blue/commit/a68c2c4232c28c6ba5595a814b89be976c4fa9c3 a68c2c4] by '''FileEX''')&lt;br /&gt;
* Fixed vehicle windows not being visible from the inside when the lights are on ([https://github.com/multitheftauto/mtasa-blue/commit/934c1d6cfef19902cc391c896bbe2f80ba5a4f70 934c1d6] by '''FileEX''')&lt;br /&gt;
* Fixed old [[setElementModel]] memory leak ([https://github.com/multitheftauto/mtasa-blue/commit/4e7afa2586c6992a75ac5312378c1096d87148ae 4e7afa2] by '''tederis''')&lt;br /&gt;
* Enabled WebGL (GPU Acceleration) in CEF ([https://github.com/multitheftauto/mtasa-blue/commit/026301168d2cd8239650a4f0aa33ff0be6d752dc 0263011] by '''TFP-dev''')&lt;br /&gt;
* Refactored '''Quick Connect button''' ([https://github.com/multitheftauto/mtasa-blue/commit/5b59e2236b30ec696ac1c05f8bb4e509ec06c0f7 5b59e22] by '''Fernando-A-Rocha''')&lt;br /&gt;
* Added setting to save camera photos in documents folder ([https://github.com/multitheftauto/mtasa-blue/commit/3419b9b7a20e3d1893d673a2a07ee1a0efda1bd5 3419b9b] by '''ffsPLASMA''')&lt;br /&gt;
* Added HUD customization ([https://github.com/multitheftauto/mtasa-blue/commit/5ea0e0fb23b21750207b23191db92562cf9b822c 5ea0e0f] by '''FileEX''')&lt;br /&gt;
* Added sync peds/players animations for new players ([https://github.com/multitheftauto/mtasa-blue/commit/b32eafc70816ece8ad995d98d380d8f6e9950475 b32eafc] by '''FileEX''')&lt;br /&gt;
* From now on, animation progress is preserved even after a restream; the animation will not start from the beginning. ([https://github.com/multitheftauto/mtasa-blue/commit/ad0d6bfdd7bf56b78f7c8c1b9a60597ef9b6dca3 ad0d6bf] by '''FileEX''')&lt;br /&gt;
* Added ability to replace CJ clothing models ([https://github.com/multitheftauto/mtasa-blue/commit/6b823653ecf68e181de91392d5d8931488f90f20 6b82365] by '''W3lac3''')&lt;br /&gt;
* New MTA splash window ([https://github.com/multitheftauto/mtasa-blue/commit/215173eeb1e015c0381ce94f95429c36ab1b4430 215173e] by '''botder''')&lt;br /&gt;
* Fixed multiple damage instances in certain areas during explosions ([https://github.com/multitheftauto/mtasa-blue/commit/3bce4080ec66a993096f9e7fb039cc7d5d0d8175 3bce408] by '''FileEX''')&lt;br /&gt;
* From now on, before disconnecting from the server using the main menu, you will be asked to confirm if you really want to do it ([https://github.com/multitheftauto/mtasa-blue/commit/6aa763fb79701c57402fccca9ae6c0f396fb8f3c 6aa763f] by '''tonievalue''')&lt;br /&gt;
&lt;br /&gt;
== Statistics ==&lt;br /&gt;
&amp;lt;section show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
These are some statistics since the [[Changes in 1.6.0|previous release]].&lt;br /&gt;
* This is the '''28&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt;''' 1.x.x release&lt;br /&gt;
* '''{{date difference|2023|06|16}}''' days&lt;br /&gt;
* '''39''' new functions&lt;br /&gt;
* '''12''' new events&lt;br /&gt;
* '''4''' deprecations&lt;br /&gt;
* '''50+''' bug fixes and changes&lt;br /&gt;
* '''734''' commits ([https://github.com/multitheftauto/mtasa-blue/compare/1.6.0...master mtasa-blue])  ([https://github.com/multitheftauto/mtasa-resources/compare/1.6.0...master mtasa-resources])&lt;br /&gt;
* '''78''' new open GitHub issues ([https://github.com/multitheftauto/mtasa-blue/issues?q=is%3Aopen+is%3Aissue+created%3A2023-06-16..2024-10-01 see list])&lt;br /&gt;
* '''29''' resolved GitHub issues ([https://github.com/multitheftauto/mtasa-blue/issues?q=is%3Aclosed+is%3Aissue+milestone%3A%221.6.1%22 see list])&lt;br /&gt;
* '''28''' closed GitHub issues ([https://github.com/multitheftauto/mtasa-blue/issues?q=is%3Aclosed+is%3Aissue+closed%3A2023-06-16..2024-10-01+no%3Amilestone+-label%3Ainvalid see list])&lt;br /&gt;
* '''30''' new open GitHub pull requests ([https://github.com/multitheftauto/mtasa-blue/pulls?q=is%3Aopen+is%3Apr+created%3A2023-06-16..2024-10-01 see list])&lt;br /&gt;
* '''81''' merged GitHub pull requests ([https://github.com/multitheftauto/mtasa-blue/pulls?q=is%3Apr+is%3Amerged+milestone%3A%221.6.1%22 see list])&lt;br /&gt;
* '''26''' closed GitHub pull requests ([https://github.com/multitheftauto/mtasa-blue/pulls?q=is%3Apr+is%3Aunmerged+closed%3A2023-06-16..2024-10-01 see list])&lt;br /&gt;
* '''2+''' contributors of which '''0+''' are new ([https://github.com/multitheftauto/mtasa-blue/graphs/contributors?from=2023-06-16&amp;amp;to=2024-10-01&amp;amp;type=c see list])&lt;br /&gt;
* '''100+''' total contributors ([https://github.com/multitheftauto/mtasa-blue/graphs/contributors see list])&lt;br /&gt;
* '''3''' vendor updates&lt;br /&gt;
&lt;br /&gt;
&amp;lt;sub&amp;gt;'''Note:''' Last update to these statistics was made {{date difference human friendly|2024|04|04}}.&amp;lt;/sub&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 86 New Features ==&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Added new ''special world properties'' to [[setWorldSpecialPropertyEnabled]] function&lt;br /&gt;
:* Added '''fireballdestruct''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
:* Added '''roadsignstext''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/4a746eca1b5a546a19344a76573a5108ff9d79e6 4a746ec] by '''FileEX''')&lt;br /&gt;
:* Added '''extendedwatercannons''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/13a53959f52c978b416c00b428938f82818b2312 13a5395] by '''FileEX''')&lt;br /&gt;
:* Added '''tunnelweatherblend''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/9a0790ec7fab1efb7817eead371744fcd47da5c5 9a0790e] by ''''gta191977649''')&lt;br /&gt;
:* Added '''ignorefirestate''' special world proeprty ([https://github.com/multitheftauto/mtasa-blue/commit/46f3580fbd8ea5cf48c14cf8fee0bd6eb6691854 46f3580] by '''FileEX''')&lt;br /&gt;
:* Added '''flyingcomponents''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/5ee641436821ae8a59484ac721a4ec929d5cc152 5ee6414] by '''FileEX''')&lt;br /&gt;
:* Added '''vehicleburnexplosions''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/88d303c0bbcc0ed4fee958df2d16ace562ce0108 88d303c] by '''samr46''')&lt;br /&gt;
:* Added '''vehicle_engine_autostart''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/8b3f3440f8bc485f90d466a3fe6f3e5819de9c2f 8b3f344] by '''samr46''')&lt;br /&gt;
&lt;br /&gt;
* Added new ''glitches'' to [[setGlitchEnabled]] function&lt;br /&gt;
:* Added '''vehicle_rapid_stop''' glitch ([https://github.com/multitheftauto/mtasa-blue/commit/3f5801e65d8a51d112b686485d4a2491151c3311 3f5801e], [https://github.com/multitheftauto/mtasa-blue/commit/ef792d6af62443f97014621334c7188dddb4ef29 ef792d6] by '''samr46''' and '''Merlin''')&lt;br /&gt;
&lt;br /&gt;
* New '''file''' functions&lt;br /&gt;
:* Added [[fileGetContents]] ([https://github.com/multitheftauto/mtasa-blue/commit/22930d854ce67d84a4a3b65a61b98a9ffd3f9e38 22930d8] by '''botder''')&lt;br /&gt;
:* Added [[fileGetHash]] ([https://github.com/multitheftauto/mtasa-blue/commit/94f944f508b99b5d7e84fbb0be07a483e10517a9 94f944f] by '''botder''')&lt;br /&gt;
&lt;br /&gt;
* New and updated [[object]] functions&lt;br /&gt;
:* '''[Updated]''' Added [[isObjectMoving]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/7c939adb892c08836462a78cd9b987884cdb49ee 7c939ad] by '''FileEX''')&lt;br /&gt;
:* '''[Updated]''' Added [[breakObject]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/aa1a7853f46fc796a94f38b7df2a5293fb941ba2 aa1a785] by '''FileEX''')&lt;br /&gt;
:* '''[Updated]''' Added [[respawnObject]] and [[toggleObjectRespawn]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/9d65bb673c4df16def27e97a4af74d3b0c7eedc9 9d65bb6] by '''FileEX''')&lt;br /&gt;
:* '''[New]''' Added [[isObjectRespawnable]] ([https://github.com/multitheftauto/mtasa-blue/commit/9d65bb673c4df16def27e97a4af74d3b0c7eedc9 9d65bb6] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New '''file-path''' functions&lt;br /&gt;
:* Added [[pathListDir]], [[pathIsFile]] and [[pathIsDirectory]] ([https://github.com/multitheftauto/mtasa-blue/commit/74781c6295b5b6dc81cd95d4cfab7900d88d7524 74781c6] by '''Tracer''')&lt;br /&gt;
&lt;br /&gt;
* New [[marker]] functions&lt;br /&gt;
:* Added [[setMarkerTargetArrowProperties]] and [[getMarkerTargetArrowProperties]] ([https://github.com/multitheftauto/mtasa-blue/commit/071378ec4326408a9520c79c96befca995d097f6 071378e] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[timer]] functions&lt;br /&gt;
:* Added [[setTimerPaused]] and [[isTimerPaused]] ([https://github.com/multitheftauto/mtasa-blue/commit/69aa420f21fde3ac56e3d3bbc62ef0f060295c0a 69aa420] by '''jvstns''')&lt;br /&gt;
&lt;br /&gt;
* New and updated '''world''' functions&lt;br /&gt;
:* '''[New]''' Added [[resetWorldProperties]] ([https://github.com/multitheftauto/mtasa-blue/commit/6df889e78328b80f8e4bdc02f8761472cf87c54c 6df889e] by '''FileEX''')&lt;br /&gt;
:* '''[Updated]''' Added [[isWorldSpecialPropertyEnabled]] and [[setWorldSpecialPropertyEnabled]] also to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
&lt;br /&gt;
* New and updated [[vehicle]] functions&lt;br /&gt;
:* '''[New]''' Added [[spawnVehicleFlyingComponent]] ([https://github.com/multitheftauto/mtasa-blue/commit/9f54cfcd7a584f413db731052ebed921acfc71ea 9f54cfc] by '''FileEX''')&lt;br /&gt;
:* '''[Upated]''' Added [[setVehicleNitroActivated]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/e9e5819c394987de2b9a5d581c4df9fd47057d9d#diff-49b4b89bf4463f38e70a325131b4da66457d783b1401dde0ffbad723624f8612R130 e9e5819] by '''Proxy-99''')&lt;br /&gt;
:* '''[Updated]''' Added [[addVehicleSirens]] and [[removeVehicleSirens]] to client-side ([https://github.com/multitheftauto/mtasa-blue/commit/682cdca3c37248a9e725b461ba322db413653f25 682cdca] by '''Proxy-99''')&lt;br /&gt;
&lt;br /&gt;
* Updated [[player]] functions&lt;br /&gt;
:* Added [[getPlayerScriptDebugLevel]] to client-side ([https://github.com/multitheftauto/mtasa-blue/commit/8403da54ecfd20d6b9740fb79d90ac936d316112 8403da5] by '''Nico834''')&lt;br /&gt;
&lt;br /&gt;
* Updated [[ped]] functions&lt;br /&gt;
:* Added [[isPedReloadingWeapon]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/e71f4828b46bb69b9622a11d0f700a79f986ee9b e71f482] by '''Nico834''')&lt;br /&gt;
&lt;br /&gt;
* New [[element]] functions&lt;br /&gt;
:* Added [[setElementOnFire]] and [[isElementOnFire]] ([https://github.com/multitheftauto/mtasa-blue/commit/7ad96e2e78fe41f8924d3f105b1683f7363c6fcb 7ad96e2] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
=== Client ===&lt;br /&gt;
====Functions====&lt;br /&gt;
* New '''engine''' functions &lt;br /&gt;
:* Added '''streaming''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/7ffc31243c1dbca8ed5e7b0f8c05da239aa918bd 7ffc312], [https://github.com/multitheftauto/mtasa-blue/commit/6c86ebbf0801c45d5e0bcbb9d9f2e8fd55525b15 6c86ebb], [https://github.com/multitheftauto/mtasa-blue/commit/3c44dc5dcde0a5f98ff470ce9bc64443d47de807 3c44dc5] by '''Pirulax''')&lt;br /&gt;
::* [[engineStreamingSetMemorySize]]&lt;br /&gt;
::* [[engineStreamingGetMemorySize]]&lt;br /&gt;
::* [[engineStreamingRestoreMemorySize]]&lt;br /&gt;
::* [[engineStreamingSetBufferSize]]&lt;br /&gt;
::* [[engineStreamingGetBufferSize]]&lt;br /&gt;
::* [[engineStreamingRestoreBufferSize]]&lt;br /&gt;
::* [[engineStreamingSetModelCacheLimits]]&lt;br /&gt;
:* Added '''model-streaming''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/008eaa7e36ae74bbab7c5bc9861d8f0f890eb945 008eaa7] by '''TheNormalnij''')&lt;br /&gt;
::* [[engineStreamingRequestModel]]&lt;br /&gt;
::* [[engineStreamingReleaseModel]]&lt;br /&gt;
::* [[engineStreamingGetModelLoadState]]&lt;br /&gt;
:* Added new '''TXD''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/3e9a3735a8022a0acabaa3041c8a3f8d91e547b7 3e9a373] by '''TheNormalnij''')&lt;br /&gt;
::* [[engineSetModelTXDID]]&lt;br /&gt;
::* [[engineResetModelTXDID]]&lt;br /&gt;
:* Added '''pools''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/bdf12215d1f6e73d87f5cb0881049aa224b46b65 bdf1221] by '''TheNormalnij''')&lt;br /&gt;
::* [[engineGetPoolCapacity]]&lt;br /&gt;
::* [[engineSetPoolCapacity]]&lt;br /&gt;
::* [[engineGetPoolDefaultCapacity]]&lt;br /&gt;
::* [[engineGetPoolUsedCapacity]]&lt;br /&gt;
:* Added [[enginePreloadWorldArea]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b72fb9d3c9e6813cdf56e53d1a1e72958abd3cf 5b72fb9] by '''MegadreamsBE''')&lt;br /&gt;
&lt;br /&gt;
* New functions for '''Discord RPC''' ([https://github.com/multitheftauto/mtasa-blue/commit/fdaa3aca3e233c7aba69d0fd5f85e78288a4401a fdaa3ac], [https://github.com/multitheftauto/mtasa-blue/commit/ef26810df4542283fee8edcc165bc9be22f2ca98 ef26810], [https://github.com/multitheftauto/mtasa-blue/commit/acfbd40df1ff1432ea1d6663c005d43fce22899c acfbd40] by '''znjvder''', '''tederis''', '''patrikjuvonen''' and '''Deihim007''')&lt;br /&gt;
:* [[setDiscordApplicationID]]&lt;br /&gt;
:* [[setDiscordRichPresenceDetails]]&lt;br /&gt;
:* [[setDiscordRichPresenceState]]&lt;br /&gt;
:* [[setDiscordRichPresenceAsset]]&lt;br /&gt;
:* [[setDiscordRichPresenceSmallAsset]]&lt;br /&gt;
:* [[setDiscordRichPresenceButton]]&lt;br /&gt;
:* [[resetDiscordRichPresenceData]]&lt;br /&gt;
:* [[isDiscordRichPresenceConnected]]&lt;br /&gt;
:* [[setDiscordRichPresencePartySize]]&lt;br /&gt;
:* [[setDiscordRichPresenceStartTime]]&lt;br /&gt;
:* [[setDiscordRichPresenceEndTime]]&lt;br /&gt;
:* [[getDiscordRichPresenceUserID]]&lt;br /&gt;
&lt;br /&gt;
* New [[building]] functions ([https://github.com/multitheftauto/mtasa-blue/commit/81242edb9295efbf4bf8b198b12d577a0877aec2 81242ed], [https://github.com/multitheftauto/mtasa-blue/commit/eb6b18a5d49a7f0f34bdbf42b15f933e42876cf8 eb6b18a] by '''TheNormalnij''')&lt;br /&gt;
:* [[createBuilding]]&lt;br /&gt;
:* '''[Deprecated]''' [[removeAllGameBuildings]] &lt;br /&gt;
:* '''[Deprecated]''' [[restoreAllGameBuildings]] &lt;br /&gt;
&lt;br /&gt;
* New '''world''' functions&lt;br /&gt;
:* Added [[processLineAgainstMesh]] ([https://github.com/multitheftauto/mtasa-blue/commit/acb80a3945d0d5e0230b8a41394a3fe3e70b8d0b acb80a3] by '''Pirulax''')&lt;br /&gt;
:* Added '''volumetric shadows''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/6c93a49c4c2381f4ce84df195d98d36372a47d37 6c93a49] by '''Proxy-99''')&lt;br /&gt;
:::* [[setVolumetricShadowsEnabled]]&lt;br /&gt;
:::* [[isVolumetricShadowsEnabled]]&lt;br /&gt;
:::* [[resetVolumetricShadows]]&lt;br /&gt;
:* Added [[testSphereAgainstWorld]] ([https://github.com/multitheftauto/mtasa-blue/commit/aa90aa5f31e59df455af33b49e3eee5e4f107bfd aa90aa5] by '''FileEX''')&lt;br /&gt;
:* Added [[removeGameWorld]] and [[restoreGameWorld]] ([https://github.com/multitheftauto/mtasa-blue/commit/d7adae68791ce237704acc06bf794b5fbda96f95 d7adae6] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
* New '''drawing''' functions&lt;br /&gt;
:* Added [[dxDrawModel3D]] ([https://github.com/multitheftauto/mtasa-blue/commit/f886a359dd4a680c080da7f132db0527116b5d7a f886a35], [https://github.com/multitheftauto/mtasa-blue/commit/04ef14bbf2182b356155f28d4ed972b0f293632f 04ef14b] by '''CrosRoad95''' and '''tederis''')&lt;br /&gt;
&lt;br /&gt;
* New '''effects/fx''' functions&lt;br /&gt;
:* Added [[fxCreateParticle]] ([https://github.com/multitheftauto/mtasa-blue/commit/8f2730d2e260c3319cb51101c6aedb45e22bbd89 8f2730d] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[ped]] functions&lt;br /&gt;
:* Added [[resetPedVoice]] ([https://github.com/multitheftauto/mtasa-blue/commit/18986a4542db5eb72f6d0dfffb80cb8bb6eb1442 18986a4] by '''Tracer''')&lt;br /&gt;
:* Added new animation features ([https://github.com/multitheftauto/mtasa-blue/commit/aa0591c6f7b529a27b4ed8667e1dc70e68bd9386 aa0591c] by '''Tracer''')&lt;br /&gt;
::* [[getPedAnimationProgress]]&lt;br /&gt;
::* [[getPedAnimationSpeed]]&lt;br /&gt;
::* [[getPedAnimationLength]]&lt;br /&gt;
:* Added [[killPedTask]] ([https://github.com/multitheftauto/mtasa-blue/commit/e4a502bc7619dc3913c70d169f6105ecfb0633ff e4a502b] by '''Proxy-99''')&lt;br /&gt;
:* Added ped shadow features ([https://github.com/multitheftauto/mtasa-blue/commit/26d18288730fd3a7a854152da60c9acd18ab6c6f 26d1828] by '''Proxy-99''')&lt;br /&gt;
::* [[setDynamicPedShadowsEnabled]]&lt;br /&gt;
::* [[isDynamicPedShadowsEnabled]]&lt;br /&gt;
::* [[resetDynamicPedShadows]]&lt;br /&gt;
:* Added [[playPedVoiceLine]] ([https://github.com/multitheftauto/mtasa-blue/commit/7067ac1a73bb0b8c5a1f37794504a00e9703332e 7067ac1] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[player]] functions&lt;br /&gt;
:* Added [[isPlayerCrosshairVisible]] ([https://github.com/multitheftauto/mtasa-blue/commit/03e851a2f5ff2d917ba3c7a1c7577fdb5b8d2a6f 03e851a], [https://github.com/multitheftauto/mtasa-blue/commit/5f21c32fb0725140d6d03476e08de330d429b55a 5f21c32] by '''FileEX''')&lt;br /&gt;
:* New '''HUD''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/5ea0e0fb23b21750207b23191db92562cf9b822c 5ea0e0f] by '''FileEX''')&lt;br /&gt;
::* [[setPlayerHudComponentProperty]]&lt;br /&gt;
::* [[getPlayerHudComponentProperty]]&lt;br /&gt;
::* [[resetPlayerHudComponentProperty]]&lt;br /&gt;
&lt;br /&gt;
* New [[vehicle]] functions&lt;br /&gt;
:* Added [[setVehicleWheelsRotation]] ([https://github.com/multitheftauto/mtasa-blue/commit/aeb113d269fffee7d9ac435ce87b51e905e9efa6 aeb113d] by '''gta191977649''')&lt;br /&gt;
:* Added [[getVehicleEntryPoints]] ([https://github.com/multitheftauto/mtasa-blue/commit/bf588c163cd5bc134771e3842a6585212f06307f bf588c1] by '''MegadreamsBE''')&lt;br /&gt;
:* Added [[setVehicleSmokeTrailEnabled]] and [[isVehicleSmokeTrailEnabled]] for planes ([https://github.com/multitheftauto/mtasa-blue/commit/a5dfc5223358127299511b618ab29da08ff23030 a5dfc52] by '''Proxy-99''')&lt;br /&gt;
:* Added [[setVehicleRotorState]] and [[getVehicleRotorState]] for planes and helicopters ([https://github.com/multitheftauto/mtasa-blue/commit/c7644f2773c37c4e3d40b00807f2e962daca83b6#diff-9a175949acc865a4deea435d73c2082716ab68c6811ef1a657783f3d420dc00fR165 c7644f2] by '''FileEX''')&lt;br /&gt;
:* Added '''vehicle audio''' functions: ([https://github.com/multitheftauto/mtasa-blue/commit/53ee579670ef4ecec28f44627ff99321bba48cbd 53ee579] by '''TheNormalnij''')&lt;br /&gt;
::* [[setVehicleModelAudioSetting]]&lt;br /&gt;
::* [[getVehicleModelAudioSettings]]&lt;br /&gt;
::* [[resetVehicleModelAudioSettings]]&lt;br /&gt;
::* [[setVehicleAudioSetting]]&lt;br /&gt;
::* [[getVehicleAudioSettings]]&lt;br /&gt;
::* [[resetVehicleAudioSettings]]&lt;br /&gt;
&lt;br /&gt;
* New '''camera''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/40ec398bb15e775d1552286eb86fe7aa0dffefa4 40ec398], [https://github.com/multitheftauto/mtasa-blue/commit/d9c2793de2a9f0782ec59cf0ef9907abf935d421 d9c2793] by '''Tracer''')&lt;br /&gt;
:* [[shakeCamera]]&lt;br /&gt;
:* [[resetShakeCamera]]&lt;br /&gt;
&lt;br /&gt;
* New '''game-time''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/b8b7ce555e2f0f0dd74425ac7c91786374513bee b8b7ce5] by '''Proxy-99''')&lt;br /&gt;
:* [[setTimeFrozen]]&lt;br /&gt;
:* [[isTimeFrozen]]&lt;br /&gt;
:* [[resetTimeFrozen]]&lt;br /&gt;
&lt;br /&gt;
* New [[element]] functions&lt;br /&gt;
:* Added [[setElementBoneQuaternion]] and [[getElementBoneQuaternion]] ([https://github.com/multitheftauto/mtasa-blue/commit/10098b0984bf5d5955ea1764e28f616c8a60714f 10098b0] by '''gownosatana''')&lt;br /&gt;
:* Added [[setElementLighting]] ([https://github.com/multitheftauto/mtasa-blue/commit/90fd98a6381991cfa926a9a65b9b934d0343e2b1 90fd98a] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[browser]] functions&lt;br /&gt;
:* Added [[isBrowserGPUEnabled]] ([https://github.com/multitheftauto/mtasa-blue/commit/bfdfdb5f44726df85626e6e3e06c2a319c0c8962 bfdfdb5] by '''Lpsd''')&lt;br /&gt;
&lt;br /&gt;
* New '''weapons''' functions&lt;br /&gt;
:* Added [[setWeaponRenderEnabled]] &amp;amp; [[isWeaponRenderEnabled]] ([https://github.com/multitheftauto/mtasa-blue/commit/efed59b7dc7b076219f1c8a868ef8aa028582127 efed59b] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
====Events====&lt;br /&gt;
* Added [[onClientCoreCommand]] ([https://github.com/multitheftauto/mtasa-blue/commit/b2cf02943924c4972d2a695cdbfd7c9873fc3cbb b2cf029] by '''Pieter-Dewachter''')&lt;br /&gt;
&lt;br /&gt;
* Added [[onClientBrowserConsoleMessage]] ([https://github.com/multitheftauto/mtasa-blue/pull/3676 #3676], [https://github.com/multitheftauto/mtasa-blue/commit/d296a653c5ce2ecfd4f7150d74391b703b773baf d296a65] by '''gownosatana''' and '''Tracer''')&lt;br /&gt;
&lt;br /&gt;
=== Server ===&lt;br /&gt;
====Functions====&lt;br /&gt;
* New [[ACL]] functions&lt;br /&gt;
:* Added [[aclObjectGetGroups]] ([https://github.com/multitheftauto/mtasa-blue/commit/cf46bd8487bdb2d0cafdab1f43936357f670fe10 cf46bd8] by '''Tracer''')&lt;br /&gt;
&lt;br /&gt;
* New '''acl-account''' functions&lt;br /&gt;
:* Added [[getAccountType]] ([https://github.com/multitheftauto/mtasa-blue/commit/545f54b6ae0bfc721abba12402ad3787ed9ae811 545f54b] by '''Tracer''')&lt;br /&gt;
:* Added [[setAccountSerial]] ([https://github.com/multitheftauto/mtasa-blue/commit/a0c2e410f225ebd245a7c5b8031812cf94360097 a0c2e41] by '''camargo2019''')&lt;br /&gt;
&lt;br /&gt;
* New [[vehicle]] functions&lt;br /&gt;
:* Added new vehicle respawn functions ([https://github.com/multitheftauto/mtasa-blue/commit/1ff7137fd4477626d7ef4abfb1c696872cdf0eab 1ff7137], [https://github.com/multitheftauto/mtasa-blue/commit/d93287de761e568400b3b555a277e4ead6546ca3 d93287d] by '''Tracer''')&lt;br /&gt;
::* [[isVehicleRespawnable]]&lt;br /&gt;
::* [[getVehicleRespawnDelay]]&lt;br /&gt;
::* [[getVehicleIdleRespawnDelay]]&lt;br /&gt;
&lt;br /&gt;
* Added [[createBuilding]] to server-side also ([https://github.com/multitheftauto/mtasa-blue/commit/6e221298f4998c576ebf5a783cd0761b89117a7a 6e22129] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
* Security improvements for element-data system ([https://github.com/multitheftauto/mtasa-blue/commit/750d09adb9fd35f4c1b7786966b7ca292e35c200 750d09a] by '''TheNormalnij''')&lt;br /&gt;
:* Added [[onPlayerChangesProtectedData]] event&lt;br /&gt;
:* Added '''elementdata_whitelisted''' tag to the '''mtaserver.conf'''&lt;br /&gt;
:* Added '''clientChangesPolicy''' argument to the [[setElementData]].&lt;br /&gt;
&lt;br /&gt;
* Added new [[Server_mtaserver.conf|mta_server.conf]] tags:&lt;br /&gt;
&amp;lt;!--:* Added object specific contact radius and limit contact check. This can be set in the [[server_mtaserver.conf#object_contact_sync_radius|mtaserver.conf]]([https://github.com/multitheftauto/mtasa-blue/commit/6085796cafd1008ed4a74eae614d651c6c734741 6085796] by '''MegadreamsBE''')--&amp;gt;&lt;br /&gt;
:* Added [[Server_mtaserver.conf#vehicle_contact_sync_radius#vehicle_contact_sync_radius|vehicle_contact_sync_radius]] tag ([https://github.com/multitheftauto/mtasa-blue/commit/e3338c2fbbdb500c4ce28dc0677ceadef1f1ca4c e3338c2] by '''MegadreamsBE''')&lt;br /&gt;
:* Added [[Server_mtaserver.conf#vehicle_contact_sync_radius#check_duplicate_serials|check_duplicate_serials]] tag ([https://github.com/multitheftauto/mtasa-blue/commit/e094942b75117a49cae8c35d6508f37d0cf511fe e094942] by '''Nico834''')&lt;br /&gt;
:* Added [[Server_mtaserver.conf#vehicle_contact_sync_radius#elementdata_whitelisted|elementdata_whitelisted]] tag [https://github.com/multitheftauto/mtasa-blue/commit/750d09adb9fd35f4c1b7786966b7ca292e35c200 750d09a] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
====Events====&lt;br /&gt;
* Added [[onExplosion]] event ([https://github.com/multitheftauto/mtasa-blue/commit/9edffc4997579583407e8c2910264b344cf626a3 9edffc4] by '''botder''')&lt;br /&gt;
* Added [[onPlayerProjectileCreation]] and [[onPlayerDetonateSatchels]] events ([https://github.com/multitheftauto/mtasa-blue/commit/bc404021f66228fb00f1f136a606425da6075daa bc40402] by '''Zangomangu''')&lt;br /&gt;
* Added [[onPlayerTriggerEventThreshold]] event ([https://github.com/multitheftauto/mtasa-blue/commit/eae47fe2f432d9053c425fd515ea27f963c254ec eae47fe] by '''Lpsd''')&lt;br /&gt;
* Added [[onResourceStateChange]] ([https://github.com/multitheftauto/mtasa-blue/commit/cfe9cd9d0006580e7e70dc9e93672e3d1d3b9836 cfe9cd9] by '''Tracer''')&lt;br /&gt;
* Added [[onPlayerTeamChange]] ([https://github.com/multitheftauto/mtasa-blue/commit/c4e18c618db299ea05f5395c798f2a7d6515f5ea c4e18c6] by '''esmail9900''')&lt;br /&gt;
* Added [[onAccountCreate]] and [[onAccountRemove]] ([https://github.com/multitheftauto/mtasa-blue/commit/545f54b6ae0bfc721abba12402ad3787ed9ae811 545f54b] by '''Tracer''')&lt;br /&gt;
* Added [[onPlayerTriggerInvalidEvent]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b4122d35f725e4d258b408253c93e7cbd2ec783 5b4122d] by '''Lpsd''')&lt;br /&gt;
* Added [[onPlayerChangesWorldSpecialProperty]] event ([https://github.com/multitheftauto/mtasa-blue/commit/bbf511d4c5a94fc42d4ead201446fcef8ae430ec bbf511d] by '''Nico834''')&lt;br /&gt;
* Added [[onPlayerChangesProtectedData]] event ([https://github.com/multitheftauto/mtasa-blue/commit/750d09adb9fd35f4c1b7786966b7ca292e35c200 750d09a] by '''TheNormalnij''')&lt;br /&gt;
* Added [[onShutdown]] ([https://github.com/multitheftauto/mtasa-blue/commit/aa20c7d279ac92f1f98c54e79fda7fe00de64e50 aa20c7d] by '''FileEX''')&lt;br /&gt;
* Added [[onPedWeaponReload]] and [[onPlayerWeaponReload]] ([https://github.com/multitheftauto/mtasa-blue/commit/e71f4828b46bb69b9622a11d0f700a79f986ee9b e71f482] by '''Nico834''')&lt;br /&gt;
* Added [[onPlayerTeleport]] ([https://github.com/multitheftauto/mtasa-blue/commit/4000ea4edb37d2d2caeb60a5977f7a38c8a22f06 a38e6ac] by '''imfelipedev''')&lt;br /&gt;
* Added [[onAccountNameChange]] ([https://github.com/multitheftauto/mtasa-blue/commit/078d46b13164c940f3a713039e1a1be6d52c6c76 078d46b] by '''Davis22d''')&lt;br /&gt;
&lt;br /&gt;
== 77 Changes and Bug Fixes ==&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Fixed random toggle of world special properties ([https://github.com/multitheftauto/mtasa-blue/commit/bf95b1d16e31f36899350e2acac4bb8adfad5cdd bf95b1d] by '''samr46''')&lt;br /&gt;
* Many debugscript fixes&lt;br /&gt;
:* Fixed [[onClientDebugMessage]]/[[onDebugMessage]] recognizing level 4 as 0 ([https://github.com/multitheftauto/mtasa-blue/commit/783971efbdfcae622dbc03fd7647c337c2a3a306 783971e] by '''Tracer''')&lt;br /&gt;
:* Fixed outputDebugString level 4 colors ([https://github.com/multitheftauto/mtasa-blue/commit/5d4d7df3b8ff703cf954f3af394c811c489dcb18 5d4d7df] by '''MegadreamsBE''')&lt;br /&gt;
:* Fixed [[outputDebugString]] level 4 not being logged ([https://github.com/multitheftauto/mtasa-blue/commit/1951a5e62d35b2cf4ec292d294f8c818b8463418 1951a5e] by '''MegadreamsBE''')&lt;br /&gt;
:* Fixed outputDebugString with level 4 not showing ([https://github.com/multitheftauto/mtasa-blue/commit/b459973f8ad00aff79042a338a70700a21b426dc b459973] by '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
* Ped sync improvements ([https://github.com/multitheftauto/mtasa-blue/commit/f5b599c9f45777f924f7980cadb2d3cc6431d8b8 f5b599c] by '''tederis''')&lt;br /&gt;
* Fixed &amp;quot;Using setElementHealth on a dead ped makes it invincible&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/836888379dc3e434752ad20c10a8d7d33ffc65a2 8368883] by '''FileEX''')&lt;br /&gt;
* Fixed setting player model resets their current weapon slot ([https://github.com/multitheftauto/mtasa-blue/commit/f7ce562b645cb05a18658df62d093b753b881bb9 f7ce562] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where ''&amp;quot;arrow&amp;quot;'' and ''&amp;quot;checkpoint&amp;quot;'' markers ignored the alpha color ([https://github.com/multitheftauto/mtasa-blue/commit/7988852cf3af9e78f662d76544dc00db408b5c87 7988852] by '''FileEX''')&lt;br /&gt;
* Fixed the goggle effect resetting after changing skin ([https://github.com/multitheftauto/mtasa-blue/commit/1dd291409f791891b54ccf6b1d1cebe08cff13c0 1dd2914] by '''Proxy-99''')&lt;br /&gt;
* Fixed satchels detaching after changing skin ([https://github.com/multitheftauto/mtasa-blue/commit/d93dbf2ca598bf3508364bc7c6337d82c3d9ccb2 d93dbf2] by '''FileEX''')&lt;br /&gt;
* Added '''resourceName''' global variable and added current resource as default argument for [[getResourceName]] ([https://github.com/multitheftauto/mtasa-blue/commit/49fb6c68a27ad85e5abcd563f4c4f8c568305fdb 49fb6c6] by '''Nico834''')&lt;br /&gt;
* Added new parameters '''animGroup''' &amp;amp; '''animID''' for wasted events [[onPlayerWasted]], [[onPedWasted]], [[onClientPlayerWasted]] ([https://github.com/multitheftauto/mtasa-blue/commit/ecd6ed98ca129e7f45bda14384a503bee09495a7 ecd6ed9] by '''Nico834''' and '''G-Moris''')&lt;br /&gt;
* Added optional '''ignoreAlphaLimits''' argument for [[createMarker]] to maintain backward compatibility after adding the ability to change alpha for arrow and checkpoint markers ([https://github.com/multitheftauto/mtasa-blue/commit/121048cb9a14c28dcefca9bf2d4e955ef920a087 121048c] by '''FileEX''')&lt;br /&gt;
* Added optional '''property''' argument for [[getVehicleHandling]] ([https://github.com/multitheftauto/mtasa-blue/commit/a08e38d6507fdc1c051c2b84727c83dd9c418649 a08e38d] by '''XJMLN''')&lt;br /&gt;
* Fixed health value issues ([https://github.com/multitheftauto/mtasa-blue/commit/612f9a6715059baa43182e891258d9c3ceb19591 612f9a6] by '''Tracer''')&lt;br /&gt;
* Fixed [[getTimerDetails]] negative remaining duration ([https://github.com/multitheftauto/mtasa-blue/commit/1c6cab5a94c8c6ff5cf9b1fc0c9bc04808c922f8 1c6cab5] by '''jvstns''')&lt;br /&gt;
* Fixed changing [[setElementCollisionsEnabled]] doesn't update contact element ([https://github.com/multitheftauto/mtasa-blue/commit/71c683f547aac34e876601d24c881227fe3ca05f 71c683f] by '''FileEX''')&lt;br /&gt;
* Removed ability to skip [[addDebugHook]] ([https://github.com/multitheftauto/mtasa-blue/commit/2fecd74fdd453efdcbdddfd8f3fa3c092640cf9f 2fecd74] by '''PlatinMTA''')&lt;br /&gt;
* Fixed hydraulics stopping working after using [[setVehicleHandling]] ([https://github.com/multitheftauto/mtasa-blue/commit/f96836397a075585d4d112eb7d0240f1abf361d4 f968363] by '''FileEX''')&lt;br /&gt;
* Fixed helicopter rotor unaffected by vehicle alpha ([https://github.com/multitheftauto/mtasa-blue/commit/55d39225254c0b9961c1423b0d5695beff20072b 55d3922] by '''FileEX''')&lt;br /&gt;
* Add '''spawnFlyingComponent &amp;amp; breakGlass''' arguments for [[setVehiclePanelState]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b69d700c848e36b2f427bbc6ba5b2c905592783 5b69d70] by '''FileEX''')&lt;br /&gt;
* Fixed armor synchronization ([https://github.com/multitheftauto/mtasa-blue/commit/583e675da976fbf90f45804ad834d8fe33c779a1 583e675] by '''Nico834''')&lt;br /&gt;
* Fixed jetpack disappearing after changing position and coming back after changing skin ([https://github.com/multitheftauto/mtasa-blue/commit/de26a9e98519350f0486290ce886595068c02470 de26a9e] by '''FileEX''')&lt;br /&gt;
* Added support for '''ZLIB''' compression to [[encodeString]] &amp;amp; [[decodeString]]. ([https://github.com/multitheftauto/mtasa-blue/commit/6230161f8d0c83b60aec3f4afa5be88dd213b88b 6230161] by '''samr46''')&lt;br /&gt;
* Fixed a bug where hex color codes were included in the chat message length. ([https://github.com/multitheftauto/mtasa-blue/commit/9a0b1d59233f7001e991262b4df9d1c17850dc08 9a0b1d5] by '''shadylua''')&lt;br /&gt;
&lt;br /&gt;
=== Client ===&lt;br /&gt;
* Update d3dcompiler_47.dll from CEF ([https://github.com/multitheftauto/mtasa-blue/commit/75a1a298113721343090a06d60394f63f64df9ca 75a1a29] and [https://github.com/multitheftauto/mtasa-blue/commit/6d8fd8cc2fe7377318583f70abf58dcdb7d09cb0 6d8fd8c] by '''patrikjuvonen''')&lt;br /&gt;
* Updated translations from Crowdin ([https://github.com/multitheftauto/mtasa-blue/commit/29baf29a0143706eb08ef76c4743a452a7f83600 29baf29] by '''patrikjuvonen''')&lt;br /&gt;
:* Added Azerbaijani to client languages&lt;br /&gt;
* Resolved cursor being invisible with main menu open in certain scenarios ([https://github.com/multitheftauto/mtasa-blue/commit/bb1f675e6fee0ca3967f05afb5d2592dec9459b2 bb1f675] by '''Lpsd''')&lt;br /&gt;
* Partially fixed screen flickering on high memory usage ([https://github.com/multitheftauto/mtasa-blue/commit/1a886460a9fab1041cfba38078ae544b0fa51240 1a88646] by '''Zangomangu''')&lt;br /&gt;
* Added ''texture hit info'' parameter to [[processLineOfSight]] ([https://github.com/multitheftauto/mtasa-blue/commit/86f3344d1371a9783c2c7b755b895160a03ff6cd 86f3344] by '''Pirulax''')&lt;br /&gt;
* Fixed CStreamingSA::GetUnusedStreamHandle ([https://github.com/multitheftauto/mtasa-blue/commit/38624a4c2d18f4b60064d49069d3bcd81fbb4385 38624a4] by '''tederis''')&lt;br /&gt;
* IMG count extension ([https://github.com/multitheftauto/mtasa-blue/commit/1a60f6094b6660d29cabae780e6fbea5f5f1abf2 1a60f60] by '''tederis''')&lt;br /&gt;
* Fixed a desync state after aborted carjacking ([https://github.com/multitheftauto/mtasa-blue/commit/3f510fcdc7722cdfcb2e09ea43990b56aa43162b 3f510fc] by '''Zangomangu''')&lt;br /&gt;
* Allowed allocating clump models ([https://github.com/multitheftauto/mtasa-blue/commit/428561f1ebab49b8370ef0f022510cd67e98ab59 428561f] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash in CEF init ([https://github.com/multitheftauto/mtasa-blue/commit/c782826c955dfbdbaa67852a245e1c601d6b9f2c c782826] by '''TheNormalnij''')&lt;br /&gt;
* Fixed &amp;quot;Changing vehicle model from doorless or &amp;quot;doorful&amp;quot; causes doors to fall off&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/d6659dae263e2883d9e479ca271f0e9c8e622f95 d6659da] by '''FileEX''')&lt;br /&gt;
* Fixed &amp;quot;Wheel visibility when using setVehicleWheelStates&amp;quot;  ([https://github.com/multitheftauto/mtasa-blue/commit/51c9257a427957642932a216bd76cb7de59fea1b 51c9257] by '''FileEX''')&lt;br /&gt;
* Added new world special property ''burnflippedcars'' ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
* Streaming buffer restore and fixes ([https://github.com/multitheftauto/mtasa-blue/commit/6c86ebbf0801c45d5e0bcbb9d9f2e8fd55525b15 6c86ebb] by '''Pirulax''')&lt;br /&gt;
* Fixed Unicode file path passed in CClientIMG ([https://github.com/multitheftauto/mtasa-blue/commit/c57f07bfad8b02953dbe7b2b6e9b9de08ba88226 c57f07b] by '''TheNormalnij''')&lt;br /&gt;
* Added new world special property ''fireballdestruct'' ([https://github.com/multitheftauto/mtasa-blue/commit/219ad73d600140724eefcf5ca4040ac417cdee12 219ad73] by '''samr46''')&lt;br /&gt;
* Fixed &amp;quot;Hide question box when hiding main menu&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/4beff0447f093c66594a5f32ad5e52c7d7188ce9 4beff04] by '''XJMLN''')&lt;br /&gt;
* Fixed engineFreeModel regression ([https://github.com/multitheftauto/mtasa-blue/commit/b52500e92fb2591c092a6e66121471f098a2e044 b52500e] by '''TheNormalnij''')&lt;br /&gt;
* Fixed assert when model info is missing ([https://github.com/multitheftauto/mtasa-blue/commit/d431e5e16120b63beafbfe69110da601d12a76bb d431e5e] by '''TheNormalnij''')&lt;br /&gt;
* Fixed engineFreeModel crashes ([https://github.com/multitheftauto/mtasa-blue/commit/c289c22fb9a13730b7fd793752d84adbf2b928ee c289c22] by '''TheNormalnij''')&lt;br /&gt;
* Filtered URLs in requestBrowserDomains with incorrect symbols ([https://github.com/multitheftauto/mtasa-blue/commit/74bbb068acc6757ff0e04d0c63b999236e51ce63 74bbb06] by '''TheNormalnij''')&lt;br /&gt;
* Fixed issues with ped shaders ([https://github.com/multitheftauto/mtasa-blue/commit/3bc1e6d98ab13a9e7db95cc616b4645dc761889b 3bc1e6d] by '''Merlin''')&lt;br /&gt;
* Fixed 3D primitives disappearing ([https://github.com/multitheftauto/mtasa-blue/commit/04a1e2ba9157e4a1a91297f91554b72a87bf0ed4 04a1e2b] by '''tederis''')&lt;br /&gt;
* Fixed [[svgSetSize]] issues ([https://github.com/multitheftauto/mtasa-blue/commit/721c2b6d0f0c4ab016be079f1d4e28dec0123a6d 721c2b6] by '''Nico834''')&lt;br /&gt;
* Fixed the marker flickering issue during water cannon effects ([https://github.com/multitheftauto/mtasa-blue/commit/e83f700ee24904c0411b4dad3e695b3c3e30d9e4 e83f700] by '''Merlin''')&lt;br /&gt;
* Fixed buildings removal ([https://github.com/multitheftauto/mtasa-blue/commit/1b40db7cb5b63966ee97d0cbe79190360e1d32a0 1b40db7] by '''tederis''')&lt;br /&gt;
* Fixed crashes caused by [[createBuilding]] with [[engineRequestModel]] ([https://github.com/multitheftauto/mtasa-blue/commit/6245a68f3d97fc222d78fbc66b67f422a13710bf 6245a68] by '''TheNormalnij''')&lt;br /&gt;
* Fixed wrong getModelMatrix result for buildings ([https://github.com/multitheftauto/mtasa-blue/commit/f691946bc2d3dac75bd27d31886cd6b66d55811d f691946] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crashes for ''timed-object'' in [[engineRequestModel]] ([https://github.com/multitheftauto/mtasa-blue/commit/229389a4bd1c4c02010ba27ce26a428b41b68560 229389a] by '''TheNormalnij''')&lt;br /&gt;
* Fixed incorrect colors for 3D draws ([https://github.com/multitheftauto/mtasa-blue/commit/1f2c6e75fb71b01f0053f151e766a232ed33692b 1f2c6e7] by '''Nico834''')&lt;br /&gt;
* Add missing definition GuiGridList::getColumnWidth ([https://github.com/multitheftauto/mtasa-blue/commit/b34b1d5362291bcf00c7a0a0b694f60e1dccb363 b34b1d5] by '''Lpsd''')&lt;br /&gt;
* Fixed [[resetPedVoice]] not working at all ([https://github.com/multitheftauto/mtasa-blue/commit/3d8bd504f009fc2aa66e1dc9d35427a889ccd6aa 3d8bd50] by '''Tracer''')&lt;br /&gt;
* Added LOD support for buildings ([https://github.com/multitheftauto/mtasa-blue/commit/77ab3e64a3c6dacdcee02a223b67aec6c5b97ec2 77ab3e6] by '''TheNormalnij''')&lt;br /&gt;
* Added render stages for 3D primitives (new ''stage'' parameter) ([https://github.com/multitheftauto/mtasa-blue/commit/841447684c2d1992656555f81d73da52b2ce5c4f 8414476] by '''tederis''')&lt;br /&gt;
* Added disable option for [[engineSetModelPhysicalPropertiesGroup]] ([https://github.com/multitheftauto/mtasa-blue/commit/b6216cad058582b0feb34e98e94531d4acbf7c5b b6216ca] by '''TheNormalnij''')&lt;br /&gt;
* Fixed return correct value for stuntDistance parameter ([https://github.com/multitheftauto/mtasa-blue/commit/1f464d61c8c5f1400faa5472ccb67d2436d52903 1f464d6] by '''XJMLN''')&lt;br /&gt;
* Fixed [[engineRestoreModelPhysicalPropertiesGroup]] restores incorrect group ([https://github.com/multitheftauto/mtasa-blue/commit/291dfb4bc9bd72307a4ba4b42ffcbfc03ded4e38 291dfb4] by '''TheNormalnij''')&lt;br /&gt;
* Fixed OGG sound files can't be played as RAW data ([https://github.com/multitheftauto/mtasa-blue/commit/2764b7983c4e1bde20b894ebcfef5f230b149030 2764b79] by '''FileEX''')&lt;br /&gt;
* Implement [[getElementBoundingBox]] for buildings ([https://github.com/multitheftauto/mtasa-blue/commit/7b228daea3e0dc22d808abcf0eb568d99efcf63d 7b228da] by '''TheNormalnij''')&lt;br /&gt;
* Fixed streaming size check after [[engineAddImage]] ([https://github.com/multitheftauto/mtasa-blue/commit/5cdc04d6d61f40e89a5da3d27ae9575f4a419a08 5cdc04d] by '''TheNormalnij''')&lt;br /&gt;
* Fixed [[removeWorldModel]] crash ([https://github.com/multitheftauto/mtasa-blue/commit/ae98b04753b54208961759b295bef44f0ffafe43 ae98b04] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash when using [[extinguishFire]] in [[onClientVehicleDamage]] event ([https://github.com/multitheftauto/mtasa-blue/commit/d6ae4e9e24b0b7de704a3cbeec25dfd661b4a3fc d6ae4e9] by '''FileEX''')&lt;br /&gt;
* Fixed weapon models being invisible when using the jetpack with [[setJetpackWeaponEnabled]] ([https://github.com/multitheftauto/mtasa-blue/commit/a68c2c4232c28c6ba5595a814b89be976c4fa9c3 a68c2c4] by '''FileEX''')&lt;br /&gt;
* Fixed animations validation to avoid crashes ([https://github.com/multitheftauto/mtasa-blue/commit/27a24b551d86c6fbf9ee308603f24b011e941399 27a24b5] by '''G-Moris''')&lt;br /&gt;
* Fixed a bug where the &amp;quot;attacker&amp;quot; parameter is always nil in the [[onClientObjectBreak]] event if the object is glass ([https://github.com/multitheftauto/mtasa-blue/commit/dca5e2065af4a0195526541f9a8285db0401616e dca5e20] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where the [[onClientObjectBreak]] event was not triggered if the glass was broken by an explosion ([https://github.com/multitheftauto/mtasa-blue/commit/dca5e2065af4a0195526541f9a8285db0401616e dca5e20] by '''FileEX''')&lt;br /&gt;
* Fixed a bug that prevented players from switching weapons with an active jetpack ([https://github.com/multitheftauto/mtasa-blue/commit/180fbc0b5fdba95450e7a519f78f7588849349bf 180fbc0] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where hitElement in the [[onClientVehicleCollision]] event was always nil for projectiles ([https://github.com/multitheftauto/mtasa-blue/commit/43cc7b3e34eb4680120eb8ebf40d31d845850df2 43cc7b3] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where hydra flares did not work with [[createProjectile]] ([https://github.com/multitheftauto/mtasa-blue/commit/2bdac16d1d868f396786fbfdcfa2595004e1fff5 2bdac16] by '''FileEX''')&lt;br /&gt;
* Fixed inconsistent extra component names ([https://github.com/multitheftauto/mtasa-blue/commit/d4f884935626c638dca0f7f45c71cfb22c4e2d72 d4f8849] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where after changing the key in the bind settings, only the key for the &amp;quot;down&amp;quot; status changed, while the &amp;quot;up&amp;quot; key remained unchanged.([https://github.com/multitheftauto/mtasa-blue/commit/3ebefc37951e24cbfb25035d99045d67571b5324 3ebefc3] by '''FileEX''')&lt;br /&gt;
* Maked frame graph scale accordingly to resolution ([https://github.com/multitheftauto/mtasa-blue/commit/e431474c676a253004a26d86fc9e1a6100d329d4 e431474] by '''ffsPLASMA''')&lt;br /&gt;
* Fixed old [[setElementModel]] memory leak ([https://github.com/multitheftauto/mtasa-blue/commit/4e7afa2586c6992a75ac5312378c1096d87148ae 4e7afa2] by '''tederis''')&lt;br /&gt;
* Fixed [[getObjectProperty]] returns invalid ''air_ressistance'' property ([https://github.com/multitheftauto/mtasa-blue/commit/b51e1116283e9ec453881d3c48229b96c6198d5a b51e111] by '''FileEX''')&lt;br /&gt;
* Fixed missing states in [[getPedControlState]] ([https://github.com/multitheftauto/mtasa-blue/commit/3333a115f1a14f00378161681aeba609b4e993c0 3333a11] by '''FileEX''')&lt;br /&gt;
* Fixed for randomly bright objects after weapon change  ([https://github.com/multitheftauto/mtasa-blue/commit/9b9120c73ec97bf1b2f24703889a62fc19326f1f 9b9120c] by '''FileEX''')&lt;br /&gt;
* Fixed some small problems with Device Selection Dialog ([https://github.com/multitheftauto/mtasa-blue/commit/6f90880bee4d9169d4eda5f6afc63f4ed1bf652f 6f90880] by '''forkerer''')&lt;br /&gt;
* Allow dynamic models to be created as buildings ([https://github.com/multitheftauto/mtasa-blue/commit/642438ec1302daba50b6f6069844e96cbaa31818 642438e] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash when disconnecting from server after creating projectiles ([https://github.com/multitheftauto/mtasa-blue/commit/9ab6104d9c1ec246fde29ae6bf303ae5848bbbe1 9ab6104] by '''TheNormalnij''')&lt;br /&gt;
* Allow client peds to enter/exit client vehicles ([https://github.com/multitheftauto/mtasa-blue/pull/3678 #3678], [https://github.com/multitheftauto/mtasa-blue/commit/67beec77b06897552dc2c756c15283bfdc19b143 67beec7] by '''gownosatana''' and '''Tracer''')&lt;br /&gt;
* Use immersive dark mode on game window ([https://github.com/multitheftauto/mtasa-blue/commit/fd9520498919ae191c718c49b2a5c742bbbf8239 fd95204] by '''FileEX''')&lt;br /&gt;
* Added damageable objects support for [[engineRequestModel]] ([https://github.com/multitheftauto/mtasa-blue/commit/21593b9239765343ad5a4975c9f8424e571a036d 21593b9] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash with [[setElementHealth]] in [[onClientPedDamage]] event ([https://github.com/multitheftauto/mtasa-blue/commit/2d3397df56827f7c218689873f8b4741ea9af44e 2d3397d] by '''FileEX''')&lt;br /&gt;
* Fixed [[setPedControlState]] is aborted when ped created/player join ([https://github.com/multitheftauto/mtasa-blue/commit/8117ebcb95d3e3c35c400ee073a6ebab81e3f9fb 8117ebc] by '''FileEX''')&lt;br /&gt;
* Added '''buildings''' support to [[engineApplyShaderToWorldTexture]] ([https://github.com/multitheftauto/mtasa-blue/commit/fe1dd063170aef6a866bc241c305278a73200fdd fe1dd06] by '''TheNormalnij''')&lt;br /&gt;
* Fixed unintended behavior for ped control states ([https://github.com/multitheftauto/mtasa-blue/commit/a38e6acaf5c0fd83b5627660439f36d380cd26e6 a38e6ac] by '''Nico834''')&lt;br /&gt;
* Fixed SVG colors bug ([https://github.com/multitheftauto/mtasa-blue/commit/04f297b7b1aecb3753c8fbfa19fa9627abf422b4 04f297b] by '''TheNormalnij''')&lt;br /&gt;
* Fixed &amp;quot;CEF Launcher&amp;quot; process remaining after closing MTA ([https://github.com/multitheftauto/mtasa-blue/commit/a6c00278a5329e3b2b870b298d78565b14a7bed2 a6c0027] by '''botder''')&lt;br /&gt;
* Removed ''login'' cmd from chat history ([https://github.com/multitheftauto/mtasa-blue/commit/4639aea8a5544bfa4460bfcc8bba1d5b032e931a 4639aea] by '''PlatinMTA''')&lt;br /&gt;
* Fixed in-game updater dialog incorrectly showing 0% progress ([https://github.com/multitheftauto/mtasa-blue/commit/40d9ac11a9864d4f26c9eb1979e3a30ec0624061 40d9ac1] by '''Dutchman101''')&lt;br /&gt;
* Fixed invalid references counter to TXD after [[engineSetModelTXDID]] (top 1 crash according to players crash stats) ([https://github.com/multitheftauto/mtasa-blue/commit/1b7e9e82997fb4ac2eec5722d9134299902a16e6 1b7e9e8] by '''TheNormalnij''')&lt;br /&gt;
* Fixed server cache memory leak on connecting to another server ([https://github.com/multitheftauto/mtasa-blue/commit/e3476592fc46dc28f9da98f525797ae94ebf3ec3 e347659] by '''Lpsd''')&lt;br /&gt;
* Added the ability to set CPU affinity (CPU 0) in the '''advanced''' tab in the settings ([https://github.com/multitheftauto/mtasa-blue/commit/d04c92b24e7b85f6015fa93192ddda06e9023c85 d04c92b] by '''FileEX''')&lt;br /&gt;
* Fixed crash in ''CClientDisplayManager'' (top 2 crash according to players crash stats) ([https://github.com/multitheftauto/mtasa-blue/commit/0df0a4b40f7aea7c16473d0844a03fcece888420 0df0a4b] by '''Lpsd''')&lt;br /&gt;
* Set main menu FPS limit to current display refresh rate ([https://github.com/multitheftauto/mtasa-blue/commit/acbcc8e03ba8ac677a9c2c8182fb6f24868cae46 acbcc8e] by '''samr46''')&lt;br /&gt;
* [[setSoundEffectParameter]] and [[getSoundEffectParameters]] can be now used also on players! ([https://github.com/multitheftauto/mtasa-blue/commit/20851ecf7d69cc42fc00a62446a87d7e99c1e19d 20851ec] by '''tederis''')&lt;br /&gt;
* Fixed elements sometimes being visible from other dimensions in the current dimension ([https://github.com/multitheftauto/mtasa-blue/commit/9af03b3263a5a320e2f92140f6caa6c94b9fe9a5 9af03b3], [https://github.com/multitheftauto/mtasa-blue/commit/1dff560099459bc1b8248ef50643886158b0d731 1dff560] by '''FileEX''' &amp;amp; '''tederis''')&lt;br /&gt;
* Fixed bug &amp;quot;Copying text from CEF Browser shows Chinese characters in console&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/892beb0457b461d5afd5d91e86763181bdb972d3 892beb0] by '''ColombuxMaximus''')&lt;br /&gt;
* Fixed a bug where hidden vehicle components became visible after changing the variant or handling ([https://github.com/multitheftauto/mtasa-blue/commit/1d81347ee7e2614cd94e4b1807947d2c98b3305f 1d81347] by '''ColombuxMaximus''')&lt;br /&gt;
* Fixed persian characters in main menu &amp;amp; CEGUI ([https://github.com/multitheftauto/mtasa-blue/commit/efb2edfa853aa9a95f39ed9a843c3230b2e627cf efb2edf] by '''tzwer''')&lt;br /&gt;
* Added new movement states to [[getPedMoveState]] and fixed incorrect returning of &amp;quot;fall&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/c43c1b98b8ec0b7253d98c65b405ead482a765d8 c43c1b9], [https://github.com/multitheftauto/mtasa-blue/commit/797331fadbca4367f6cfd43633e48af44a99a115 797331f] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where friendly fire did not prevent fire damage ([https://github.com/multitheftauto/mtasa-blue/commit/9c4397707dd2a94d8a6124d6b502d39793f0d2ba 9c43977] by '''FileEX''')&lt;br /&gt;
* Fixed [[engineReplaceModel]] memory leak &amp;amp; potential crash ([https://github.com/multitheftauto/mtasa-blue/commit/1dbbfd025c5ff791f31e1ef4f255514198f88d0c 1dbbfd0] by '''FileEX''')&lt;br /&gt;
* Fixed '''ALT + F4''' not working ([https://github.com/multitheftauto/mtasa-blue/commit/93963a98f24fdb5e8374baaddaa6d99260be967e 93963a9] by '''lopezloo''')&lt;br /&gt;
* Fixed [[setPedOnFire]] doesn't cancel '''TASK_SIMPLE_PLAYER_ON_FIRE''' ([https://github.com/multitheftauto/mtasa-blue/commit/2a2f31bccd9d90adfc2b03f1f63248b9d016c725 2a2f31b] by '''FileEX''')&lt;br /&gt;
* Fixed crash related to buildings ([https://github.com/multitheftauto/mtasa-blue/commit/4bcded5c89caffd005b266021d3c1bbd83a554cb 4bcded5] by '''tederis''')&lt;br /&gt;
* Fixed client freeze in some locations on the map ([https://github.com/multitheftauto/mtasa-blue/commit/3a376e479201b30b27488a5a674d7d816397e79a 3a376e4] by '''tederis''')&lt;br /&gt;
* Added disconnect warning when using quick connect while connected to server ([https://github.com/multitheftauto/mtasa-blue/commit/be395665c0f5094793b923e9f4fb94056ccff961 be39566] by '''omar-o22''')&lt;br /&gt;
* Added missing trashcan in help section ([https://github.com/multitheftauto/mtasa-blue/commit/853a7d54a25bc09ee421ac837f22201882ece1b7 853a7d5] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
=== Server ===&lt;br /&gt;
* Fixed bullet sync check in CBulletsyncPacket by verifying total ammo instead of clip ammo ([https://github.com/multitheftauto/mtasa-blue/commit/ca06762413833e1c7f8d17970334607763414a45 ca06762] by '''shadylua''')&lt;br /&gt;
* Check deprecated account name length on [[banPlayer]] to fix all players getting kicked ([https://github.com/multitheftauto/mtasa-blue/commit/b5e2332ca5857f3e984467ca0cb8163ec998ea06 b5e2332] by '''patrikjuvonen''')&lt;br /&gt;
* Fixed a crash in CHandlingManager ([https://github.com/multitheftauto/mtasa-blue/commit/b6867a0d2ed0b4ab12a4461c3f1ca7d667bdedbc b6867a0] by '''Olya-Marinova''')&lt;br /&gt;
* Removed min-version lua function from old MTA versions ([https://github.com/multitheftauto/mtasa-blue/commit/222b2720c93f29977fffb722f8d42ea3fb5f790d 222b272] by '''Olya-Marinova''')&lt;br /&gt;
* Disallow loadstring by default ([https://github.com/multitheftauto/mtasa-blue/commit/89e2d375d12deb026ee91fedc5e1ced04dc9a723 89e2d37] by '''srslyyyy''')&lt;br /&gt;
* Added valid values for 'donotbroadcastlan' setting ([https://github.com/multitheftauto/mtasa-blue/commit/f8d4422ad75c0d7f21894f9f868aa37ec6993a35 f8d4422] by '''Dark-Dragon''')&lt;br /&gt;
* Fixed &amp;quot;ped revives when syncer changes&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/af604ae7dfec742661206fb809f149140ce3a960 af604ae] by '''Zangomangu''')&lt;br /&gt;
* Fixed files not unloading after renaming ([https://github.com/multitheftauto/mtasa-blue/commit/2846e2794af1d9d441b7b988f49af521bd765fb0 2846e27] by '''W3lac3''')&lt;br /&gt;
* Added ability to limit client triggered events via [[triggerServerEvent]] ([https://github.com/multitheftauto/mtasa-blue/commit/eae47fe2f432d9053c425fd515ea27f963c254ec eae47fe] by '''Lpsd''')&lt;br /&gt;
* Added FileExists check to CMainConfig::AddMissingSettings ([https://github.com/multitheftauto/mtasa-blue/commit/1ebaa28e0381fb114b946f2f5a4d4bc5834ebd03 1ebaa28] by '''Lpsd''')&lt;br /&gt;
* Added server side weapon related checks ([https://github.com/multitheftauto/mtasa-blue/commit/86448ea52c7ee13e554a907c424aa3c891e51e31 86448ea] by '''NanoBob''')&lt;br /&gt;
* Added [[dbConnect]] option for MySQL ''&amp;quot;use_ssl=0&amp;quot;'' ([https://github.com/multitheftauto/mtasa-blue/commit/e6476767a9b6848467f0d123830dd2f90bd4442d e647676] by '''Lpsd''')&lt;br /&gt;
* Added ''content'' parameter to [[onPlayerPrivateMessage]] event ([https://github.com/multitheftauto/mtasa-blue/commit/79f8ed6a374d62e5cf1ec707b2ba25e3a959f509 79f8ed6] by '''FileEX''')&lt;br /&gt;
* Fix ability to move server-side vehicles that are far away from the player. New parameter can be set in the [[Server_mtaserver.conf#vehicle_contact_sync_radius|mtaserver.conf]] ([https://github.com/multitheftauto/mtasa-blue/commit/e3338c2fbbdb500c4ce28dc0677ceadef1f1ca4c e3338c2] by '''MegadreamsBE''')&lt;br /&gt;
* Added ''sync'' parameter for vehicles ([https://github.com/multitheftauto/mtasa-blue/commit/f88d31306d3c7fadfbc1542c85922612fd00b131 f88d313] by '''znvjder''')&lt;br /&gt;
* Fixed server-side pickup collision size ([https://github.com/multitheftauto/mtasa-blue/commit/49d97513e1eb2e0c96c5aa5a1d542d14131edd76 49d9751] by '''Proxy-99''') &lt;br /&gt;
* Fixed ''CSimBulletsyncPacket'' crash ([https://github.com/multitheftauto/mtasa-blue/commit/ee8bc92907a112a5584844329dbb07cc82326ad1 ee8bc92] by '''G-Moris''')&lt;br /&gt;
* Fixed onVehicleExit doesn't trigger if pulled out ([https://github.com/multitheftauto/mtasa-blue/commit/af4f7facca73bb68238437e6eff3504bd6f1cfe0 af4f7fa] by '''Proxy-99''')&lt;br /&gt;
* Fixed arguments in [[setPedAnimation]] being ignored when nil was passed ([https://github.com/multitheftauto/mtasa-blue/commit/f6f544e6b54054a06497fdf94cd077b862af8055 f6f544e] by '''FileEX''')&lt;br /&gt;
* Fixed Sirens not removed correctly ([https://github.com/multitheftauto/mtasa-blue/commit/9e419620069ec8ad5828c50295c1901685166cf9 9e41962] by '''Proxy-99''')&lt;br /&gt;
* Fixed a bug where [[setPedWeaponSlot]] did not update data in [[getPedWeapon]] and [[getPedWeaponSlot]] ([https://github.com/multitheftauto/mtasa-blue/commit/9615523faf84f584179412fb8e0cc04f9f4ee48f 9615523] by '''FileEX''')&lt;br /&gt;
* Added '''player''' parameter to [[onVehicleExplode]] ([https://github.com/multitheftauto/mtasa-blue/commit/1ec1f5be69d3ef99bd2e26fd3d008a7cecd0a5ad 1ec1f5b] by '''FileEX''')&lt;br /&gt;
* Excluded '''meta.xml''' from glob patterns for security reasons ([https://github.com/multitheftauto/mtasa-blue/commit/78f6d669adc97c51a825250dd4dbf1a4a4a0ff15 78f6d66] by '''FileEX''')&lt;br /&gt;
* Fixed the bug where changing a vehicle to one with a different number of seats caused passengers to experience network trouble ([https://github.com/multitheftauto/mtasa-blue/commit/1fcd732ca9031060602c8e2425e40ce602d35253 1fcd732] by '''FileEX''')&lt;br /&gt;
* Glob patterns added to meta.xml for HTML files ([https://github.com/multitheftauto/mtasa-blue/commit/7e6b4d02ec113b7ce3a6fd9937a6e8ad0a1ad9cb 7e6b4d0] by '''FileEX''')&lt;br /&gt;
* Fixed console not maintaining position &amp;amp; size when GUI skin changed ([https://github.com/multitheftauto/mtasa-blue/commit/30d8e6dbfe75db47cf396aa909f43c24c4dbe127] by '''NanoBob''')&lt;br /&gt;
* Added '''includeCustom''' argument for [[getValidPedModels]] clientside ([https://github.com/multitheftauto/mtasa-blue/commit/889567a7a0ecb8a8b8d938826d2395ef9f43a76b] by '''Fernando-A-Rocha''')&lt;br /&gt;
* Fixed '''min_mta_version''' tag for server ([https://github.com/multitheftauto/mtasa-blue/commit/8c0a01bac62ecc3e9510133dee9f8d6700065f03 8c0a01b] by '''Fernando-A-Rocha''')&lt;br /&gt;
* Allowed user to pass multiple resource names to start/stop/restart ([https://github.com/multitheftauto/mtasa-blue/commit/6f5fb9c65ee93a5c1692b0d3516a483dcea48f08 6f5fb9c] by '''botder''')&lt;br /&gt;
* Added sync peds/players animations for new players ([https://github.com/multitheftauto/mtasa-blue/commit/b32eafc70816ece8ad995d98d380d8f6e9950475 b32eafc] by '''FileEX''')&lt;br /&gt;
* Optimized processing big files by server ([https://github.com/multitheftauto/mtasa-blue/commit/cb90339aad461d3ee8c1008f2da10934afc38a4c cb90339] by '''AlexTMjugador''')&lt;br /&gt;
* Separate icon for ''mta-server.exe'' ([https://github.com/multitheftauto/mtasa-blue/commit/6cb9d3edf9686749e524f136985cefb53772898e 6cb9d3e] by '''Nico834''')&lt;br /&gt;
* Fixed a bug that caused warnings in debugscript when using depracated function names as variable names ([https://github.com/multitheftauto/mtasa-blue/commit/f23e39521b7e35ad5389e467360fbc525c099887 f23e395] by '''YelehaUwU''')&lt;br /&gt;
* [[onVehicleExplode]] can now be cancelled! ([https://github.com/multitheftauto/mtasa-blue/commit/fcb5b038981066f561f3792c2ae3d97d76d9d0fe fcb5b03] by '''Nico834''')&lt;br /&gt;
* Added '''eventName''' parameter to [[onPlayerTriggerEventThreshold]] ([https://github.com/multitheftauto/mtasa-blue/commit/76d7764c7ec408b77eb7b12379e88882e014527f 76d7764] by '''ColombuxMaximus''')&lt;br /&gt;
&lt;br /&gt;
=== More Technical Changes and Bug Fixes ===&lt;br /&gt;
&amp;lt;section show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
:* Updated CLuaFunctionParser.h ([https://github.com/multitheftauto/mtasa-blue/commit/55647f4023c78a846870f7c96069fab411cff5c5 55647f4] by '''Xenius97''')&lt;br /&gt;
:* Fixed build after above update ([https://github.com/multitheftauto/mtasa-blue/commit/9dcc651d42ae78b7b04257e7612c5b594cb0fffd 9dcc651] by '''Pirulax''')&lt;br /&gt;
:* Fixed std::unordered_map&amp;lt;std::string, std::string&amp;gt; parsing ([https://github.com/multitheftauto/mtasa-blue/commit/005592417b42de63c3d8ba9c572a81cdc8f96164 0055924] by '''tederis''')&lt;br /&gt;
:* Addendum to [https://github.com/multitheftauto/mtasa-blue/pull/3251 #3251] ([https://github.com/multitheftauto/mtasa-blue/commit/9544a34a28d3b4e766d7d07a44d63a8fe45dc506 9544a34] by '''Lpsd''')&lt;br /&gt;
:* Fixes for [https://github.com/multitheftauto/mtasa-blue/pull/3251 #3251] ([https://github.com/multitheftauto/mtasa-blue/commit/07013d24766a6259f4115bd0349a86f790dbf5d0 07013d2] by '''Lpsd''')&lt;br /&gt;
:* Fixed SetStreamingBufferSize possibly accessing memory out-of-bounds ([https://github.com/multitheftauto/mtasa-blue/commit/e08b84fbfe6ad0431605b31c2ba5a50a8f116dc9 e08b84f] by '''Pirulax''')&lt;br /&gt;
:* Added a check to verify itemList validity ([https://github.com/multitheftauto/mtasa-blue/commit/668073787fa6b952d0f1520e8ccae0999dbdba13 6680737] by '''R4ven47''')&lt;br /&gt;
:* Various code clean ups and refactors&lt;br /&gt;
::* Removed COffsetsMP and EU addresses ([https://github.com/multitheftauto/mtasa-blue/commit/52b0115a2d9157b7a153b5f24316ff6fd053e79b 52b0115] by '''Merlin''')&lt;br /&gt;
::* Removed COffsets and EU addresses ([https://github.com/multitheftauto/mtasa-blue/commit/959141de324126245d2b5ebf029c924302ff64e9 959141d] by '''Merlin''')&lt;br /&gt;
::* Clean ups ''multiplayer_sa'' code ([https://github.com/multitheftauto/mtasa-blue/commit/38982043978dd1ec72230569a6d534792e7c18bd 3898204] by '''CrosRoad95''')&lt;br /&gt;
::* Removed old easter-egg &amp;amp; debug code ([https://github.com/multitheftauto/mtasa-blue/commit/b26f80c3d72d628d63807529b408be4b61a5be60 b26f80c], [https://github.com/multitheftauto/mtasa-blue/commit/530212f34fc44e95599ca5e39e608583ecdbb5cc 530212f] by '''botder''' and '''Merlin''')&lt;br /&gt;
::* Refactored entity hierarchy &amp;lt;!-- Fixed accepting possible malicious packets --&amp;gt; ([https://github.com/multitheftauto/mtasa-blue/commit/fdaced046a9421a39de87b81eaf0f7de7c234c4b fdaced0] by '''Tracer''')&lt;br /&gt;
::* Removed unused symbol from ''CConsole'' class ([https://github.com/multitheftauto/mtasa-blue/commit/4fe9084a2e5c5eeed4b0a9a30a07607c812e923b 4fe9084] by '''Nico834''')&lt;br /&gt;
::* Refactored ''CLuaBlipDefs'' ([https://github.com/multitheftauto/mtasa-blue/commit/d05d09be8b9bd1327e37631411fa1e3b16c4dbb7 d05d09b], [https://github.com/multitheftauto/mtasa-blue/commit/c278c12debfd346377354017992543fc7cf6397b c278c12] by '''FileEX''')&lt;br /&gt;
::* Refactored ''CLuaTeamDefs'' ([https://github.com/multitheftauto/mtasa-blue/commit/74ffa1d0138ab3d848b0e081ca265f18ae6c7bd8 74ffa1d], [https://github.com/multitheftauto/mtasa-blue/commit/f37bbada1381370eeadabd4f4dde2a024ec48f5f f37bbad] by '''Nico834''')&lt;br /&gt;
::* Removed dead ''CAnimManagerSA'' code ([https://github.com/multitheftauto/mtasa-blue/commit/d18d7d35fb50fdeea3f70ad688a5857b29867185 d18d7d3] by '''G-Moris''')&lt;br /&gt;
::* Refactored class hierarchy and removed VTBL hacks ([https://github.com/multitheftauto/mtasa-blue/commit/61d1caffb5bfa9c620c08d43280150906dd172d5 61d1caf] by '''TheNormalnij''')&lt;br /&gt;
::* Refactored ''CWeaponSA'' and ''CPedSA'' classes ([https://github.com/multitheftauto/mtasa-blue/commit/a3b7c8519d0d167c66e70c8c7ed5d2f810b7ae39 a3b7c85], [https://github.com/multitheftauto/mtasa-blue/commit/2526a7dd6cde545e600792dcac3ab1b8ece0edec 2526a7d] by '''FileEX''')&lt;br /&gt;
::* Cleaning up client Common.h and moving enums to separate files ([https://github.com/multitheftauto/mtasa-blue/commit/1e56571479217f787b6444d48770f8aa69f14387 1e56571] by '''FileEX''')&lt;br /&gt;
:* Addd Comments to Frame Rate Fixes in CMultiplayerSA_FrameRateFixes.cpp ([https://github.com/multitheftauto/mtasa-blue/commit/e4e6d1b5a9609cb093a191db405c61339d4280d2 e4e6d1b] by '''Merlin''')&lt;br /&gt;
:* Fixed build after CEF update ([https://github.com/multitheftauto/mtasa-blue/commit/9980252446a6869609b1afa1ae1168282a99cb17 9980252] by '''TheNormalnij''')&lt;br /&gt;
:* Bump chromedriver from 114.0.2 to 119.0.1 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/5d8d3756d98b0272687b87c30adca2961eee86c8 5d8d375])&lt;br /&gt;
:* Bump axios from 1.4.0 to 1.6.1 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/ba018013085058905aa789c4fa3f39c4ed32fc69 ba01801])&lt;br /&gt;
:* Fixed file lock after img:destroy ([https://github.com/multitheftauto/mtasa-blue/commit/c2ccfd2c648a2d3f33ead2169262c30533f79bac c2ccfd2] by '''TheNormalnij''')&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
:* Bump follow-redirects from 1.15.2 to 1.15.6 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/437dbcd8024c5217c22ef0e38719f93f33f47ce5 437dbcd])&lt;br /&gt;
:* Fix permission check in File.create method ([https://github.com/multitheftauto/mtasa-blue/commit/92144a4d7383af09dfa05b7bcd3db09fa487e6fd 92144a4] by '''theSarrum''')&lt;br /&gt;
:* mbedTLS fix for cURL 8.8.0 ([https://github.com/multitheftauto/mtasa-blue/commit/4f7e0d87ec04e44d2e47f5b869c2d7c765817c0f 4f7e0d8] by '''Lpsd''')&lt;br /&gt;
:* Discord RPC Tweaks ([https://github.com/multitheftauto/mtasa-blue/commit/8ef351eabe46fd50da096247d8b6fc74508cb911 8ef351e] by '''theSarrum''')&lt;br /&gt;
:* Fixed small overhead in argument parser for strings ([https://github.com/multitheftauto/mtasa-blue/commit/d20582d770dfd2a1677d9981005b3b6d28fb8e4e d20582d] by '''TheNormalnij''')&lt;br /&gt;
:* Bump ws from 8.13.0 to 8.17.1 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/cc172fcae7654ead0d3530a4819c71f76205a175 cc172fc])&lt;br /&gt;
:* Generic exception type for argument parser instead of std::invalid_argument ([https://github.com/multitheftauto/mtasa-blue/commit/2043acfdb210a8f1158501e2fbb431b625bbf74d 2043acf] by '''tederis''')&lt;br /&gt;
:* Added comments for hooks in CMultiplayerSA_CrashFixHacks.cpp ([https://github.com/multitheftauto/mtasa-blue/commit/0327cb1bef9b234451f8a22ece9c6c70fdc9adb0 0327cb1] by '''FileEX''')&lt;br /&gt;
:* Optimization handling ([https://github.com/multitheftauto/mtasa-blue/commit/e3a8bd96d4eccb30e439ba8bd4a2029d01586154 e3a8bd9], [https://github.com/multitheftauto/mtasa-blue/commit/5ac6c8adad9c9ffd4a1c299c7cd548713e485bd6 5ac6c8a] by '''G-Moris''')&lt;br /&gt;
:* Added ability to use varargs in ArgumentParser functions ([https://github.com/multitheftauto/mtasa-blue/commit/8c2f95a5ffade0e7fb212b62282e69d7f433d36f 8c2f95a] by '''Tracer''')&lt;br /&gt;
:* Fixed google-breakpad in newer GCC versions ([https://github.com/multitheftauto/mtasa-blue/commit/5508c7e4058ad9d29cacc9964f8e84df2c60d14f 5508c7e] by '''Tracer''')&lt;br /&gt;
:* Validate serial on player join ([https://github.com/multitheftauto/mtasa-blue/commit/84437e49e6ebca758e1e87d93e7846f9aa99a673 84437e4] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Extract TXD class ([https://github.com/multitheftauto/mtasa-blue/commit/733683d70dc037fdcbb256fb17d86e93b fedd239] by '''TheNormalnij''')&lt;br /&gt;
:* Fixed a bug with desynchronization of the values of some fields of the ''CTickRateSettings'' structure ([https://github.com/multitheftauto/mtasa-blue/commit/af5b6968e0a28dbde7d92f3828dead0f1a936eec af5b696], [https://github.com/multitheftauto/mtasa-blue/commit/514a3b36d09906f09bb32e900c39dc09b1c29d10 514a3b3] by '''nweb''')&lt;br /&gt;
:* Fixed ''MinClientReqCheck'' and improve resource upgrade ([https://github.com/multitheftauto/mtasa-blue/commit/f0954109c0644c551ae3ec1df4474d1857e4bed8 f095410] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Refactored and improved player map (F11) ([https://github.com/multitheftauto/mtasa-blue/commit/2c5cf3226a573637b91d8b255d57113b7043dc28 2c5cf32] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Fixed ''CVector'' optional arguments ([https://github.com/multitheftauto/mtasa-blue/commit/6a70cf7def14db86980a499d0fdf4c63565915e1 6a70cf7] by '''Tracer''')&lt;br /&gt;
:* Fixed memory overwriting by ''EnumToString'' &amp;amp; ''StringToEnum'' ([https://github.com/multitheftauto/mtasa-blue/commit/3ab068ba213abca718ace47ac3bb8df9e4b1c3fc 3ab068b] by '''FileEX''')&lt;br /&gt;
:* Allow using ''std::variant'' with several pointers ([https://github.com/multitheftauto/mtasa-blue/commit/9d776c8bfc2680fc28857fc0a5dc4a4e40d4c3bf 9d776c8] by '''tederis''')&lt;br /&gt;
:* Fixed argument parser not distinguishing arrays from maps ([https://github.com/multitheftauto/mtasa-blue/commit/d4388a2452f4427bd56c3d93b80d4ea74c05b6e5 d4388a2] by '''FileEX''')&lt;br /&gt;
:* Fixed crash with nested arrays/maps in new argument parser ([https://github.com/multitheftauto/mtasa-blue/commit/ca877d33471fabbe970cf03d9d6d9b3413b6daa1 ca877d3] by '''tederis''')&lt;br /&gt;
&lt;br /&gt;
== 13 Vendor Updates ==&lt;br /&gt;
=== Client ===&lt;br /&gt;
* Updated libpng to 1.6.50 ([https://github.com/multitheftauto/mtasa-blue/commit/c24b39d41fd768337c3d336a944588d53dfaba44] by '''Nico834''')&lt;br /&gt;
* Updatee CEF to 127.3.5+g114ea2a+chromium-127.0.6533.120 ([https://github.com/multitheftauto/mtasa-blue/commit/bca4dff8dc490328000d7653a9166704d859b7e5 bca4dff] by '''Dutchman101''')&lt;br /&gt;
* Updated Unifont to 15.1.05 ([https://github.com/multitheftauto/mtasa-blue/commit/02115a5c00e2480bbb3b829b655869e7436de955 02115a5] by '''Dutchman101''')&lt;br /&gt;
&lt;br /&gt;
=== Server ===&lt;br /&gt;
* Updated cURL to 8.14.1 ([https://github.com/multitheftauto/mtasa-blue/commit/7c27c20da7503c68234cde0b726f10a3dcdf85e3] by '''Nico834''')&lt;br /&gt;
* Updated MySQL to 8.4.0 &amp;amp; OpenSSL to 3.3.1 ([https://github.com/multitheftauto/mtasa-blue/commit/a44d673bb8731506418fdbaa6690b339a98d82c1 a44d673] by '''botder''')&lt;br /&gt;
* Updated SQLite to 3.46.0 ([https://github.com/multitheftauto/mtasa-blue/commit/30e31af2ca1ae96e03386670a9df6db70336b968 30e31af] by '''Dutchman101''')&lt;br /&gt;
&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Updated mbedTLS to 3.6.4 ([https://github.com/multitheftauto/mtasa-blue/commit/45955dad5471f49e2784e37cbafd1b92196abe96] by '''Nico834''')&lt;br /&gt;
* Updated 7-Zip Standalone plugins to 24.07 (24.7.0.0) ([https://github.com/multitheftauto/mtasa-blue/commit/9b979b2d5c7f4b885046a85d9895e58416563890 9b979b2] by '''Dutchman101''')&lt;br /&gt;
* Updated freetype to freetype-37cefe3 (freetype/freetype@37cefe3) ([https://github.com/multitheftauto/mtasa-blue/commit/89e022cb8586aba5bdacd7b56c7d45c9b7b95f97 89e022c] by '''Dutchman101''')&lt;br /&gt;
* Updated nvapi from r550 to r555 ([https://github.com/multitheftauto/mtasa-blue/commit/5fdcada80a18af530381b04f54c3c69b6988f479 5fdcada] by '''Dutchman101''')&lt;br /&gt;
* Updated unrar to 7.0.9 ([https://github.com/multitheftauto/mtasa-blue/commit/ab9461be5777427261bc3a330acb4c0f5cdc2c8b ab9461b] by '''Dutchman101''')&lt;br /&gt;
* Updated FreeType to 2.13.2 ([https://github.com/multitheftauto/mtasa-blue/commit/a783e994264d4e954489e31459505c53759ca7f1 a783e99] by '''Dutchman101''')&lt;br /&gt;
* Updated zlib from 1.2.13 to 1.3 ([https://github.com/multitheftauto/mtasa-blue/commit/0f37ac0b18845e9f035d0ca45bbb41b9cd1aa979 0f37ac0] by '''Dutchman101''')&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
=== 46+ Changes and Bug Fixes ===&lt;br /&gt;
&lt;br /&gt;
'''admin'''&lt;br /&gt;
:* Removed execute code functionality for safety reasons ([https://github.com/multitheftauto/mtasa-resources/commit/507a04937524997410e450a6d4292974fa801bf8 507a049] by '''srslyyyy''')&lt;br /&gt;
:* Updated skins.xml ([https://github.com/multitheftauto/mtasa-resources/commit/b5306484a789cc59b05f4182505ac07df3d90e07 b530648] by '''shadylua''')&lt;br /&gt;
:* Fixed warnings ([https://github.com/multitheftauto/mtasa-resources/commit/d7b02022fa8168fc300dd562118100265cf0688b d7b0202] by '''jlillis''')&lt;br /&gt;
:* Making the admin window focused ([https://github.com/multitheftauto/mtasa-resources/commit/33f7cc938d243687fa36fa300ec588b2d057d02c 33f7cc9] by '''Proxy-99''')&lt;br /&gt;
:* Resource settings button is only displayed if there are settings ([https://github.com/multitheftauto/mtasa-resources/commit/0224ef52c699f27bd6e0e6364fbc81ecd0ec345f 0224ef5] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed nil index error and removed invalid characters causing syntax errors ([https://github.com/multitheftauto/mtasa-resources/commit/79857393ddb42f52ee05cf5758d5fdc8c2ff845c 7985739] by '''rad3sh''')&lt;br /&gt;
:* Allow disabling/enabling default reporting system ([https://github.com/multitheftauto/mtasa-resources/commit/0dbb83df7d3e9a20a2c897612db778bf4e395c92 0dbb83d] by '''Viude''')&lt;br /&gt;
:* Updated clientcheckban setting to ban serial instead of IP ([https://github.com/multitheftauto/mtasa-resources/commit/fa5beb96e10d9f30d9565ca212fe901f88e413a5 fa5beb9] by '''Viude''')&lt;br /&gt;
:* Fixed that double clicking on a resource without setting opened the GUI settings window ([https://github.com/multitheftauto/mtasa-resources/commit/82d5b835b503594101a99041498501e19a433a79 82d5b83] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed gridlist bug in weapons/vehicles ([https://github.com/multitheftauto/mtasa-resources/commit/6ba5a88b8a5da4a9df67f20347056754ea5a2c87 6ba5a88] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''admin2'''&lt;br /&gt;
:* Forward-ported permissions widget from admin1 and minor fixes ([https://github.com/multitheftauto/mtasa-resources/commit/25dcc4c655de26de0a2d0eb1b55ef7f3b3f6725e 25dcc4c] by '''Dark-Dragon''')&lt;br /&gt;
:* Fixed /report message viewer widget and minor fixes ([https://github.com/multitheftauto/mtasa-resources/commit/6dbdf2cf90d0e447879bea86942e01caf949b8f5 6dbdf2c] by '''Dark-Dragon''')&lt;br /&gt;
:* Refactored bans functionality ([https://github.com/multitheftauto/mtasa-resources/commit/d8c35b0a38a295d119054c4328a892c4e26be358 d8c35b0] by '''jlillis''')&lt;br /&gt;
:* Fixed messagebox not showing ([https://github.com/multitheftauto/mtasa-resources/commit/5afe0247e6ca44c5754a2d9a6a0af7bc8b57f967 5afe024] by '''FileEX''')&lt;br /&gt;
:* Added missing glitches and world properties ([https://github.com/multitheftauto/mtasa-resources/commit/6856aa075c8e5674379c2a89f355d8b167ab6fdb 6856aa0] by '''FileEX''')&lt;br /&gt;
:* Added content for &amp;quot;Users&amp;quot; sub-tab in the &amp;quot;Rights&amp;quot; tab ([https://github.com/multitheftauto/mtasa-resources/commit/3f8ecca953cc3dfa84e4d1b38b6b4c41f323688b 3f8ecca] by '''FileEX''')&lt;br /&gt;
:* Removed execute code functionality for safety reasons ([https://github.com/multitheftauto/mtasa-resources/commit/c4bc73a2b088b98116ece27065cc7f5a1dced15b c4bc73a] by '''jlillis''')&lt;br /&gt;
:* Replaced checkboxes with a gridlist for glitches and special world properties ([https://github.com/multitheftauto/mtasa-resources/commit/1dcb2953757c6741c93b9c63db33c032183047bc 1dcb295] by '''FileEX''')&lt;br /&gt;
:* Added ability to change server configuration settings ([https://github.com/multitheftauto/mtasa-resources/commit/118d58e383f631f111fe3f2463480182235c71d1 118d58e] by '''FileEX''')&lt;br /&gt;
:* Added content for &amp;quot;Resources&amp;quot; sub-tab in the &amp;quot;Rights&amp;quot; tab ([https://github.com/multitheftauto/mtasa-resources/commit/f16577e24ca9125eac5f2e96621077ad0d213b69 f16577e] by '''FileEX''')&lt;br /&gt;
:* Making the admin window focused ([https://github.com/multitheftauto/mtasa-resources/commit/33f7cc938d243687fa36fa300ec588b2d057d02c 33f7cc9] by '''Proxy-99''')&lt;br /&gt;
:* Fixed panel bind bug after reconnect ([https://github.com/multitheftauto/mtasa-resources/commit/c96bdd5297cf180f947596c1eded8929b4982e6c c96bdd5] by '''ricksterhd123''')&lt;br /&gt;
&lt;br /&gt;
'''chatmanager'''&lt;br /&gt;
:* Added a new resource for chat handling and management ([https://github.com/multitheftauto/mtasa-resources/commit/4e45cb75a8780b0c191031091a4fcd2d76442aa7 4e45cb7] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''defaultstats'''&lt;br /&gt;
:* Don't re-apply stats on every respawn ([https://github.com/multitheftauto/mtasa-resources/commit/9fde199ec5025052468df0255bf5c5011ef29718 9fde199] by '''Dutchman101''')&lt;br /&gt;
:* Fixed issue where defaultstats did not set player stats correctly ([https://github.com/multitheftauto/mtasa-resources/commit/567d10c552305dae3f57d5c422a34c25f22fdc12 567d10c] by '''MittellBuurman''')&lt;br /&gt;
&lt;br /&gt;
'''editor'''&lt;br /&gt;
:* Various fixes for local spawned or invalid elements ([https://github.com/multitheftauto/mtasa-resources/commit/4e3c57941cd789cff8d9ce240e99edca871a345d 4e3c579] by '''chris1384''')&lt;br /&gt;
:* Various bug fixes and improvements ([https://github.com/multitheftauto/mtasa-resources/commit/4674fa9c6dbff7a1073fb949cac44588c65df3fb 4674fa9] by '''IIYAMA12''')&lt;br /&gt;
:* Fixed rotation issues ([https://github.com/multitheftauto/mtasa-resources/commit/679c01b93132050548a86dba25ead7feaf9d5a1f 679c01b] by '''Nico834''')&lt;br /&gt;
:* Toggleable rotation mechanic and improve threshold ([https://github.com/multitheftauto/mtasa-resources/commit/83e2c79cbd959aa54c55d4220a5b4d38747e8353 83e2c79] by '''chris1384''')&lt;br /&gt;
:* Added missing objects and collisions ([https://github.com/multitheftauto/mtasa-resources/commit/4e83755d51345c0dc8e2e0f2ddf61588bf854641 4e83755] by '''THEGizmoOfficial''')&lt;br /&gt;
&lt;br /&gt;
'''edf'''&lt;br /&gt;
:* Fixed massive lag after stopping ''editor'' resource ([https://github.com/multitheftauto/mtasa-resources/commit/4674fa9c6dbff7a1073fb949cac44588c65df3fb 4674fa9] by '''IIYAMA12''')&lt;br /&gt;
&lt;br /&gt;
'''editor_main'''&lt;br /&gt;
:* Improvements ([https://github.com/multitheftauto/mtasa-resources/commit/5bf553f85cb9c53027814fe666268cb24ed66b2e 5bf553f], [https://github.com/multitheftauto/mtasa-resources/commit/e9b75fd615922c7d70f4e435a05fa933dcb9d2a5 e9b75fd] by '''q8X''')&lt;br /&gt;
:* Add xmlns namespace when saving map ([https://github.com/multitheftauto/mtasa-resources/commit/23fa3f38f71c2f3d28780df1b3ce163ab2eaae84 23fa3f3] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''editor_gui'''&lt;br /&gt;
:* Fixed test panel issues ([https://github.com/multitheftauto/mtasa-resources/commit/e558c846e8b0589997f342f431b36fdc371da000 e558c84] by '''chris1384''')&lt;br /&gt;
&lt;br /&gt;
'''fallout'''&lt;br /&gt;
:* Refactor &amp;amp; many improvements ([https://github.com/multitheftauto/mtasa-resources/commit/c733b69a735d004235ba61b1201ac1412acc6482 c733b69] by '''IIYAMA12''')&lt;br /&gt;
&lt;br /&gt;
'''freeroam'''&lt;br /&gt;
:* Updated skins.xml ([https://github.com/multitheftauto/mtasa-resources/commit/cacbe40a805402dec3a62180b987d4b777817ea6 cacbe40] by '''shadylua''')&lt;br /&gt;
:* Added Walk styles ([https://github.com/multitheftauto/mtasa-resources/commit/4a18d7585a2fa45eaed18d4b4796744a235a23c5 4a18d75] by '''shadylua''')&lt;br /&gt;
:* Security improvements ([https://github.com/multitheftauto/mtasa-resources/commit/2ec92132036d0dc073279dda3c88d71f578d651f 2ec9213] by '''IIYAMA12''')&lt;br /&gt;
:* Fixed freezetime flickering ([https://github.com/multitheftauto/mtasa-resources/commit/b40f27be0274b641c2cddd4c75a6f86f73ea4941 b40f27b], [https://github.com/multitheftauto/mtasa-resources/commit/817aa1ea9130fbccb1a23b7410309af2f8a21ddc 817aa1e] by '''ricksterhd123''' and '''jlillis''')&lt;br /&gt;
:* Fixed map key bind interferes with race editor help ([https://github.com/multitheftauto/mtasa-resources/commit/e62bc5471433b347b16c15709d469209cf202390 e62bc54] by '''MittellBuurman''')&lt;br /&gt;
:* Fixed player blips staying visible after closing spawn map with F1 ([https://github.com/multitheftauto/mtasa-resources/commit/aaf2dd7ed7a0b6b6c6609a4ee5d8319101e8a674 1a5031c] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''hedit'''&lt;br /&gt;
:* Added German localization [[File:Flag_de.png|x14px]] ([https://github.com/multitheftauto/mtasa-resources/pull/568/commits/c58df8666fbccfb0be73f27c52aa680dae2f0c1a bc33634] by '''shadylua''')&lt;br /&gt;
:* Added Brazilian Portuguese localization [[File:Flag_br.png|x14px]] ([https://github.com/multitheftauto/mtasa-resources/commit/d1b85d7dda45293ce497cf03f21eea2f59100b89 d1b85d7] by '''ricksterhd123''')&lt;br /&gt;
:* Added Hungarian localization [[File:Flag_hu.png|x18px]] ([https://github.com/multitheftauto/mtasa-resources/commit/53050dd0bf73a164969480c9277fc3c6b0601b7e 53050dd] by '''Nico834''')&lt;br /&gt;
:* Updated Turkish localization [[File:Tr.gif]] ([https://github.com/multitheftauto/mtasa-resources/commit/3044d00a796488870556b19b088ac505c332952c 3044d00] by '''mahlukat5''')&lt;br /&gt;
:* Updated Spanish localization [[File:Flag_es.png|x18px]] ([https://github.com/multitheftauto/mtasa-resources/commit/b74c2393cc15e403d4588ebb671659c16cc36269 b74c239] by '''kxndrick0''')&lt;br /&gt;
&lt;br /&gt;
'''internetradio'''&lt;br /&gt;
:* Fixed that the GUI window of the resource &amp;quot;internetradio&amp;quot; collides with the GUI window of the resource &amp;quot;helpmanager&amp;quot; ([https://github.com/multitheftauto/mtasa-resources/commit/313f3dde6b7cdb389f11f1a62a6d3e8c093c159f 313f3dd] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Improvements ([https://github.com/multitheftauto/mtasa-resources/commit/a3c9e17cf6b85374b5f9b5881937aee97da94745 a3c9e17] by '''srslyyyy''')&lt;br /&gt;
:* Added attaching to vehicles ([https://github.com/multitheftauto/mtasa-resources/commit/3dd5cbd32f092337707277fbecc5ee54988e07fc 3dd5cbd] by '''ds1-e''')&lt;br /&gt;
:* Added admin commands ([https://github.com/multitheftauto/mtasa-resources/commit/5c160212e190f74461d65fac1668cda07a2d0b11 https://github.com/multitheftauto/mtasa-resources/commit/5c160212e190f74461d65fac1668cda07a2d0b11] by '''ds1-e''')&lt;br /&gt;
:* Added ability to show speaker owner ([https://github.com/multitheftauto/mtasa-resources/commit/6189fc1eefce29c8467c5a1093eaa8bfd8ed97f0 6189fc1] by '''ds1-e''')&lt;br /&gt;
:* Fixed playSound3D and track name showing in other dimensions ([https://github.com/multitheftauto/mtasa-resources/commit/d4c04db009cdd68913fdb47bbc73acd91e63f981 d4c04db] by '''mateo-14'''&lt;br /&gt;
&lt;br /&gt;
'''ip2c'''&lt;br /&gt;
:* Added missing fetchRemote aclrequest ([https://github.com/multitheftauto/mtasa-resources/commit/e1364c3ebcc956dbf7f61e2d89741837776edec2 e1364c3] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Added backed up file and .gitignore to ignore the real one (auto-updated) ([https://github.com/multitheftauto/mtasa-resources/commit/e182291a53c3c76a2cf45834ba313aa9d18c16f4 e182291] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''ipb'''&lt;br /&gt;
:* Replaced the onClientResource start event with the onPlayerResourceStart event ([https://github.com/multitheftauto/mtasa-resources/commit/cca3a05adf7fc940b913453a5fad5d5f3c8e3518 cca3a05] by '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
'''parachute'''&lt;br /&gt;
:* Fixed warnings about min_mta_version ([https://github.com/multitheftauto/mtasa-resources/commit/b4119cca4665d63a3043f14c1624ce9c96700b96 b4119cc] by '''NetroX1993''')&lt;br /&gt;
&lt;br /&gt;
'''playerblips'''&lt;br /&gt;
:* Fixed that the resource &amp;quot;playercolors&amp;quot; should be activated for teams ([https://github.com/multitheftauto/mtasa-resources/commit/2cd28db5fa891f361c5af07a491532378a820b83 2cd28db] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Real-time update of settings ([https://github.com/multitheftauto/mtasa-resources/commit/9505b181fe7fc2bab53142746f73bc64a8fd984d 9505b18] by '''Nico834''')&lt;br /&gt;
:* Improved debug messages ([https://github.com/multitheftauto/mtasa-resources/commit/4084e5d369907d3ededd1b2eb19c916983680154 4084e5d] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed that when a player changed or joined teams the color of the blip was not updated ([https://github.com/multitheftauto/mtasa-resources/commit/ff80005f114a3d010624f7d54510ffde47dddb00 ff80005] by '''T-MaxWiese-T''')&lt;br /&gt;
&lt;br /&gt;
'''playercolors'''&lt;br /&gt;
:* Player nametag color should revert to team color when the resource is stopped ([https://github.com/multitheftauto/mtasa-resources/commit/d45d2d0cd963186639d76ab1cb27ef6a042cd0bd d45d2d0] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed chat messages sent twice ([https://github.com/multitheftauto/mtasa-resources/commit/0547cf72514a7dc7efc987f47903c35b310a3b22 0547cf7] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''performancebrowser'''&lt;br /&gt;
:* Fixed player names not being reinitialized on change ([https://github.com/multitheftauto/mtasa-resources/commit/3e0166dc7fa9c11c596a7958b02423b6aeff8410 3e0166d] by '''YelehaUwU''')&lt;br /&gt;
&lt;br /&gt;
'''runcode'''&lt;br /&gt;
:* Added aclrequest for loadstring function ([https://github.com/multitheftauto/mtasa-resources/commit/c40b8095f054b6e87b46e1d53d9b6ec77cf943c7 c40b809] by '''IIYAMA12 ''')&lt;br /&gt;
&lt;br /&gt;
'''scoreboard'''&lt;br /&gt;
:* Replaced drawing arrow from path to texture ([https://github.com/multitheftauto/mtasa-resources/commit/128f26952810804df6acb233ca9476853caa1286 128f269] by '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
'''speedometer'''&lt;br /&gt;
:* Display at resource start ([https://github.com/multitheftauto/mtasa-resources/commit/31a5ac4013c3633647178e695474da6632eb38b8 31a5ac4] by '''Nico834''')&lt;br /&gt;
:* Preventing pointer overflow ([https://github.com/multitheftauto/mtasa-resources/commit/8689cdc247a3fd16125524aac04eb054c398084c 8689cdc] by '''Nico834''')&lt;br /&gt;
&lt;br /&gt;
'''superman'''&lt;br /&gt;
:* Fixes and improvements ([https://github.com/multitheftauto/mtasa-resources/commit/2b3bc102225b2f1c3144cffe290175e9a2c71728 2b3bc10], [https://github.com/multitheftauto/mtasa-resources/commit/e1c06c3c2581c16a6e05401381263a47dd6ac5f0 e1c06c3], [https://github.com/multitheftauto/mtasa-resources/commit/1e4319d180be0f482d42f2f32fbf2c1e5cd440cc 1e4319d] by '''ds1-e''')&lt;br /&gt;
&lt;br /&gt;
'''votemanager'''&lt;br /&gt;
:* Fixed lint error ([https://github.com/multitheftauto/mtasa-resources/commit/c8630075317123e510645464a3bf56ebb244573b c863007] by '''Dark-Dragon''')&lt;br /&gt;
&lt;br /&gt;
'''mapfixes'''&lt;br /&gt;
:* A new resource has been added that fixes many holes and bugs in the default map ([https://github.com/multitheftauto/mtasa-resources/commit/23f6bd94370440af5ed79a47bda1ff0caf92fa8e 23f6bd9] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''gps'''&lt;br /&gt;
:* Added export functions for custom logic ([https://github.com/multitheftauto/mtasa-resources/commit/537d92d11b357cf9e795a7bb3ec87c13fa62c7bc 537d92d] by '''T-MaxWiese-T''')&lt;br /&gt;
&lt;br /&gt;
'''deathmatch'''&lt;br /&gt;
:* Improvements and update ([https://github.com/multitheftauto/mtasa-resources/commit/a01ec8a86e636ca61f25a03d4ee30bd898754cbd a01ec8a], [https://github.com/multitheftauto/mtasa-resources/commit/b94ffddfd5b230544d54e5eca8c9c5d87dc69128 b94ffdd] by '''jlillis'''&lt;br /&gt;
&lt;br /&gt;
'''race'''&lt;br /&gt;
:* Fixed automatic nextid assignment breaking ([https://github.com/multitheftauto/mtasa-resources/commit/2c695a9e793825a8cafd2ee3be490d2d8e9ad318 2c695a9] by '''lotsofs''')&lt;br /&gt;
&lt;br /&gt;
'''voice_local'''&lt;br /&gt;
:* Improvements ([https://github.com/multitheftauto/mtasa-resources/commit/53cf63d83169018e0de9f45ecb565958855d717d 53cf63d] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''Others / Uncategorized'''&lt;br /&gt;
:* Refactor of resources meta.xml ([https://github.com/multitheftauto/mtasa-resources/commit/6713b07a459739c06112ac3e608776f3f0696144 6713b07] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
== Extra information ==&lt;br /&gt;
''More detailed information available on our GitHub repositories:&lt;br /&gt;
* [https://github.com/multitheftauto/mtasa-blue MTA:SA Blue]&lt;br /&gt;
* [https://github.com/multitheftauto/mtasa-resources MTA:SA Official Resources]&lt;br /&gt;
&lt;br /&gt;
[[Category:Changelog]]&lt;br /&gt;
[[Category:Incomplete]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Changes_in_1.7&amp;diff=82475</id>
		<title>Changes in 1.7</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Changes_in_1.7&amp;diff=82475"/>
		<updated>2025-09-16T00:02:25Z</updated>

		<summary type="html">&lt;p&gt;O22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pageclass class=&amp;quot;#4286f4&amp;quot; subcaption=&amp;quot;Next release&amp;quot;&amp;gt;&amp;lt;/pageclass&amp;gt;&lt;br /&gt;
{{Changelogs}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
'''This changelog is partial and needs updating. It is updated progressively to keep the page always up to date.'''&lt;br /&gt;
&lt;br /&gt;
* GitHub commit log: https://github.com/multitheftauto/mtasa-blue/compare/1.6.0...master&lt;br /&gt;
* GitHub milestone: https://github.com/multitheftauto/mtasa-blue/milestone/10&lt;br /&gt;
* Resources GitHub commit log: https://github.com/multitheftauto/mtasa-resources/compare/1.6.0...master&lt;br /&gt;
* Release announcement on forums: TBA&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Important notice to Windows 7 and 8.x users ==&lt;br /&gt;
If you are using Windows 7 or 8.x, please upgrade your system to Windows 10 or 11 as soon as possible. Windows 7 and 8.x are no longer supported by Microsoft (since January 2020 and January 2023 respectively) and most software (including Google Chrome and Steam) which means you are running an insecure system. Multi Theft Auto will also eventually drop Windows 7 and 8.x support sometime in the future, so it would be a good idea to start looking at upgrade options right now. Thank you!&lt;br /&gt;
&lt;br /&gt;
'''CEF in MTA is no longer updated for Windows 7 or 8.x. This is because CEF no longer supports those versions of Windows. This is bad for security, so please upgrade to Windows 10+ and MTA to 1.6+'''&lt;br /&gt;
&lt;br /&gt;
== 4 Deprecations ==&lt;br /&gt;
These changes will take effect in this version and scripts may need to be manually upgraded when updating:&lt;br /&gt;
* Changed [[base64Encode]] and [[base64Decode]] to throw a warning on use, please upgrade to [[encodeString]] and [[decodeString]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/30a83b0af164fb6920a2a60e089d08a6f5622f7d 30a83b0] by '''Nico834''')&lt;br /&gt;
* Changed [[setHelicopterRotorSpeed]] and [[getHelicopterRotorSpeed]] to throw a warning on use, please upgrade to [[setVehicleRotorSpeed]] and [[getVehicleRotorSpeed]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/82000c34830b51ace2d14e39f3b487feb1aac1da 82000c3] by '''FileEX''')&lt;br /&gt;
* Changes [[setPedOnFire]] and [[isPedOnFire]] to throw a warning on use, please upgrade to [[setElementOnFire]] and [[isElementOnFire]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/7ad96e2e78fe41f8924d3f105b1683f7363c6fcb 7ad96e2] by '''FileEX''')&lt;br /&gt;
* Changes [[removeAllGameBuildings]] and [[restoreAllGameBuildings]] to throw a warning on use, please upgrade to [[removeGameWorld]] and [[restoreGameWorld]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/d7adae68791ce237704acc06bf794b5fbda96f95#diff-93c130ddb85da32121129a437ac5b28ba16fa17f6e3506e4cddfb7bc3d8eb9fbR180 d7adae6] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
== Notable Changes ==&lt;br /&gt;
* Support for Discord Rich Presence ([https://github.com/multitheftauto/mtasa-blue/commit/fdaa3aca3e233c7aba69d0fd5f85e78288a4401a fdaa3ac], [https://github.com/multitheftauto/mtasa-blue/commit/ef26810df4542283fee8edcc165bc9be22f2ca98 ef26810], [https://github.com/multitheftauto/mtasa-blue/commit/acfbd40df1ff1432ea1d6663c005d43fce22899c acfbd40] by '''znjvder''', '''tederis''', '''patrikjuvonen''' and '''Deihim007''')&lt;br /&gt;
* Added support for [[Building]]'s ([https://github.com/multitheftauto/mtasa-blue/commit/81242edb9295efbf4bf8b198b12d577a0877aec2 81242ed], [https://github.com/multitheftauto/mtasa-blue/commit/eb6b18a5d49a7f0f34bdbf42b15f933e42876cf8 eb6b18a] by '''TheNormalnij''')&lt;br /&gt;
* Added the ability to generate a nickname ([https://github.com/multitheftauto/mtasa-blue/commit/12c50eee66898771244074a3a44818dab36a7ac3 12c50ee] by '''Nico834''')&lt;br /&gt;
* Added ''meta.xml'' loading files pattern ([https://github.com/multitheftauto/mtasa-blue/commit/90e2737d0a5eb12f34d2fd3c1f270bedf34cda35 90e2737] by '''W3lac3''')&lt;br /&gt;
* Added world properties (time cycle and weather related features) with new functions: [[setWorldProperty]], [[getWorldProperty]], [[resetWorldProperty]] ([https://github.com/multitheftauto/mtasa-blue/commit/a75f1e9a03e74f7c9d4ae9e5aef8433af84d5ea2 a75f1e9] by '''Samr46''')&lt;br /&gt;
* Added file-system related functions (list files and folders in directories) ([https://github.com/multitheftauto/mtasa-blue/commit/74781c6295b5b6dc81cd95d4cfab7900d88d7524 74781c6] by '''Tracer''')&lt;br /&gt;
* Added the ability to change the color and size of the target arrow in the checkpoint marker ([https://github.com/multitheftauto/mtasa-blue/commit/071378ec4326408a9520c79c96befca995d097f6 071378e] by '''FileEX''')&lt;br /&gt;
* Added the ability to change the alpha of checkpoint and arrow marker ([https://github.com/multitheftauto/mtasa-blue/commit/7988852cf3af9e78f662d76544dc00db408b5c87 7988852] by '''FileEX''')&lt;br /&gt;
* Fixed weapon issues when using the jetpack ([https://github.com/multitheftauto/mtasa-blue/commit/180fbc0b5fdba95450e7a519f78f7588849349bf 180fbc0], [https://github.com/multitheftauto/mtasa-blue/commit/a68c2c4232c28c6ba5595a814b89be976c4fa9c3 a68c2c4] by '''FileEX''')&lt;br /&gt;
* Fixed vehicle windows not being visible from the inside when the lights are on ([https://github.com/multitheftauto/mtasa-blue/commit/934c1d6cfef19902cc391c896bbe2f80ba5a4f70 934c1d6] by '''FileEX''')&lt;br /&gt;
* Fixed old [[setElementModel]] memory leak ([https://github.com/multitheftauto/mtasa-blue/commit/4e7afa2586c6992a75ac5312378c1096d87148ae 4e7afa2] by '''tederis''')&lt;br /&gt;
* Enabled WebGL (GPU Acceleration) in CEF ([https://github.com/multitheftauto/mtasa-blue/commit/026301168d2cd8239650a4f0aa33ff0be6d752dc 0263011] by '''TFP-dev''')&lt;br /&gt;
* Refactored '''Quick Connect button''' ([https://github.com/multitheftauto/mtasa-blue/commit/5b59e2236b30ec696ac1c05f8bb4e509ec06c0f7 5b59e22] by '''Fernando-A-Rocha''')&lt;br /&gt;
* Added setting to save camera photos in documents folder ([https://github.com/multitheftauto/mtasa-blue/commit/3419b9b7a20e3d1893d673a2a07ee1a0efda1bd5 3419b9b] by '''ffsPLASMA''')&lt;br /&gt;
* Added HUD customization ([https://github.com/multitheftauto/mtasa-blue/commit/5ea0e0fb23b21750207b23191db92562cf9b822c 5ea0e0f] by '''FileEX''')&lt;br /&gt;
* Added sync peds/players animations for new players ([https://github.com/multitheftauto/mtasa-blue/commit/b32eafc70816ece8ad995d98d380d8f6e9950475 b32eafc] by '''FileEX''')&lt;br /&gt;
* From now on, animation progress is preserved even after a restream; the animation will not start from the beginning. ([https://github.com/multitheftauto/mtasa-blue/commit/ad0d6bfdd7bf56b78f7c8c1b9a60597ef9b6dca3 ad0d6bf] by '''FileEX''')&lt;br /&gt;
* Added ability to replace CJ clothing models ([https://github.com/multitheftauto/mtasa-blue/commit/6b823653ecf68e181de91392d5d8931488f90f20 6b82365] by '''W3lac3''')&lt;br /&gt;
* New MTA splash window ([https://github.com/multitheftauto/mtasa-blue/commit/215173eeb1e015c0381ce94f95429c36ab1b4430 215173e] by '''botder''')&lt;br /&gt;
* Fixed multiple damage instances in certain areas during explosions ([https://github.com/multitheftauto/mtasa-blue/commit/3bce4080ec66a993096f9e7fb039cc7d5d0d8175 3bce408] by '''FileEX''')&lt;br /&gt;
* From now on, before disconnecting from the server using the main menu, you will be asked to confirm if you really want to do it ([https://github.com/multitheftauto/mtasa-blue/commit/6aa763fb79701c57402fccca9ae6c0f396fb8f3c 6aa763f] by '''tonievalue''')&lt;br /&gt;
&lt;br /&gt;
== Statistics ==&lt;br /&gt;
&amp;lt;section show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
These are some statistics since the [[Changes in 1.6.0|previous release]].&lt;br /&gt;
* This is the '''28&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt;''' 1.x.x release&lt;br /&gt;
* '''{{date difference|2023|06|16}}''' days&lt;br /&gt;
* '''39''' new functions&lt;br /&gt;
* '''12''' new events&lt;br /&gt;
* '''4''' deprecations&lt;br /&gt;
* '''50+''' bug fixes and changes&lt;br /&gt;
* '''734''' commits ([https://github.com/multitheftauto/mtasa-blue/compare/1.6.0...master mtasa-blue])  ([https://github.com/multitheftauto/mtasa-resources/compare/1.6.0...master mtasa-resources])&lt;br /&gt;
* '''78''' new open GitHub issues ([https://github.com/multitheftauto/mtasa-blue/issues?q=is%3Aopen+is%3Aissue+created%3A2023-06-16..2024-10-01 see list])&lt;br /&gt;
* '''29''' resolved GitHub issues ([https://github.com/multitheftauto/mtasa-blue/issues?q=is%3Aclosed+is%3Aissue+milestone%3A%221.6.1%22 see list])&lt;br /&gt;
* '''28''' closed GitHub issues ([https://github.com/multitheftauto/mtasa-blue/issues?q=is%3Aclosed+is%3Aissue+closed%3A2023-06-16..2024-10-01+no%3Amilestone+-label%3Ainvalid see list])&lt;br /&gt;
* '''30''' new open GitHub pull requests ([https://github.com/multitheftauto/mtasa-blue/pulls?q=is%3Aopen+is%3Apr+created%3A2023-06-16..2024-10-01 see list])&lt;br /&gt;
* '''81''' merged GitHub pull requests ([https://github.com/multitheftauto/mtasa-blue/pulls?q=is%3Apr+is%3Amerged+milestone%3A%221.6.1%22 see list])&lt;br /&gt;
* '''26''' closed GitHub pull requests ([https://github.com/multitheftauto/mtasa-blue/pulls?q=is%3Apr+is%3Aunmerged+closed%3A2023-06-16..2024-10-01 see list])&lt;br /&gt;
* '''2+''' contributors of which '''0+''' are new ([https://github.com/multitheftauto/mtasa-blue/graphs/contributors?from=2023-06-16&amp;amp;to=2024-10-01&amp;amp;type=c see list])&lt;br /&gt;
* '''100+''' total contributors ([https://github.com/multitheftauto/mtasa-blue/graphs/contributors see list])&lt;br /&gt;
* '''3''' vendor updates&lt;br /&gt;
&lt;br /&gt;
&amp;lt;sub&amp;gt;'''Note:''' Last update to these statistics was made {{date difference human friendly|2024|04|04}}.&amp;lt;/sub&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 86 New Features ==&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Added new ''special world properties'' to [[setWorldSpecialPropertyEnabled]] function&lt;br /&gt;
:* Added '''fireballdestruct''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
:* Added '''roadsignstext''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/4a746eca1b5a546a19344a76573a5108ff9d79e6 4a746ec] by '''FileEX''')&lt;br /&gt;
:* Added '''extendedwatercannons''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/13a53959f52c978b416c00b428938f82818b2312 13a5395] by '''FileEX''')&lt;br /&gt;
:* Added '''tunnelweatherblend''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/9a0790ec7fab1efb7817eead371744fcd47da5c5 9a0790e] by ''''gta191977649''')&lt;br /&gt;
:* Added '''ignorefirestate''' special world proeprty ([https://github.com/multitheftauto/mtasa-blue/commit/46f3580fbd8ea5cf48c14cf8fee0bd6eb6691854 46f3580] by '''FileEX''')&lt;br /&gt;
:* Added '''flyingcomponents''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/5ee641436821ae8a59484ac721a4ec929d5cc152 5ee6414] by '''FileEX''')&lt;br /&gt;
:* Added '''vehicleburnexplosions''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/88d303c0bbcc0ed4fee958df2d16ace562ce0108 88d303c] by '''samr46''')&lt;br /&gt;
:* Added '''vehicle_engine_autostart''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/8b3f3440f8bc485f90d466a3fe6f3e5819de9c2f 8b3f344] by '''samr46''')&lt;br /&gt;
&lt;br /&gt;
* Added new ''glitches'' to [[setGlitchEnabled]] function&lt;br /&gt;
:* Added '''vehicle_rapid_stop''' glitch ([https://github.com/multitheftauto/mtasa-blue/commit/3f5801e65d8a51d112b686485d4a2491151c3311 3f5801e], [https://github.com/multitheftauto/mtasa-blue/commit/ef792d6af62443f97014621334c7188dddb4ef29 ef792d6] by '''samr46''' and '''Merlin''')&lt;br /&gt;
&lt;br /&gt;
* New '''file''' functions&lt;br /&gt;
:* Added [[fileGetContents]] ([https://github.com/multitheftauto/mtasa-blue/commit/22930d854ce67d84a4a3b65a61b98a9ffd3f9e38 22930d8] by '''botder''')&lt;br /&gt;
:* Added [[fileGetHash]] ([https://github.com/multitheftauto/mtasa-blue/commit/94f944f508b99b5d7e84fbb0be07a483e10517a9 94f944f] by '''botder''')&lt;br /&gt;
&lt;br /&gt;
* New and updated [[object]] functions&lt;br /&gt;
:* '''[Updated]''' Added [[isObjectMoving]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/7c939adb892c08836462a78cd9b987884cdb49ee 7c939ad] by '''FileEX''')&lt;br /&gt;
:* '''[Updated]''' Added [[breakObject]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/aa1a7853f46fc796a94f38b7df2a5293fb941ba2 aa1a785] by '''FileEX''')&lt;br /&gt;
:* '''[Updated]''' Added [[respawnObject]] and [[toggleObjectRespawn]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/9d65bb673c4df16def27e97a4af74d3b0c7eedc9 9d65bb6] by '''FileEX''')&lt;br /&gt;
:* '''[New]''' Added [[isObjectRespawnable]] ([https://github.com/multitheftauto/mtasa-blue/commit/9d65bb673c4df16def27e97a4af74d3b0c7eedc9 9d65bb6] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New '''file-path''' functions&lt;br /&gt;
:* Added [[pathListDir]], [[pathIsFile]] and [[pathIsDirectory]] ([https://github.com/multitheftauto/mtasa-blue/commit/74781c6295b5b6dc81cd95d4cfab7900d88d7524 74781c6] by '''Tracer''')&lt;br /&gt;
&lt;br /&gt;
* New [[marker]] functions&lt;br /&gt;
:* Added [[setMarkerTargetArrowProperties]] and [[getMarkerTargetArrowProperties]] ([https://github.com/multitheftauto/mtasa-blue/commit/071378ec4326408a9520c79c96befca995d097f6 071378e] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[timer]] functions&lt;br /&gt;
:* Added [[setTimerPaused]] and [[isTimerPaused]] ([https://github.com/multitheftauto/mtasa-blue/commit/69aa420f21fde3ac56e3d3bbc62ef0f060295c0a 69aa420] by '''jvstns''')&lt;br /&gt;
&lt;br /&gt;
* New and updated '''world''' functions&lt;br /&gt;
:* '''[New]''' Added [[resetWorldProperties]] ([https://github.com/multitheftauto/mtasa-blue/commit/6df889e78328b80f8e4bdc02f8761472cf87c54c 6df889e] by '''FileEX''')&lt;br /&gt;
:* '''[Updated]''' Added [[isWorldSpecialPropertyEnabled]] and [[setWorldSpecialPropertyEnabled]] also to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
&lt;br /&gt;
* New and updated [[vehicle]] functions&lt;br /&gt;
:* '''[New]''' Added [[spawnVehicleFlyingComponent]] ([https://github.com/multitheftauto/mtasa-blue/commit/9f54cfcd7a584f413db731052ebed921acfc71ea 9f54cfc] by '''FileEX''')&lt;br /&gt;
:* '''[Upated]''' Added [[setVehicleNitroActivated]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/e9e5819c394987de2b9a5d581c4df9fd47057d9d#diff-49b4b89bf4463f38e70a325131b4da66457d783b1401dde0ffbad723624f8612R130 e9e5819] by '''Proxy-99''')&lt;br /&gt;
:* '''[Updated]''' Added [[addVehicleSirens]] and [[removeVehicleSirens]] to client-side ([https://github.com/multitheftauto/mtasa-blue/commit/682cdca3c37248a9e725b461ba322db413653f25 682cdca] by '''Proxy-99''')&lt;br /&gt;
&lt;br /&gt;
* Updated [[player]] functions&lt;br /&gt;
:* Added [[getPlayerScriptDebugLevel]] to client-side ([https://github.com/multitheftauto/mtasa-blue/commit/8403da54ecfd20d6b9740fb79d90ac936d316112 8403da5] by '''Nico834''')&lt;br /&gt;
&lt;br /&gt;
* Updated [[ped]] functions&lt;br /&gt;
:* Added [[isPedReloadingWeapon]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/e71f4828b46bb69b9622a11d0f700a79f986ee9b e71f482] by '''Nico834''')&lt;br /&gt;
&lt;br /&gt;
* New [[element]] functions&lt;br /&gt;
:* Added [[setElementOnFire]] and [[isElementOnFire]] ([https://github.com/multitheftauto/mtasa-blue/commit/7ad96e2e78fe41f8924d3f105b1683f7363c6fcb 7ad96e2] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
=== Client ===&lt;br /&gt;
====Functions====&lt;br /&gt;
* New '''engine''' functions &lt;br /&gt;
:* Added '''streaming''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/7ffc31243c1dbca8ed5e7b0f8c05da239aa918bd 7ffc312], [https://github.com/multitheftauto/mtasa-blue/commit/6c86ebbf0801c45d5e0bcbb9d9f2e8fd55525b15 6c86ebb], [https://github.com/multitheftauto/mtasa-blue/commit/3c44dc5dcde0a5f98ff470ce9bc64443d47de807 3c44dc5] by '''Pirulax''')&lt;br /&gt;
::* [[engineStreamingSetMemorySize]]&lt;br /&gt;
::* [[engineStreamingGetMemorySize]]&lt;br /&gt;
::* [[engineStreamingRestoreMemorySize]]&lt;br /&gt;
::* [[engineStreamingSetBufferSize]]&lt;br /&gt;
::* [[engineStreamingGetBufferSize]]&lt;br /&gt;
::* [[engineStreamingRestoreBufferSize]]&lt;br /&gt;
::* [[engineStreamingSetModelCacheLimits]]&lt;br /&gt;
:* Added '''model-streaming''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/008eaa7e36ae74bbab7c5bc9861d8f0f890eb945 008eaa7] by '''TheNormalnij''')&lt;br /&gt;
::* [[engineStreamingRequestModel]]&lt;br /&gt;
::* [[engineStreamingReleaseModel]]&lt;br /&gt;
::* [[engineStreamingGetModelLoadState]]&lt;br /&gt;
:* Added new '''TXD''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/3e9a3735a8022a0acabaa3041c8a3f8d91e547b7 3e9a373] by '''TheNormalnij''')&lt;br /&gt;
::* [[engineSetModelTXDID]]&lt;br /&gt;
::* [[engineResetModelTXDID]]&lt;br /&gt;
:* Added '''pools''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/bdf12215d1f6e73d87f5cb0881049aa224b46b65 bdf1221] by '''TheNormalnij''')&lt;br /&gt;
::* [[engineGetPoolCapacity]]&lt;br /&gt;
::* [[engineSetPoolCapacity]]&lt;br /&gt;
::* [[engineGetPoolDefaultCapacity]]&lt;br /&gt;
::* [[engineGetPoolUsedCapacity]]&lt;br /&gt;
:* Added [[enginePreloadWorldArea]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b72fb9d3c9e6813cdf56e53d1a1e72958abd3cf 5b72fb9] by '''MegadreamsBE''')&lt;br /&gt;
&lt;br /&gt;
* New functions for '''Discord RPC''' ([https://github.com/multitheftauto/mtasa-blue/commit/fdaa3aca3e233c7aba69d0fd5f85e78288a4401a fdaa3ac], [https://github.com/multitheftauto/mtasa-blue/commit/ef26810df4542283fee8edcc165bc9be22f2ca98 ef26810], [https://github.com/multitheftauto/mtasa-blue/commit/acfbd40df1ff1432ea1d6663c005d43fce22899c acfbd40] by '''znjvder''', '''tederis''', '''patrikjuvonen''' and '''Deihim007''')&lt;br /&gt;
:* [[setDiscordApplicationID]]&lt;br /&gt;
:* [[setDiscordRichPresenceDetails]]&lt;br /&gt;
:* [[setDiscordRichPresenceState]]&lt;br /&gt;
:* [[setDiscordRichPresenceAsset]]&lt;br /&gt;
:* [[setDiscordRichPresenceSmallAsset]]&lt;br /&gt;
:* [[setDiscordRichPresenceButton]]&lt;br /&gt;
:* [[resetDiscordRichPresenceData]]&lt;br /&gt;
:* [[isDiscordRichPresenceConnected]]&lt;br /&gt;
:* [[setDiscordRichPresencePartySize]]&lt;br /&gt;
:* [[setDiscordRichPresenceStartTime]]&lt;br /&gt;
:* [[setDiscordRichPresenceEndTime]]&lt;br /&gt;
:* [[getDiscordRichPresenceUserID]]&lt;br /&gt;
&lt;br /&gt;
* New [[building]] functions ([https://github.com/multitheftauto/mtasa-blue/commit/81242edb9295efbf4bf8b198b12d577a0877aec2 81242ed], [https://github.com/multitheftauto/mtasa-blue/commit/eb6b18a5d49a7f0f34bdbf42b15f933e42876cf8 eb6b18a] by '''TheNormalnij''')&lt;br /&gt;
:* [[createBuilding]]&lt;br /&gt;
:* '''[Deprecated]''' [[removeAllGameBuildings]] &lt;br /&gt;
:* '''[Deprecated]''' [[restoreAllGameBuildings]] &lt;br /&gt;
&lt;br /&gt;
* New '''world''' functions&lt;br /&gt;
:* Added [[processLineAgainstMesh]] ([https://github.com/multitheftauto/mtasa-blue/commit/acb80a3945d0d5e0230b8a41394a3fe3e70b8d0b acb80a3] by '''Pirulax''')&lt;br /&gt;
:* Added '''volumetric shadows''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/6c93a49c4c2381f4ce84df195d98d36372a47d37 6c93a49] by '''Proxy-99''')&lt;br /&gt;
:::* [[setVolumetricShadowsEnabled]]&lt;br /&gt;
:::* [[isVolumetricShadowsEnabled]]&lt;br /&gt;
:::* [[resetVolumetricShadows]]&lt;br /&gt;
:* Added [[testSphereAgainstWorld]] ([https://github.com/multitheftauto/mtasa-blue/commit/aa90aa5f31e59df455af33b49e3eee5e4f107bfd aa90aa5] by '''FileEX''')&lt;br /&gt;
:* Added [[removeGameWorld]] and [[restoreGameWorld]] ([https://github.com/multitheftauto/mtasa-blue/commit/d7adae68791ce237704acc06bf794b5fbda96f95 d7adae6] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
* New '''drawing''' functions&lt;br /&gt;
:* Added [[dxDrawModel3D]] ([https://github.com/multitheftauto/mtasa-blue/commit/f886a359dd4a680c080da7f132db0527116b5d7a f886a35], [https://github.com/multitheftauto/mtasa-blue/commit/04ef14bbf2182b356155f28d4ed972b0f293632f 04ef14b] by '''CrosRoad95''' and '''tederis''')&lt;br /&gt;
&lt;br /&gt;
* New '''effects/fx''' functions&lt;br /&gt;
:* Added [[fxCreateParticle]] ([https://github.com/multitheftauto/mtasa-blue/commit/8f2730d2e260c3319cb51101c6aedb45e22bbd89 8f2730d] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[ped]] functions&lt;br /&gt;
:* Added [[resetPedVoice]] ([https://github.com/multitheftauto/mtasa-blue/commit/18986a4542db5eb72f6d0dfffb80cb8bb6eb1442 18986a4] by '''Tracer''')&lt;br /&gt;
:* Added new animation features ([https://github.com/multitheftauto/mtasa-blue/commit/aa0591c6f7b529a27b4ed8667e1dc70e68bd9386 aa0591c] by '''Tracer''')&lt;br /&gt;
::* [[getPedAnimationProgress]]&lt;br /&gt;
::* [[getPedAnimationSpeed]]&lt;br /&gt;
::* [[getPedAnimationLength]]&lt;br /&gt;
:* Added [[killPedTask]] ([https://github.com/multitheftauto/mtasa-blue/commit/e4a502bc7619dc3913c70d169f6105ecfb0633ff e4a502b] by '''Proxy-99''')&lt;br /&gt;
:* Added ped shadow features ([https://github.com/multitheftauto/mtasa-blue/commit/26d18288730fd3a7a854152da60c9acd18ab6c6f 26d1828] by '''Proxy-99''')&lt;br /&gt;
::* [[setDynamicPedShadowsEnabled]]&lt;br /&gt;
::* [[isDynamicPedShadowsEnabled]]&lt;br /&gt;
::* [[resetDynamicPedShadows]]&lt;br /&gt;
:* Added [[playPedVoiceLine]] ([https://github.com/multitheftauto/mtasa-blue/commit/7067ac1a73bb0b8c5a1f37794504a00e9703332e 7067ac1] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[player]] functions&lt;br /&gt;
:* Added [[isPlayerCrosshairVisible]] ([https://github.com/multitheftauto/mtasa-blue/commit/03e851a2f5ff2d917ba3c7a1c7577fdb5b8d2a6f 03e851a], [https://github.com/multitheftauto/mtasa-blue/commit/5f21c32fb0725140d6d03476e08de330d429b55a 5f21c32] by '''FileEX''')&lt;br /&gt;
:* New '''HUD''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/5ea0e0fb23b21750207b23191db92562cf9b822c 5ea0e0f] by '''FileEX''')&lt;br /&gt;
::* [[setPlayerHudComponentProperty]]&lt;br /&gt;
::* [[getPlayerHudComponentProperty]]&lt;br /&gt;
::* [[resetPlayerHudComponentProperty]]&lt;br /&gt;
&lt;br /&gt;
* New [[vehicle]] functions&lt;br /&gt;
:* Added [[setVehicleWheelsRotation]] ([https://github.com/multitheftauto/mtasa-blue/commit/aeb113d269fffee7d9ac435ce87b51e905e9efa6 aeb113d] by '''gta191977649''')&lt;br /&gt;
:* Added [[getVehicleEntryPoints]] ([https://github.com/multitheftauto/mtasa-blue/commit/bf588c163cd5bc134771e3842a6585212f06307f bf588c1] by '''MegadreamsBE''')&lt;br /&gt;
:* Added [[setVehicleSmokeTrailEnabled]] and [[isVehicleSmokeTrailEnabled]] for planes ([https://github.com/multitheftauto/mtasa-blue/commit/a5dfc5223358127299511b618ab29da08ff23030 a5dfc52] by '''Proxy-99''')&lt;br /&gt;
:* Added [[setVehicleRotorState]] and [[getVehicleRotorState]] for planes and helicopters ([https://github.com/multitheftauto/mtasa-blue/commit/c7644f2773c37c4e3d40b00807f2e962daca83b6#diff-9a175949acc865a4deea435d73c2082716ab68c6811ef1a657783f3d420dc00fR165 c7644f2] by '''FileEX''')&lt;br /&gt;
:* Added '''vehicle audio''' functions: ([https://github.com/multitheftauto/mtasa-blue/commit/53ee579670ef4ecec28f44627ff99321bba48cbd 53ee579] by '''TheNormalnij''')&lt;br /&gt;
::* [[setVehicleModelAudioSetting]]&lt;br /&gt;
::* [[getVehicleModelAudioSettings]]&lt;br /&gt;
::* [[resetVehicleModelAudioSettings]]&lt;br /&gt;
::* [[setVehicleAudioSetting]]&lt;br /&gt;
::* [[getVehicleAudioSettings]]&lt;br /&gt;
::* [[resetVehicleAudioSettings]]&lt;br /&gt;
&lt;br /&gt;
* New '''camera''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/40ec398bb15e775d1552286eb86fe7aa0dffefa4 40ec398], [https://github.com/multitheftauto/mtasa-blue/commit/d9c2793de2a9f0782ec59cf0ef9907abf935d421 d9c2793] by '''Tracer''')&lt;br /&gt;
:* [[shakeCamera]]&lt;br /&gt;
:* [[resetShakeCamera]]&lt;br /&gt;
&lt;br /&gt;
* New '''game-time''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/b8b7ce555e2f0f0dd74425ac7c91786374513bee b8b7ce5] by '''Proxy-99''')&lt;br /&gt;
:* [[setTimeFrozen]]&lt;br /&gt;
:* [[isTimeFrozen]]&lt;br /&gt;
:* [[resetTimeFrozen]]&lt;br /&gt;
&lt;br /&gt;
* New [[element]] functions&lt;br /&gt;
:* Added [[setElementBoneQuaternion]] and [[getElementBoneQuaternion]] ([https://github.com/multitheftauto/mtasa-blue/commit/10098b0984bf5d5955ea1764e28f616c8a60714f 10098b0] by '''gownosatana''')&lt;br /&gt;
:* Added [[setElementLighting]] ([https://github.com/multitheftauto/mtasa-blue/commit/90fd98a6381991cfa926a9a65b9b934d0343e2b1 90fd98a] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[browser]] functions&lt;br /&gt;
:* Added [[isBrowserGPUEnabled]] ([https://github.com/multitheftauto/mtasa-blue/commit/bfdfdb5f44726df85626e6e3e06c2a319c0c8962 bfdfdb5] by '''Lpsd''')&lt;br /&gt;
&lt;br /&gt;
* New '''weapons''' functions&lt;br /&gt;
:* Added [[setWeaponRenderEnabled]] &amp;amp; [[isWeaponRenderEnabled]] ([https://github.com/multitheftauto/mtasa-blue/commit/efed59b7dc7b076219f1c8a868ef8aa028582127 efed59b] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
====Events====&lt;br /&gt;
* Added [[onClientCoreCommand]] ([https://github.com/multitheftauto/mtasa-blue/commit/b2cf02943924c4972d2a695cdbfd7c9873fc3cbb b2cf029] by '''Pieter-Dewachter''')&lt;br /&gt;
&lt;br /&gt;
* Added [[onClientBrowserConsoleMessage]] ([https://github.com/multitheftauto/mtasa-blue/pull/3676 #3676], [https://github.com/multitheftauto/mtasa-blue/commit/d296a653c5ce2ecfd4f7150d74391b703b773baf d296a65] by '''gownosatana''' and '''Tracer''')&lt;br /&gt;
&lt;br /&gt;
=== Server ===&lt;br /&gt;
====Functions====&lt;br /&gt;
* New [[ACL]] functions&lt;br /&gt;
:* Added [[aclObjectGetGroups]] ([https://github.com/multitheftauto/mtasa-blue/commit/cf46bd8487bdb2d0cafdab1f43936357f670fe10 cf46bd8] by '''Tracer''')&lt;br /&gt;
&lt;br /&gt;
* New '''acl-account''' functions&lt;br /&gt;
:* Added [[getAccountType]] ([https://github.com/multitheftauto/mtasa-blue/commit/545f54b6ae0bfc721abba12402ad3787ed9ae811 545f54b] by '''Tracer''')&lt;br /&gt;
:* Added [[setAccountSerial]] ([https://github.com/multitheftauto/mtasa-blue/commit/a0c2e410f225ebd245a7c5b8031812cf94360097 a0c2e41] by '''camargo2019''')&lt;br /&gt;
&lt;br /&gt;
* New [[vehicle]] functions&lt;br /&gt;
:* Added new vehicle respawn functions ([https://github.com/multitheftauto/mtasa-blue/commit/1ff7137fd4477626d7ef4abfb1c696872cdf0eab 1ff7137], [https://github.com/multitheftauto/mtasa-blue/commit/d93287de761e568400b3b555a277e4ead6546ca3 d93287d] by '''Tracer''')&lt;br /&gt;
::* [[isVehicleRespawnable]]&lt;br /&gt;
::* [[getVehicleRespawnDelay]]&lt;br /&gt;
::* [[getVehicleIdleRespawnDelay]]&lt;br /&gt;
&lt;br /&gt;
* Added [[createBuilding]] to server-side also ([https://github.com/multitheftauto/mtasa-blue/commit/6e221298f4998c576ebf5a783cd0761b89117a7a 6e22129] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
* Security improvements for element-data system ([https://github.com/multitheftauto/mtasa-blue/commit/750d09adb9fd35f4c1b7786966b7ca292e35c200 750d09a] by '''TheNormalnij''')&lt;br /&gt;
:* Added [[onPlayerChangesProtectedData]] event&lt;br /&gt;
:* Added '''elementdata_whitelisted''' tag to the '''mtaserver.conf'''&lt;br /&gt;
:* Added '''clientChangesPolicy''' argument to the [[setElementData]].&lt;br /&gt;
&lt;br /&gt;
* Added new [[Server_mtaserver.conf|mta_server.conf]] tags:&lt;br /&gt;
&amp;lt;!--:* Added object specific contact radius and limit contact check. This can be set in the [[server_mtaserver.conf#object_contact_sync_radius|mtaserver.conf]]([https://github.com/multitheftauto/mtasa-blue/commit/6085796cafd1008ed4a74eae614d651c6c734741 6085796] by '''MegadreamsBE''')--&amp;gt;&lt;br /&gt;
:* Added [[Server_mtaserver.conf#vehicle_contact_sync_radius#vehicle_contact_sync_radius|vehicle_contact_sync_radius]] tag ([https://github.com/multitheftauto/mtasa-blue/commit/e3338c2fbbdb500c4ce28dc0677ceadef1f1ca4c e3338c2] by '''MegadreamsBE''')&lt;br /&gt;
:* Added [[Server_mtaserver.conf#vehicle_contact_sync_radius#check_duplicate_serials|check_duplicate_serials]] tag ([https://github.com/multitheftauto/mtasa-blue/commit/e094942b75117a49cae8c35d6508f37d0cf511fe e094942] by '''Nico834''')&lt;br /&gt;
:* Added [[Server_mtaserver.conf#vehicle_contact_sync_radius#elementdata_whitelisted|elementdata_whitelisted]] tag [https://github.com/multitheftauto/mtasa-blue/commit/750d09adb9fd35f4c1b7786966b7ca292e35c200 750d09a] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
====Events====&lt;br /&gt;
* Added [[onExplosion]] event ([https://github.com/multitheftauto/mtasa-blue/commit/9edffc4997579583407e8c2910264b344cf626a3 9edffc4] by '''botder''')&lt;br /&gt;
* Added [[onPlayerProjectileCreation]] and [[onPlayerDetonateSatchels]] events ([https://github.com/multitheftauto/mtasa-blue/commit/bc404021f66228fb00f1f136a606425da6075daa bc40402] by '''Zangomangu''')&lt;br /&gt;
* Added [[onPlayerTriggerEventThreshold]] event ([https://github.com/multitheftauto/mtasa-blue/commit/eae47fe2f432d9053c425fd515ea27f963c254ec eae47fe] by '''Lpsd''')&lt;br /&gt;
* Added [[onResourceStateChange]] ([https://github.com/multitheftauto/mtasa-blue/commit/cfe9cd9d0006580e7e70dc9e93672e3d1d3b9836 cfe9cd9] by '''Tracer''')&lt;br /&gt;
* Added [[onPlayerTeamChange]] ([https://github.com/multitheftauto/mtasa-blue/commit/c4e18c618db299ea05f5395c798f2a7d6515f5ea c4e18c6] by '''esmail9900''')&lt;br /&gt;
* Added [[onAccountCreate]] and [[onAccountRemove]] ([https://github.com/multitheftauto/mtasa-blue/commit/545f54b6ae0bfc721abba12402ad3787ed9ae811 545f54b] by '''Tracer''')&lt;br /&gt;
* Added [[onPlayerTriggerInvalidEvent]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b4122d35f725e4d258b408253c93e7cbd2ec783 5b4122d] by '''Lpsd''')&lt;br /&gt;
* Added [[onPlayerChangesWorldSpecialProperty]] event ([https://github.com/multitheftauto/mtasa-blue/commit/bbf511d4c5a94fc42d4ead201446fcef8ae430ec bbf511d] by '''Nico834''')&lt;br /&gt;
* Added [[onPlayerChangesProtectedData]] event ([https://github.com/multitheftauto/mtasa-blue/commit/750d09adb9fd35f4c1b7786966b7ca292e35c200 750d09a] by '''TheNormalnij''')&lt;br /&gt;
* Added [[onShutdown]] ([https://github.com/multitheftauto/mtasa-blue/commit/aa20c7d279ac92f1f98c54e79fda7fe00de64e50 aa20c7d] by '''FileEX''')&lt;br /&gt;
* Added [[onPedWeaponReload]] and [[onPlayerWeaponReload]] ([https://github.com/multitheftauto/mtasa-blue/commit/e71f4828b46bb69b9622a11d0f700a79f986ee9b e71f482] by '''Nico834''')&lt;br /&gt;
* Added [[onPlayerTeleport]] ([https://github.com/multitheftauto/mtasa-blue/commit/4000ea4edb37d2d2caeb60a5977f7a38c8a22f06 a38e6ac] by '''imfelipedev''')&lt;br /&gt;
* Added [[onAccountNameChange]] ([https://github.com/multitheftauto/mtasa-blue/commit/078d46b13164c940f3a713039e1a1be6d52c6c76 078d46b] by '''Davis22d''')&lt;br /&gt;
&lt;br /&gt;
== 77 Changes and Bug Fixes ==&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Fixed random toggle of world special properties ([https://github.com/multitheftauto/mtasa-blue/commit/bf95b1d16e31f36899350e2acac4bb8adfad5cdd bf95b1d] by '''samr46''')&lt;br /&gt;
* Many debugscript fixes&lt;br /&gt;
:* Fixed [[onClientDebugMessage]]/[[onDebugMessage]] recognizing level 4 as 0 ([https://github.com/multitheftauto/mtasa-blue/commit/783971efbdfcae622dbc03fd7647c337c2a3a306 783971e] by '''Tracer''')&lt;br /&gt;
:* Fixed outputDebugString level 4 colors ([https://github.com/multitheftauto/mtasa-blue/commit/5d4d7df3b8ff703cf954f3af394c811c489dcb18 5d4d7df] by '''MegadreamsBE''')&lt;br /&gt;
:* Fixed [[outputDebugString]] level 4 not being logged ([https://github.com/multitheftauto/mtasa-blue/commit/1951a5e62d35b2cf4ec292d294f8c818b8463418 1951a5e] by '''MegadreamsBE''')&lt;br /&gt;
:* Fixed outputDebugString with level 4 not showing ([https://github.com/multitheftauto/mtasa-blue/commit/b459973f8ad00aff79042a338a70700a21b426dc b459973] by '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
* Ped sync improvements ([https://github.com/multitheftauto/mtasa-blue/commit/f5b599c9f45777f924f7980cadb2d3cc6431d8b8 f5b599c] by '''tederis''')&lt;br /&gt;
* Fixed &amp;quot;Using setElementHealth on a dead ped makes it invincible&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/836888379dc3e434752ad20c10a8d7d33ffc65a2 8368883] by '''FileEX''')&lt;br /&gt;
* Fixed setting player model resets their current weapon slot ([https://github.com/multitheftauto/mtasa-blue/commit/f7ce562b645cb05a18658df62d093b753b881bb9 f7ce562] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where ''&amp;quot;arrow&amp;quot;'' and ''&amp;quot;checkpoint&amp;quot;'' markers ignored the alpha color ([https://github.com/multitheftauto/mtasa-blue/commit/7988852cf3af9e78f662d76544dc00db408b5c87 7988852] by '''FileEX''')&lt;br /&gt;
* Fixed the goggle effect resetting after changing skin ([https://github.com/multitheftauto/mtasa-blue/commit/1dd291409f791891b54ccf6b1d1cebe08cff13c0 1dd2914] by '''Proxy-99''')&lt;br /&gt;
* Fixed satchels detaching after changing skin ([https://github.com/multitheftauto/mtasa-blue/commit/d93dbf2ca598bf3508364bc7c6337d82c3d9ccb2 d93dbf2] by '''FileEX''')&lt;br /&gt;
* Added '''resourceName''' global variable and added current resource as default argument for [[getResourceName]] ([https://github.com/multitheftauto/mtasa-blue/commit/49fb6c68a27ad85e5abcd563f4c4f8c568305fdb 49fb6c6] by '''Nico834''')&lt;br /&gt;
* Added new parameters '''animGroup''' &amp;amp; '''animID''' for wasted events [[onPlayerWasted]], [[onPedWasted]], [[onClientPlayerWasted]] ([https://github.com/multitheftauto/mtasa-blue/commit/ecd6ed98ca129e7f45bda14384a503bee09495a7 ecd6ed9] by '''Nico834''' and '''G-Moris''')&lt;br /&gt;
* Added optional '''ignoreAlphaLimits''' argument for [[createMarker]] to maintain backward compatibility after adding the ability to change alpha for arrow and checkpoint markers ([https://github.com/multitheftauto/mtasa-blue/commit/121048cb9a14c28dcefca9bf2d4e955ef920a087 121048c] by '''FileEX''')&lt;br /&gt;
* Added optional '''property''' argument for [[getVehicleHandling]] ([https://github.com/multitheftauto/mtasa-blue/commit/a08e38d6507fdc1c051c2b84727c83dd9c418649 a08e38d] by '''XJMLN''')&lt;br /&gt;
* Fixed health value issues ([https://github.com/multitheftauto/mtasa-blue/commit/612f9a6715059baa43182e891258d9c3ceb19591 612f9a6] by '''Tracer''')&lt;br /&gt;
* Fixed [[getTimerDetails]] negative remaining duration ([https://github.com/multitheftauto/mtasa-blue/commit/1c6cab5a94c8c6ff5cf9b1fc0c9bc04808c922f8 1c6cab5] by '''jvstns''')&lt;br /&gt;
* Fixed changing [[setElementCollisionsEnabled]] doesn't update contact element ([https://github.com/multitheftauto/mtasa-blue/commit/71c683f547aac34e876601d24c881227fe3ca05f 71c683f] by '''FileEX''')&lt;br /&gt;
* Removed ability to skip [[addDebugHook]] ([https://github.com/multitheftauto/mtasa-blue/commit/2fecd74fdd453efdcbdddfd8f3fa3c092640cf9f 2fecd74] by '''PlatinMTA''')&lt;br /&gt;
* Fixed hydraulics stopping working after using [[setVehicleHandling]] ([https://github.com/multitheftauto/mtasa-blue/commit/f96836397a075585d4d112eb7d0240f1abf361d4 f968363] by '''FileEX''')&lt;br /&gt;
* Fixed helicopter rotor unaffected by vehicle alpha ([https://github.com/multitheftauto/mtasa-blue/commit/55d39225254c0b9961c1423b0d5695beff20072b 55d3922] by '''FileEX''')&lt;br /&gt;
* Add '''spawnFlyingComponent &amp;amp; breakGlass''' arguments for [[setVehiclePanelState]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b69d700c848e36b2f427bbc6ba5b2c905592783 5b69d70] by '''FileEX''')&lt;br /&gt;
* Fixed armor synchronization ([https://github.com/multitheftauto/mtasa-blue/commit/583e675da976fbf90f45804ad834d8fe33c779a1 583e675] by '''Nico834''')&lt;br /&gt;
* Fixed jetpack disappearing after changing position and coming back after changing skin ([https://github.com/multitheftauto/mtasa-blue/commit/de26a9e98519350f0486290ce886595068c02470 de26a9e] by '''FileEX''')&lt;br /&gt;
* Added support for '''ZLIB''' compression to [[encodeString]] &amp;amp; [[decodeString]]. ([https://github.com/multitheftauto/mtasa-blue/commit/6230161f8d0c83b60aec3f4afa5be88dd213b88b 6230161] by '''samr46''')&lt;br /&gt;
* Fixed a bug where hex color codes were included in the chat message length. ([https://github.com/multitheftauto/mtasa-blue/commit/9a0b1d59233f7001e991262b4df9d1c17850dc08 9a0b1d5] by '''shadylua''')&lt;br /&gt;
&lt;br /&gt;
=== Client ===&lt;br /&gt;
* Update d3dcompiler_47.dll from CEF ([https://github.com/multitheftauto/mtasa-blue/commit/75a1a298113721343090a06d60394f63f64df9ca 75a1a29] and [https://github.com/multitheftauto/mtasa-blue/commit/6d8fd8cc2fe7377318583f70abf58dcdb7d09cb0 6d8fd8c] by '''patrikjuvonen''')&lt;br /&gt;
* Updated translations from Crowdin ([https://github.com/multitheftauto/mtasa-blue/commit/29baf29a0143706eb08ef76c4743a452a7f83600 29baf29] by '''patrikjuvonen''')&lt;br /&gt;
:* Added Azerbaijani to client languages&lt;br /&gt;
* Resolved cursor being invisible with main menu open in certain scenarios ([https://github.com/multitheftauto/mtasa-blue/commit/bb1f675e6fee0ca3967f05afb5d2592dec9459b2 bb1f675] by '''Lpsd''')&lt;br /&gt;
* Partially fixed screen flickering on high memory usage ([https://github.com/multitheftauto/mtasa-blue/commit/1a886460a9fab1041cfba38078ae544b0fa51240 1a88646] by '''Zangomangu''')&lt;br /&gt;
* Added ''texture hit info'' parameter to [[processLineOfSight]] ([https://github.com/multitheftauto/mtasa-blue/commit/86f3344d1371a9783c2c7b755b895160a03ff6cd 86f3344] by '''Pirulax''')&lt;br /&gt;
* Fixed CStreamingSA::GetUnusedStreamHandle ([https://github.com/multitheftauto/mtasa-blue/commit/38624a4c2d18f4b60064d49069d3bcd81fbb4385 38624a4] by '''tederis''')&lt;br /&gt;
* IMG count extension ([https://github.com/multitheftauto/mtasa-blue/commit/1a60f6094b6660d29cabae780e6fbea5f5f1abf2 1a60f60] by '''tederis''')&lt;br /&gt;
* Fixed a desync state after aborted carjacking ([https://github.com/multitheftauto/mtasa-blue/commit/3f510fcdc7722cdfcb2e09ea43990b56aa43162b 3f510fc] by '''Zangomangu''')&lt;br /&gt;
* Allowed allocating clump models ([https://github.com/multitheftauto/mtasa-blue/commit/428561f1ebab49b8370ef0f022510cd67e98ab59 428561f] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash in CEF init ([https://github.com/multitheftauto/mtasa-blue/commit/c782826c955dfbdbaa67852a245e1c601d6b9f2c c782826] by '''TheNormalnij''')&lt;br /&gt;
* Fixed &amp;quot;Changing vehicle model from doorless or &amp;quot;doorful&amp;quot; causes doors to fall off&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/d6659dae263e2883d9e479ca271f0e9c8e622f95 d6659da] by '''FileEX''')&lt;br /&gt;
* Fixed &amp;quot;Wheel visibility when using setVehicleWheelStates&amp;quot;  ([https://github.com/multitheftauto/mtasa-blue/commit/51c9257a427957642932a216bd76cb7de59fea1b 51c9257] by '''FileEX''')&lt;br /&gt;
* Added new world special property ''burnflippedcars'' ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
* Streaming buffer restore and fixes ([https://github.com/multitheftauto/mtasa-blue/commit/6c86ebbf0801c45d5e0bcbb9d9f2e8fd55525b15 6c86ebb] by '''Pirulax''')&lt;br /&gt;
* Fixed Unicode file path passed in CClientIMG ([https://github.com/multitheftauto/mtasa-blue/commit/c57f07bfad8b02953dbe7b2b6e9b9de08ba88226 c57f07b] by '''TheNormalnij''')&lt;br /&gt;
* Added new world special property ''fireballdestruct'' ([https://github.com/multitheftauto/mtasa-blue/commit/219ad73d600140724eefcf5ca4040ac417cdee12 219ad73] by '''samr46''')&lt;br /&gt;
* Fixed &amp;quot;Hide question box when hiding main menu&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/4beff0447f093c66594a5f32ad5e52c7d7188ce9 4beff04] by '''XJMLN''')&lt;br /&gt;
* Fixed engineFreeModel regression ([https://github.com/multitheftauto/mtasa-blue/commit/b52500e92fb2591c092a6e66121471f098a2e044 b52500e] by '''TheNormalnij''')&lt;br /&gt;
* Fixed assert when model info is missing ([https://github.com/multitheftauto/mtasa-blue/commit/d431e5e16120b63beafbfe69110da601d12a76bb d431e5e] by '''TheNormalnij''')&lt;br /&gt;
* Fixed engineFreeModel crashes ([https://github.com/multitheftauto/mtasa-blue/commit/c289c22fb9a13730b7fd793752d84adbf2b928ee c289c22] by '''TheNormalnij''')&lt;br /&gt;
* Filtered URLs in requestBrowserDomains with incorrect symbols ([https://github.com/multitheftauto/mtasa-blue/commit/74bbb068acc6757ff0e04d0c63b999236e51ce63 74bbb06] by '''TheNormalnij''')&lt;br /&gt;
* Fixed issues with ped shaders ([https://github.com/multitheftauto/mtasa-blue/commit/3bc1e6d98ab13a9e7db95cc616b4645dc761889b 3bc1e6d] by '''Merlin''')&lt;br /&gt;
* Fixed 3D primitives disappearing ([https://github.com/multitheftauto/mtasa-blue/commit/04a1e2ba9157e4a1a91297f91554b72a87bf0ed4 04a1e2b] by '''tederis''')&lt;br /&gt;
* Fixed [[svgSetSize]] issues ([https://github.com/multitheftauto/mtasa-blue/commit/721c2b6d0f0c4ab016be079f1d4e28dec0123a6d 721c2b6] by '''Nico834''')&lt;br /&gt;
* Fixed the marker flickering issue during water cannon effects ([https://github.com/multitheftauto/mtasa-blue/commit/e83f700ee24904c0411b4dad3e695b3c3e30d9e4 e83f700] by '''Merlin''')&lt;br /&gt;
* Fixed buildings removal ([https://github.com/multitheftauto/mtasa-blue/commit/1b40db7cb5b63966ee97d0cbe79190360e1d32a0 1b40db7] by '''tederis''')&lt;br /&gt;
* Fixed crashes caused by [[createBuilding]] with [[engineRequestModel]] ([https://github.com/multitheftauto/mtasa-blue/commit/6245a68f3d97fc222d78fbc66b67f422a13710bf 6245a68] by '''TheNormalnij''')&lt;br /&gt;
* Fixed wrong getModelMatrix result for buildings ([https://github.com/multitheftauto/mtasa-blue/commit/f691946bc2d3dac75bd27d31886cd6b66d55811d f691946] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crashes for ''timed-object'' in [[engineRequestModel]] ([https://github.com/multitheftauto/mtasa-blue/commit/229389a4bd1c4c02010ba27ce26a428b41b68560 229389a] by '''TheNormalnij''')&lt;br /&gt;
* Fixed incorrect colors for 3D draws ([https://github.com/multitheftauto/mtasa-blue/commit/1f2c6e75fb71b01f0053f151e766a232ed33692b 1f2c6e7] by '''Nico834''')&lt;br /&gt;
* Add missing definition GuiGridList::getColumnWidth ([https://github.com/multitheftauto/mtasa-blue/commit/b34b1d5362291bcf00c7a0a0b694f60e1dccb363 b34b1d5] by '''Lpsd''')&lt;br /&gt;
* Fixed [[resetPedVoice]] not working at all ([https://github.com/multitheftauto/mtasa-blue/commit/3d8bd504f009fc2aa66e1dc9d35427a889ccd6aa 3d8bd50] by '''Tracer''')&lt;br /&gt;
* Added LOD support for buildings ([https://github.com/multitheftauto/mtasa-blue/commit/77ab3e64a3c6dacdcee02a223b67aec6c5b97ec2 77ab3e6] by '''TheNormalnij''')&lt;br /&gt;
* Added render stages for 3D primitives (new ''stage'' parameter) ([https://github.com/multitheftauto/mtasa-blue/commit/841447684c2d1992656555f81d73da52b2ce5c4f 8414476] by '''tederis''')&lt;br /&gt;
* Added disable option for [[engineSetModelPhysicalPropertiesGroup]] ([https://github.com/multitheftauto/mtasa-blue/commit/b6216cad058582b0feb34e98e94531d4acbf7c5b b6216ca] by '''TheNormalnij''')&lt;br /&gt;
* Fixed return correct value for stuntDistance parameter ([https://github.com/multitheftauto/mtasa-blue/commit/1f464d61c8c5f1400faa5472ccb67d2436d52903 1f464d6] by '''XJMLN''')&lt;br /&gt;
* Fixed [[engineRestoreModelPhysicalPropertiesGroup]] restores incorrect group ([https://github.com/multitheftauto/mtasa-blue/commit/291dfb4bc9bd72307a4ba4b42ffcbfc03ded4e38 291dfb4] by '''TheNormalnij''')&lt;br /&gt;
* Fixed OGG sound files can't be played as RAW data ([https://github.com/multitheftauto/mtasa-blue/commit/2764b7983c4e1bde20b894ebcfef5f230b149030 2764b79] by '''FileEX''')&lt;br /&gt;
* Implement [[getElementBoundingBox]] for buildings ([https://github.com/multitheftauto/mtasa-blue/commit/7b228daea3e0dc22d808abcf0eb568d99efcf63d 7b228da] by '''TheNormalnij''')&lt;br /&gt;
* Fixed streaming size check after [[engineAddImage]] ([https://github.com/multitheftauto/mtasa-blue/commit/5cdc04d6d61f40e89a5da3d27ae9575f4a419a08 5cdc04d] by '''TheNormalnij''')&lt;br /&gt;
* Fixed [[removeWorldModel]] crash ([https://github.com/multitheftauto/mtasa-blue/commit/ae98b04753b54208961759b295bef44f0ffafe43 ae98b04] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash when using [[extinguishFire]] in [[onClientVehicleDamage]] event ([https://github.com/multitheftauto/mtasa-blue/commit/d6ae4e9e24b0b7de704a3cbeec25dfd661b4a3fc d6ae4e9] by '''FileEX''')&lt;br /&gt;
* Fixed weapon models being invisible when using the jetpack with [[setJetpackWeaponEnabled]] ([https://github.com/multitheftauto/mtasa-blue/commit/a68c2c4232c28c6ba5595a814b89be976c4fa9c3 a68c2c4] by '''FileEX''')&lt;br /&gt;
* Fixed animations validation to avoid crashes ([https://github.com/multitheftauto/mtasa-blue/commit/27a24b551d86c6fbf9ee308603f24b011e941399 27a24b5] by '''G-Moris''')&lt;br /&gt;
* Fixed a bug where the &amp;quot;attacker&amp;quot; parameter is always nil in the [[onClientObjectBreak]] event if the object is glass ([https://github.com/multitheftauto/mtasa-blue/commit/dca5e2065af4a0195526541f9a8285db0401616e dca5e20] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where the [[onClientObjectBreak]] event was not triggered if the glass was broken by an explosion ([https://github.com/multitheftauto/mtasa-blue/commit/dca5e2065af4a0195526541f9a8285db0401616e dca5e20] by '''FileEX''')&lt;br /&gt;
* Fixed a bug that prevented players from switching weapons with an active jetpack ([https://github.com/multitheftauto/mtasa-blue/commit/180fbc0b5fdba95450e7a519f78f7588849349bf 180fbc0] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where hitElement in the [[onClientVehicleCollision]] event was always nil for projectiles ([https://github.com/multitheftauto/mtasa-blue/commit/43cc7b3e34eb4680120eb8ebf40d31d845850df2 43cc7b3] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where hydra flares did not work with [[createProjectile]] ([https://github.com/multitheftauto/mtasa-blue/commit/2bdac16d1d868f396786fbfdcfa2595004e1fff5 2bdac16] by '''FileEX''')&lt;br /&gt;
* Fixed inconsistent extra component names ([https://github.com/multitheftauto/mtasa-blue/commit/d4f884935626c638dca0f7f45c71cfb22c4e2d72 d4f8849] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where after changing the key in the bind settings, only the key for the &amp;quot;down&amp;quot; status changed, while the &amp;quot;up&amp;quot; key remained unchanged.([https://github.com/multitheftauto/mtasa-blue/commit/3ebefc37951e24cbfb25035d99045d67571b5324 3ebefc3] by '''FileEX''')&lt;br /&gt;
* Maked frame graph scale accordingly to resolution ([https://github.com/multitheftauto/mtasa-blue/commit/e431474c676a253004a26d86fc9e1a6100d329d4 e431474] by '''ffsPLASMA''')&lt;br /&gt;
* Fixed old [[setElementModel]] memory leak ([https://github.com/multitheftauto/mtasa-blue/commit/4e7afa2586c6992a75ac5312378c1096d87148ae 4e7afa2] by '''tederis''')&lt;br /&gt;
* Fixed [[getObjectProperty]] returns invalid ''air_ressistance'' property ([https://github.com/multitheftauto/mtasa-blue/commit/b51e1116283e9ec453881d3c48229b96c6198d5a b51e111] by '''FileEX''')&lt;br /&gt;
* Fixed missing states in [[getPedControlState]] ([https://github.com/multitheftauto/mtasa-blue/commit/3333a115f1a14f00378161681aeba609b4e993c0 3333a11] by '''FileEX''')&lt;br /&gt;
* Fixed for randomly bright objects after weapon change  ([https://github.com/multitheftauto/mtasa-blue/commit/9b9120c73ec97bf1b2f24703889a62fc19326f1f 9b9120c] by '''FileEX''')&lt;br /&gt;
* Fixed some small problems with Device Selection Dialog ([https://github.com/multitheftauto/mtasa-blue/commit/6f90880bee4d9169d4eda5f6afc63f4ed1bf652f 6f90880] by '''forkerer''')&lt;br /&gt;
* Allow dynamic models to be created as buildings ([https://github.com/multitheftauto/mtasa-blue/commit/642438ec1302daba50b6f6069844e96cbaa31818 642438e] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash when disconnecting from server after creating projectiles ([https://github.com/multitheftauto/mtasa-blue/commit/9ab6104d9c1ec246fde29ae6bf303ae5848bbbe1 9ab6104] by '''TheNormalnij''')&lt;br /&gt;
* Allow client peds to enter/exit client vehicles ([https://github.com/multitheftauto/mtasa-blue/pull/3678 #3678], [https://github.com/multitheftauto/mtasa-blue/commit/67beec77b06897552dc2c756c15283bfdc19b143 67beec7] by '''gownosatana''' and '''Tracer''')&lt;br /&gt;
* Use immersive dark mode on game window ([https://github.com/multitheftauto/mtasa-blue/commit/fd9520498919ae191c718c49b2a5c742bbbf8239 fd95204] by '''FileEX''')&lt;br /&gt;
* Added damageable objects support for [[engineRequestModel]] ([https://github.com/multitheftauto/mtasa-blue/commit/21593b9239765343ad5a4975c9f8424e571a036d 21593b9] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash with [[setElementHealth]] in [[onClientPedDamage]] event ([https://github.com/multitheftauto/mtasa-blue/commit/2d3397df56827f7c218689873f8b4741ea9af44e 2d3397d] by '''FileEX''')&lt;br /&gt;
* Fixed [[setPedControlState]] is aborted when ped created/player join ([https://github.com/multitheftauto/mtasa-blue/commit/8117ebcb95d3e3c35c400ee073a6ebab81e3f9fb 8117ebc] by '''FileEX''')&lt;br /&gt;
* Added '''buildings''' support to [[engineApplyShaderToWorldTexture]] ([https://github.com/multitheftauto/mtasa-blue/commit/fe1dd063170aef6a866bc241c305278a73200fdd fe1dd06] by '''TheNormalnij''')&lt;br /&gt;
* Fixed unintended behavior for ped control states ([https://github.com/multitheftauto/mtasa-blue/commit/a38e6acaf5c0fd83b5627660439f36d380cd26e6 a38e6ac] by '''Nico834''')&lt;br /&gt;
* Fixed SVG colors bug ([https://github.com/multitheftauto/mtasa-blue/commit/04f297b7b1aecb3753c8fbfa19fa9627abf422b4 04f297b] by '''TheNormalnij''')&lt;br /&gt;
* Fixed &amp;quot;CEF Launcher&amp;quot; process remaining after closing MTA ([https://github.com/multitheftauto/mtasa-blue/commit/a6c00278a5329e3b2b870b298d78565b14a7bed2 a6c0027] by '''botder''')&lt;br /&gt;
* Removed ''login'' cmd from chat history ([https://github.com/multitheftauto/mtasa-blue/commit/4639aea8a5544bfa4460bfcc8bba1d5b032e931a 4639aea] by '''PlatinMTA''')&lt;br /&gt;
* Fixed in-game updater dialog incorrectly showing 0% progress ([https://github.com/multitheftauto/mtasa-blue/commit/40d9ac11a9864d4f26c9eb1979e3a30ec0624061 40d9ac1] by '''Dutchman101''')&lt;br /&gt;
* Fixed invalid references counter to TXD after [[engineSetModelTXDID]] (top 1 crash according to players crash stats) ([https://github.com/multitheftauto/mtasa-blue/commit/1b7e9e82997fb4ac2eec5722d9134299902a16e6 1b7e9e8] by '''TheNormalnij''')&lt;br /&gt;
* Fixed server cache memory leak on connecting to another server ([https://github.com/multitheftauto/mtasa-blue/commit/e3476592fc46dc28f9da98f525797ae94ebf3ec3 e347659] by '''Lpsd''')&lt;br /&gt;
* Added the ability to set CPU affinity (CPU 0) in the '''advanced''' tab in the settings ([https://github.com/multitheftauto/mtasa-blue/commit/d04c92b24e7b85f6015fa93192ddda06e9023c85 d04c92b] by '''FileEX''')&lt;br /&gt;
* Fixed crash in ''CClientDisplayManager'' (top 2 crash according to players crash stats) ([https://github.com/multitheftauto/mtasa-blue/commit/0df0a4b40f7aea7c16473d0844a03fcece888420 0df0a4b] by '''Lpsd''')&lt;br /&gt;
* Set main menu FPS limit to current display refresh rate ([https://github.com/multitheftauto/mtasa-blue/commit/acbcc8e03ba8ac677a9c2c8182fb6f24868cae46 acbcc8e] by '''samr46''')&lt;br /&gt;
* [[setSoundEffectParameter]] and [[getSoundEffectParameters]] can be now used also on players! ([https://github.com/multitheftauto/mtasa-blue/commit/20851ecf7d69cc42fc00a62446a87d7e99c1e19d 20851ec] by '''tederis''')&lt;br /&gt;
* Fixed elements sometimes being visible from other dimensions in the current dimension ([https://github.com/multitheftauto/mtasa-blue/commit/9af03b3263a5a320e2f92140f6caa6c94b9fe9a5 9af03b3], [https://github.com/multitheftauto/mtasa-blue/commit/1dff560099459bc1b8248ef50643886158b0d731 1dff560] by '''FileEX''' &amp;amp; '''tederis''')&lt;br /&gt;
* Fixed bug &amp;quot;Copying text from CEF Browser shows Chinese characters in console&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/892beb0457b461d5afd5d91e86763181bdb972d3 892beb0] by '''ColombuxMaximus''')&lt;br /&gt;
* Fixed a bug where hidden vehicle components became visible after changing the variant or handling ([https://github.com/multitheftauto/mtasa-blue/commit/1d81347ee7e2614cd94e4b1807947d2c98b3305f 1d81347] by '''ColombuxMaximus''')&lt;br /&gt;
* Fixed persian characters in main menu &amp;amp; CEGUI ([https://github.com/multitheftauto/mtasa-blue/commit/efb2edfa853aa9a95f39ed9a843c3230b2e627cf efb2edf] by '''tzwer''')&lt;br /&gt;
* Added new movement states to [[getPedMoveState]] and fixed incorrect returning of &amp;quot;fall&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/c43c1b98b8ec0b7253d98c65b405ead482a765d8 c43c1b9], [https://github.com/multitheftauto/mtasa-blue/commit/797331fadbca4367f6cfd43633e48af44a99a115 797331f] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where friendly fire did not prevent fire damage ([https://github.com/multitheftauto/mtasa-blue/commit/9c4397707dd2a94d8a6124d6b502d39793f0d2ba 9c43977] by '''FileEX''')&lt;br /&gt;
* Fixed [[engineReplaceModel]] memory leak &amp;amp; potential crash ([https://github.com/multitheftauto/mtasa-blue/commit/1dbbfd025c5ff791f31e1ef4f255514198f88d0c 1dbbfd0] by '''FileEX''')&lt;br /&gt;
* Fixed '''ALT + F4''' not working ([https://github.com/multitheftauto/mtasa-blue/commit/93963a98f24fdb5e8374baaddaa6d99260be967e 93963a9] by '''lopezloo''')&lt;br /&gt;
* Fixed [[setPedOnFire]] doesn't cancel '''TASK_SIMPLE_PLAYER_ON_FIRE''' ([https://github.com/multitheftauto/mtasa-blue/commit/2a2f31bccd9d90adfc2b03f1f63248b9d016c725 2a2f31b] by '''FileEX''')&lt;br /&gt;
* Fixed crash related to buildings ([https://github.com/multitheftauto/mtasa-blue/commit/4bcded5c89caffd005b266021d3c1bbd83a554cb 4bcded5] by '''tederis''')&lt;br /&gt;
* Fixed client freeze in some locations on the map ([https://github.com/multitheftauto/mtasa-blue/commit/3a376e479201b30b27488a5a674d7d816397e79a 3a376e4] by '''tederis''')&lt;br /&gt;
* Added disconnect warning when using quick connect while connected to server ([https://github.com/multitheftauto/mtasa-blue/commit/be395665c0f5094793b923e9f4fb94056ccff961 be39566] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
=== Server ===&lt;br /&gt;
* Fixed bullet sync check in CBulletsyncPacket by verifying total ammo instead of clip ammo ([https://github.com/multitheftauto/mtasa-blue/commit/ca06762413833e1c7f8d17970334607763414a45 ca06762] by '''shadylua''')&lt;br /&gt;
* Check deprecated account name length on [[banPlayer]] to fix all players getting kicked ([https://github.com/multitheftauto/mtasa-blue/commit/b5e2332ca5857f3e984467ca0cb8163ec998ea06 b5e2332] by '''patrikjuvonen''')&lt;br /&gt;
* Fixed a crash in CHandlingManager ([https://github.com/multitheftauto/mtasa-blue/commit/b6867a0d2ed0b4ab12a4461c3f1ca7d667bdedbc b6867a0] by '''Olya-Marinova''')&lt;br /&gt;
* Removed min-version lua function from old MTA versions ([https://github.com/multitheftauto/mtasa-blue/commit/222b2720c93f29977fffb722f8d42ea3fb5f790d 222b272] by '''Olya-Marinova''')&lt;br /&gt;
* Disallow loadstring by default ([https://github.com/multitheftauto/mtasa-blue/commit/89e2d375d12deb026ee91fedc5e1ced04dc9a723 89e2d37] by '''srslyyyy''')&lt;br /&gt;
* Added valid values for 'donotbroadcastlan' setting ([https://github.com/multitheftauto/mtasa-blue/commit/f8d4422ad75c0d7f21894f9f868aa37ec6993a35 f8d4422] by '''Dark-Dragon''')&lt;br /&gt;
* Fixed &amp;quot;ped revives when syncer changes&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/af604ae7dfec742661206fb809f149140ce3a960 af604ae] by '''Zangomangu''')&lt;br /&gt;
* Fixed files not unloading after renaming ([https://github.com/multitheftauto/mtasa-blue/commit/2846e2794af1d9d441b7b988f49af521bd765fb0 2846e27] by '''W3lac3''')&lt;br /&gt;
* Added ability to limit client triggered events via [[triggerServerEvent]] ([https://github.com/multitheftauto/mtasa-blue/commit/eae47fe2f432d9053c425fd515ea27f963c254ec eae47fe] by '''Lpsd''')&lt;br /&gt;
* Added FileExists check to CMainConfig::AddMissingSettings ([https://github.com/multitheftauto/mtasa-blue/commit/1ebaa28e0381fb114b946f2f5a4d4bc5834ebd03 1ebaa28] by '''Lpsd''')&lt;br /&gt;
* Added server side weapon related checks ([https://github.com/multitheftauto/mtasa-blue/commit/86448ea52c7ee13e554a907c424aa3c891e51e31 86448ea] by '''NanoBob''')&lt;br /&gt;
* Added [[dbConnect]] option for MySQL ''&amp;quot;use_ssl=0&amp;quot;'' ([https://github.com/multitheftauto/mtasa-blue/commit/e6476767a9b6848467f0d123830dd2f90bd4442d e647676] by '''Lpsd''')&lt;br /&gt;
* Added ''content'' parameter to [[onPlayerPrivateMessage]] event ([https://github.com/multitheftauto/mtasa-blue/commit/79f8ed6a374d62e5cf1ec707b2ba25e3a959f509 79f8ed6] by '''FileEX''')&lt;br /&gt;
* Fix ability to move server-side vehicles that are far away from the player. New parameter can be set in the [[Server_mtaserver.conf#vehicle_contact_sync_radius|mtaserver.conf]] ([https://github.com/multitheftauto/mtasa-blue/commit/e3338c2fbbdb500c4ce28dc0677ceadef1f1ca4c e3338c2] by '''MegadreamsBE''')&lt;br /&gt;
* Added ''sync'' parameter for vehicles ([https://github.com/multitheftauto/mtasa-blue/commit/f88d31306d3c7fadfbc1542c85922612fd00b131 f88d313] by '''znvjder''')&lt;br /&gt;
* Fixed server-side pickup collision size ([https://github.com/multitheftauto/mtasa-blue/commit/49d97513e1eb2e0c96c5aa5a1d542d14131edd76 49d9751] by '''Proxy-99''') &lt;br /&gt;
* Fixed ''CSimBulletsyncPacket'' crash ([https://github.com/multitheftauto/mtasa-blue/commit/ee8bc92907a112a5584844329dbb07cc82326ad1 ee8bc92] by '''G-Moris''')&lt;br /&gt;
* Fixed onVehicleExit doesn't trigger if pulled out ([https://github.com/multitheftauto/mtasa-blue/commit/af4f7facca73bb68238437e6eff3504bd6f1cfe0 af4f7fa] by '''Proxy-99''')&lt;br /&gt;
* Fixed arguments in [[setPedAnimation]] being ignored when nil was passed ([https://github.com/multitheftauto/mtasa-blue/commit/f6f544e6b54054a06497fdf94cd077b862af8055 f6f544e] by '''FileEX''')&lt;br /&gt;
* Fixed Sirens not removed correctly ([https://github.com/multitheftauto/mtasa-blue/commit/9e419620069ec8ad5828c50295c1901685166cf9 9e41962] by '''Proxy-99''')&lt;br /&gt;
* Fixed a bug where [[setPedWeaponSlot]] did not update data in [[getPedWeapon]] and [[getPedWeaponSlot]] ([https://github.com/multitheftauto/mtasa-blue/commit/9615523faf84f584179412fb8e0cc04f9f4ee48f 9615523] by '''FileEX''')&lt;br /&gt;
* Added '''player''' parameter to [[onVehicleExplode]] ([https://github.com/multitheftauto/mtasa-blue/commit/1ec1f5be69d3ef99bd2e26fd3d008a7cecd0a5ad 1ec1f5b] by '''FileEX''')&lt;br /&gt;
* Excluded '''meta.xml''' from glob patterns for security reasons ([https://github.com/multitheftauto/mtasa-blue/commit/78f6d669adc97c51a825250dd4dbf1a4a4a0ff15 78f6d66] by '''FileEX''')&lt;br /&gt;
* Fixed the bug where changing a vehicle to one with a different number of seats caused passengers to experience network trouble ([https://github.com/multitheftauto/mtasa-blue/commit/1fcd732ca9031060602c8e2425e40ce602d35253 1fcd732] by '''FileEX''')&lt;br /&gt;
* Glob patterns added to meta.xml for HTML files ([https://github.com/multitheftauto/mtasa-blue/commit/7e6b4d02ec113b7ce3a6fd9937a6e8ad0a1ad9cb 7e6b4d0] by '''FileEX''')&lt;br /&gt;
* Fixed console not maintaining position &amp;amp; size when GUI skin changed ([https://github.com/multitheftauto/mtasa-blue/commit/30d8e6dbfe75db47cf396aa909f43c24c4dbe127] by '''NanoBob''')&lt;br /&gt;
* Added '''includeCustom''' argument for [[getValidPedModels]] clientside ([https://github.com/multitheftauto/mtasa-blue/commit/889567a7a0ecb8a8b8d938826d2395ef9f43a76b] by '''Fernando-A-Rocha''')&lt;br /&gt;
* Fixed '''min_mta_version''' tag for server ([https://github.com/multitheftauto/mtasa-blue/commit/8c0a01bac62ecc3e9510133dee9f8d6700065f03 8c0a01b] by '''Fernando-A-Rocha''')&lt;br /&gt;
* Allowed user to pass multiple resource names to start/stop/restart ([https://github.com/multitheftauto/mtasa-blue/commit/6f5fb9c65ee93a5c1692b0d3516a483dcea48f08 6f5fb9c] by '''botder''')&lt;br /&gt;
* Added sync peds/players animations for new players ([https://github.com/multitheftauto/mtasa-blue/commit/b32eafc70816ece8ad995d98d380d8f6e9950475 b32eafc] by '''FileEX''')&lt;br /&gt;
* Optimized processing big files by server ([https://github.com/multitheftauto/mtasa-blue/commit/cb90339aad461d3ee8c1008f2da10934afc38a4c cb90339] by '''AlexTMjugador''')&lt;br /&gt;
* Separate icon for ''mta-server.exe'' ([https://github.com/multitheftauto/mtasa-blue/commit/6cb9d3edf9686749e524f136985cefb53772898e 6cb9d3e] by '''Nico834''')&lt;br /&gt;
* Fixed a bug that caused warnings in debugscript when using depracated function names as variable names ([https://github.com/multitheftauto/mtasa-blue/commit/f23e39521b7e35ad5389e467360fbc525c099887 f23e395] by '''YelehaUwU''')&lt;br /&gt;
* [[onVehicleExplode]] can now be cancelled! ([https://github.com/multitheftauto/mtasa-blue/commit/fcb5b038981066f561f3792c2ae3d97d76d9d0fe fcb5b03] by '''Nico834''')&lt;br /&gt;
* Added '''eventName''' parameter to [[onPlayerTriggerEventThreshold]] ([https://github.com/multitheftauto/mtasa-blue/commit/76d7764c7ec408b77eb7b12379e88882e014527f 76d7764] by '''ColombuxMaximus''')&lt;br /&gt;
&lt;br /&gt;
=== More Technical Changes and Bug Fixes ===&lt;br /&gt;
&amp;lt;section show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
:* Updated CLuaFunctionParser.h ([https://github.com/multitheftauto/mtasa-blue/commit/55647f4023c78a846870f7c96069fab411cff5c5 55647f4] by '''Xenius97''')&lt;br /&gt;
:* Fixed build after above update ([https://github.com/multitheftauto/mtasa-blue/commit/9dcc651d42ae78b7b04257e7612c5b594cb0fffd 9dcc651] by '''Pirulax''')&lt;br /&gt;
:* Fixed std::unordered_map&amp;lt;std::string, std::string&amp;gt; parsing ([https://github.com/multitheftauto/mtasa-blue/commit/005592417b42de63c3d8ba9c572a81cdc8f96164 0055924] by '''tederis''')&lt;br /&gt;
:* Addendum to [https://github.com/multitheftauto/mtasa-blue/pull/3251 #3251] ([https://github.com/multitheftauto/mtasa-blue/commit/9544a34a28d3b4e766d7d07a44d63a8fe45dc506 9544a34] by '''Lpsd''')&lt;br /&gt;
:* Fixes for [https://github.com/multitheftauto/mtasa-blue/pull/3251 #3251] ([https://github.com/multitheftauto/mtasa-blue/commit/07013d24766a6259f4115bd0349a86f790dbf5d0 07013d2] by '''Lpsd''')&lt;br /&gt;
:* Fixed SetStreamingBufferSize possibly accessing memory out-of-bounds ([https://github.com/multitheftauto/mtasa-blue/commit/e08b84fbfe6ad0431605b31c2ba5a50a8f116dc9 e08b84f] by '''Pirulax''')&lt;br /&gt;
:* Added a check to verify itemList validity ([https://github.com/multitheftauto/mtasa-blue/commit/668073787fa6b952d0f1520e8ccae0999dbdba13 6680737] by '''R4ven47''')&lt;br /&gt;
:* Various code clean ups and refactors&lt;br /&gt;
::* Removed COffsetsMP and EU addresses ([https://github.com/multitheftauto/mtasa-blue/commit/52b0115a2d9157b7a153b5f24316ff6fd053e79b 52b0115] by '''Merlin''')&lt;br /&gt;
::* Removed COffsets and EU addresses ([https://github.com/multitheftauto/mtasa-blue/commit/959141de324126245d2b5ebf029c924302ff64e9 959141d] by '''Merlin''')&lt;br /&gt;
::* Clean ups ''multiplayer_sa'' code ([https://github.com/multitheftauto/mtasa-blue/commit/38982043978dd1ec72230569a6d534792e7c18bd 3898204] by '''CrosRoad95''')&lt;br /&gt;
::* Removed old easter-egg &amp;amp; debug code ([https://github.com/multitheftauto/mtasa-blue/commit/b26f80c3d72d628d63807529b408be4b61a5be60 b26f80c], [https://github.com/multitheftauto/mtasa-blue/commit/530212f34fc44e95599ca5e39e608583ecdbb5cc 530212f] by '''botder''' and '''Merlin''')&lt;br /&gt;
::* Refactored entity hierarchy &amp;lt;!-- Fixed accepting possible malicious packets --&amp;gt; ([https://github.com/multitheftauto/mtasa-blue/commit/fdaced046a9421a39de87b81eaf0f7de7c234c4b fdaced0] by '''Tracer''')&lt;br /&gt;
::* Removed unused symbol from ''CConsole'' class ([https://github.com/multitheftauto/mtasa-blue/commit/4fe9084a2e5c5eeed4b0a9a30a07607c812e923b 4fe9084] by '''Nico834''')&lt;br /&gt;
::* Refactored ''CLuaBlipDefs'' ([https://github.com/multitheftauto/mtasa-blue/commit/d05d09be8b9bd1327e37631411fa1e3b16c4dbb7 d05d09b], [https://github.com/multitheftauto/mtasa-blue/commit/c278c12debfd346377354017992543fc7cf6397b c278c12] by '''FileEX''')&lt;br /&gt;
::* Refactored ''CLuaTeamDefs'' ([https://github.com/multitheftauto/mtasa-blue/commit/74ffa1d0138ab3d848b0e081ca265f18ae6c7bd8 74ffa1d], [https://github.com/multitheftauto/mtasa-blue/commit/f37bbada1381370eeadabd4f4dde2a024ec48f5f f37bbad] by '''Nico834''')&lt;br /&gt;
::* Removed dead ''CAnimManagerSA'' code ([https://github.com/multitheftauto/mtasa-blue/commit/d18d7d35fb50fdeea3f70ad688a5857b29867185 d18d7d3] by '''G-Moris''')&lt;br /&gt;
::* Refactored class hierarchy and removed VTBL hacks ([https://github.com/multitheftauto/mtasa-blue/commit/61d1caffb5bfa9c620c08d43280150906dd172d5 61d1caf] by '''TheNormalnij''')&lt;br /&gt;
::* Refactored ''CWeaponSA'' and ''CPedSA'' classes ([https://github.com/multitheftauto/mtasa-blue/commit/a3b7c8519d0d167c66e70c8c7ed5d2f810b7ae39 a3b7c85], [https://github.com/multitheftauto/mtasa-blue/commit/2526a7dd6cde545e600792dcac3ab1b8ece0edec 2526a7d] by '''FileEX''')&lt;br /&gt;
::* Cleaning up client Common.h and moving enums to separate files ([https://github.com/multitheftauto/mtasa-blue/commit/1e56571479217f787b6444d48770f8aa69f14387 1e56571] by '''FileEX''')&lt;br /&gt;
:* Addd Comments to Frame Rate Fixes in CMultiplayerSA_FrameRateFixes.cpp ([https://github.com/multitheftauto/mtasa-blue/commit/e4e6d1b5a9609cb093a191db405c61339d4280d2 e4e6d1b] by '''Merlin''')&lt;br /&gt;
:* Fixed build after CEF update ([https://github.com/multitheftauto/mtasa-blue/commit/9980252446a6869609b1afa1ae1168282a99cb17 9980252] by '''TheNormalnij''')&lt;br /&gt;
:* Bump chromedriver from 114.0.2 to 119.0.1 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/5d8d3756d98b0272687b87c30adca2961eee86c8 5d8d375])&lt;br /&gt;
:* Bump axios from 1.4.0 to 1.6.1 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/ba018013085058905aa789c4fa3f39c4ed32fc69 ba01801])&lt;br /&gt;
:* Fixed file lock after img:destroy ([https://github.com/multitheftauto/mtasa-blue/commit/c2ccfd2c648a2d3f33ead2169262c30533f79bac c2ccfd2] by '''TheNormalnij''')&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
:* Bump follow-redirects from 1.15.2 to 1.15.6 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/437dbcd8024c5217c22ef0e38719f93f33f47ce5 437dbcd])&lt;br /&gt;
:* Fix permission check in File.create method ([https://github.com/multitheftauto/mtasa-blue/commit/92144a4d7383af09dfa05b7bcd3db09fa487e6fd 92144a4] by '''theSarrum''')&lt;br /&gt;
:* mbedTLS fix for cURL 8.8.0 ([https://github.com/multitheftauto/mtasa-blue/commit/4f7e0d87ec04e44d2e47f5b869c2d7c765817c0f 4f7e0d8] by '''Lpsd''')&lt;br /&gt;
:* Discord RPC Tweaks ([https://github.com/multitheftauto/mtasa-blue/commit/8ef351eabe46fd50da096247d8b6fc74508cb911 8ef351e] by '''theSarrum''')&lt;br /&gt;
:* Fixed small overhead in argument parser for strings ([https://github.com/multitheftauto/mtasa-blue/commit/d20582d770dfd2a1677d9981005b3b6d28fb8e4e d20582d] by '''TheNormalnij''')&lt;br /&gt;
:* Bump ws from 8.13.0 to 8.17.1 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/cc172fcae7654ead0d3530a4819c71f76205a175 cc172fc])&lt;br /&gt;
:* Generic exception type for argument parser instead of std::invalid_argument ([https://github.com/multitheftauto/mtasa-blue/commit/2043acfdb210a8f1158501e2fbb431b625bbf74d 2043acf] by '''tederis''')&lt;br /&gt;
:* Added comments for hooks in CMultiplayerSA_CrashFixHacks.cpp ([https://github.com/multitheftauto/mtasa-blue/commit/0327cb1bef9b234451f8a22ece9c6c70fdc9adb0 0327cb1] by '''FileEX''')&lt;br /&gt;
:* Optimization handling ([https://github.com/multitheftauto/mtasa-blue/commit/e3a8bd96d4eccb30e439ba8bd4a2029d01586154 e3a8bd9], [https://github.com/multitheftauto/mtasa-blue/commit/5ac6c8adad9c9ffd4a1c299c7cd548713e485bd6 5ac6c8a] by '''G-Moris''')&lt;br /&gt;
:* Added ability to use varargs in ArgumentParser functions ([https://github.com/multitheftauto/mtasa-blue/commit/8c2f95a5ffade0e7fb212b62282e69d7f433d36f 8c2f95a] by '''Tracer''')&lt;br /&gt;
:* Fixed google-breakpad in newer GCC versions ([https://github.com/multitheftauto/mtasa-blue/commit/5508c7e4058ad9d29cacc9964f8e84df2c60d14f 5508c7e] by '''Tracer''')&lt;br /&gt;
:* Validate serial on player join ([https://github.com/multitheftauto/mtasa-blue/commit/84437e49e6ebca758e1e87d93e7846f9aa99a673 84437e4] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Extract TXD class ([https://github.com/multitheftauto/mtasa-blue/commit/733683d70dc037fdcbb256fb17d86e93b fedd239] by '''TheNormalnij''')&lt;br /&gt;
:* Fixed a bug with desynchronization of the values of some fields of the ''CTickRateSettings'' structure ([https://github.com/multitheftauto/mtasa-blue/commit/af5b6968e0a28dbde7d92f3828dead0f1a936eec af5b696], [https://github.com/multitheftauto/mtasa-blue/commit/514a3b36d09906f09bb32e900c39dc09b1c29d10 514a3b3] by '''nweb''')&lt;br /&gt;
:* Fixed ''MinClientReqCheck'' and improve resource upgrade ([https://github.com/multitheftauto/mtasa-blue/commit/f0954109c0644c551ae3ec1df4474d1857e4bed8 f095410] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Refactored and improved player map (F11) ([https://github.com/multitheftauto/mtasa-blue/commit/2c5cf3226a573637b91d8b255d57113b7043dc28 2c5cf32] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Fixed ''CVector'' optional arguments ([https://github.com/multitheftauto/mtasa-blue/commit/6a70cf7def14db86980a499d0fdf4c63565915e1 6a70cf7] by '''Tracer''')&lt;br /&gt;
:* Fixed memory overwriting by ''EnumToString'' &amp;amp; ''StringToEnum'' ([https://github.com/multitheftauto/mtasa-blue/commit/3ab068ba213abca718ace47ac3bb8df9e4b1c3fc 3ab068b] by '''FileEX''')&lt;br /&gt;
:* Allow using ''std::variant'' with several pointers ([https://github.com/multitheftauto/mtasa-blue/commit/9d776c8bfc2680fc28857fc0a5dc4a4e40d4c3bf 9d776c8] by '''tederis''')&lt;br /&gt;
:* Fixed argument parser not distinguishing arrays from maps ([https://github.com/multitheftauto/mtasa-blue/commit/d4388a2452f4427bd56c3d93b80d4ea74c05b6e5 d4388a2] by '''FileEX''')&lt;br /&gt;
:* Fixed crash with nested arrays/maps in new argument parser ([https://github.com/multitheftauto/mtasa-blue/commit/ca877d33471fabbe970cf03d9d6d9b3413b6daa1 ca877d3] by '''tederis''')&lt;br /&gt;
&lt;br /&gt;
== 13 Vendor Updates ==&lt;br /&gt;
=== Client ===&lt;br /&gt;
* Updated libpng to 1.6.50 ([https://github.com/multitheftauto/mtasa-blue/commit/c24b39d41fd768337c3d336a944588d53dfaba44] by '''Nico834''')&lt;br /&gt;
* Updatee CEF to 127.3.5+g114ea2a+chromium-127.0.6533.120 ([https://github.com/multitheftauto/mtasa-blue/commit/bca4dff8dc490328000d7653a9166704d859b7e5 bca4dff] by '''Dutchman101''')&lt;br /&gt;
* Updated Unifont to 15.1.05 ([https://github.com/multitheftauto/mtasa-blue/commit/02115a5c00e2480bbb3b829b655869e7436de955 02115a5] by '''Dutchman101''')&lt;br /&gt;
&lt;br /&gt;
=== Server ===&lt;br /&gt;
* Updated cURL to 8.14.1 ([https://github.com/multitheftauto/mtasa-blue/commit/7c27c20da7503c68234cde0b726f10a3dcdf85e3] by '''Nico834''')&lt;br /&gt;
* Updated MySQL to 8.4.0 &amp;amp; OpenSSL to 3.3.1 ([https://github.com/multitheftauto/mtasa-blue/commit/a44d673bb8731506418fdbaa6690b339a98d82c1 a44d673] by '''botder''')&lt;br /&gt;
* Updated SQLite to 3.46.0 ([https://github.com/multitheftauto/mtasa-blue/commit/30e31af2ca1ae96e03386670a9df6db70336b968 30e31af] by '''Dutchman101''')&lt;br /&gt;
&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Updated mbedTLS to 3.6.4 ([https://github.com/multitheftauto/mtasa-blue/commit/45955dad5471f49e2784e37cbafd1b92196abe96] by '''Nico834''')&lt;br /&gt;
* Updated 7-Zip Standalone plugins to 24.07 (24.7.0.0) ([https://github.com/multitheftauto/mtasa-blue/commit/9b979b2d5c7f4b885046a85d9895e58416563890 9b979b2] by '''Dutchman101''')&lt;br /&gt;
* Updated freetype to freetype-37cefe3 (freetype/freetype@37cefe3) ([https://github.com/multitheftauto/mtasa-blue/commit/89e022cb8586aba5bdacd7b56c7d45c9b7b95f97 89e022c] by '''Dutchman101''')&lt;br /&gt;
* Updated nvapi from r550 to r555 ([https://github.com/multitheftauto/mtasa-blue/commit/5fdcada80a18af530381b04f54c3c69b6988f479 5fdcada] by '''Dutchman101''')&lt;br /&gt;
* Updated unrar to 7.0.9 ([https://github.com/multitheftauto/mtasa-blue/commit/ab9461be5777427261bc3a330acb4c0f5cdc2c8b ab9461b] by '''Dutchman101''')&lt;br /&gt;
* Updated FreeType to 2.13.2 ([https://github.com/multitheftauto/mtasa-blue/commit/a783e994264d4e954489e31459505c53759ca7f1 a783e99] by '''Dutchman101''')&lt;br /&gt;
* Updated zlib from 1.2.13 to 1.3 ([https://github.com/multitheftauto/mtasa-blue/commit/0f37ac0b18845e9f035d0ca45bbb41b9cd1aa979 0f37ac0] by '''Dutchman101''')&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
=== 46+ Changes and Bug Fixes ===&lt;br /&gt;
&lt;br /&gt;
'''admin'''&lt;br /&gt;
:* Removed execute code functionality for safety reasons ([https://github.com/multitheftauto/mtasa-resources/commit/507a04937524997410e450a6d4292974fa801bf8 507a049] by '''srslyyyy''')&lt;br /&gt;
:* Updated skins.xml ([https://github.com/multitheftauto/mtasa-resources/commit/b5306484a789cc59b05f4182505ac07df3d90e07 b530648] by '''shadylua''')&lt;br /&gt;
:* Fixed warnings ([https://github.com/multitheftauto/mtasa-resources/commit/d7b02022fa8168fc300dd562118100265cf0688b d7b0202] by '''jlillis''')&lt;br /&gt;
:* Making the admin window focused ([https://github.com/multitheftauto/mtasa-resources/commit/33f7cc938d243687fa36fa300ec588b2d057d02c 33f7cc9] by '''Proxy-99''')&lt;br /&gt;
:* Resource settings button is only displayed if there are settings ([https://github.com/multitheftauto/mtasa-resources/commit/0224ef52c699f27bd6e0e6364fbc81ecd0ec345f 0224ef5] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed nil index error and removed invalid characters causing syntax errors ([https://github.com/multitheftauto/mtasa-resources/commit/79857393ddb42f52ee05cf5758d5fdc8c2ff845c 7985739] by '''rad3sh''')&lt;br /&gt;
:* Allow disabling/enabling default reporting system ([https://github.com/multitheftauto/mtasa-resources/commit/0dbb83df7d3e9a20a2c897612db778bf4e395c92 0dbb83d] by '''Viude''')&lt;br /&gt;
:* Updated clientcheckban setting to ban serial instead of IP ([https://github.com/multitheftauto/mtasa-resources/commit/fa5beb96e10d9f30d9565ca212fe901f88e413a5 fa5beb9] by '''Viude''')&lt;br /&gt;
:* Fixed that double clicking on a resource without setting opened the GUI settings window ([https://github.com/multitheftauto/mtasa-resources/commit/82d5b835b503594101a99041498501e19a433a79 82d5b83] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed gridlist bug in weapons/vehicles ([https://github.com/multitheftauto/mtasa-resources/commit/6ba5a88b8a5da4a9df67f20347056754ea5a2c87 6ba5a88] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''admin2'''&lt;br /&gt;
:* Forward-ported permissions widget from admin1 and minor fixes ([https://github.com/multitheftauto/mtasa-resources/commit/25dcc4c655de26de0a2d0eb1b55ef7f3b3f6725e 25dcc4c] by '''Dark-Dragon''')&lt;br /&gt;
:* Fixed /report message viewer widget and minor fixes ([https://github.com/multitheftauto/mtasa-resources/commit/6dbdf2cf90d0e447879bea86942e01caf949b8f5 6dbdf2c] by '''Dark-Dragon''')&lt;br /&gt;
:* Refactored bans functionality ([https://github.com/multitheftauto/mtasa-resources/commit/d8c35b0a38a295d119054c4328a892c4e26be358 d8c35b0] by '''jlillis''')&lt;br /&gt;
:* Fixed messagebox not showing ([https://github.com/multitheftauto/mtasa-resources/commit/5afe0247e6ca44c5754a2d9a6a0af7bc8b57f967 5afe024] by '''FileEX''')&lt;br /&gt;
:* Added missing glitches and world properties ([https://github.com/multitheftauto/mtasa-resources/commit/6856aa075c8e5674379c2a89f355d8b167ab6fdb 6856aa0] by '''FileEX''')&lt;br /&gt;
:* Added content for &amp;quot;Users&amp;quot; sub-tab in the &amp;quot;Rights&amp;quot; tab ([https://github.com/multitheftauto/mtasa-resources/commit/3f8ecca953cc3dfa84e4d1b38b6b4c41f323688b 3f8ecca] by '''FileEX''')&lt;br /&gt;
:* Removed execute code functionality for safety reasons ([https://github.com/multitheftauto/mtasa-resources/commit/c4bc73a2b088b98116ece27065cc7f5a1dced15b c4bc73a] by '''jlillis''')&lt;br /&gt;
:* Replaced checkboxes with a gridlist for glitches and special world properties ([https://github.com/multitheftauto/mtasa-resources/commit/1dcb2953757c6741c93b9c63db33c032183047bc 1dcb295] by '''FileEX''')&lt;br /&gt;
:* Added ability to change server configuration settings ([https://github.com/multitheftauto/mtasa-resources/commit/118d58e383f631f111fe3f2463480182235c71d1 118d58e] by '''FileEX''')&lt;br /&gt;
:* Added content for &amp;quot;Resources&amp;quot; sub-tab in the &amp;quot;Rights&amp;quot; tab ([https://github.com/multitheftauto/mtasa-resources/commit/f16577e24ca9125eac5f2e96621077ad0d213b69 f16577e] by '''FileEX''')&lt;br /&gt;
:* Making the admin window focused ([https://github.com/multitheftauto/mtasa-resources/commit/33f7cc938d243687fa36fa300ec588b2d057d02c 33f7cc9] by '''Proxy-99''')&lt;br /&gt;
:* Fixed panel bind bug after reconnect ([https://github.com/multitheftauto/mtasa-resources/commit/c96bdd5297cf180f947596c1eded8929b4982e6c c96bdd5] by '''ricksterhd123''')&lt;br /&gt;
&lt;br /&gt;
'''chatmanager'''&lt;br /&gt;
:* Added a new resource for chat handling and management ([https://github.com/multitheftauto/mtasa-resources/commit/4e45cb75a8780b0c191031091a4fcd2d76442aa7 4e45cb7] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''defaultstats'''&lt;br /&gt;
:* Don't re-apply stats on every respawn ([https://github.com/multitheftauto/mtasa-resources/commit/9fde199ec5025052468df0255bf5c5011ef29718 9fde199] by '''Dutchman101''')&lt;br /&gt;
:* Fixed issue where defaultstats did not set player stats correctly ([https://github.com/multitheftauto/mtasa-resources/commit/567d10c552305dae3f57d5c422a34c25f22fdc12 567d10c] by '''MittellBuurman''')&lt;br /&gt;
&lt;br /&gt;
'''editor'''&lt;br /&gt;
:* Various fixes for local spawned or invalid elements ([https://github.com/multitheftauto/mtasa-resources/commit/4e3c57941cd789cff8d9ce240e99edca871a345d 4e3c579] by '''chris1384''')&lt;br /&gt;
:* Various bug fixes and improvements ([https://github.com/multitheftauto/mtasa-resources/commit/4674fa9c6dbff7a1073fb949cac44588c65df3fb 4674fa9] by '''IIYAMA12''')&lt;br /&gt;
:* Fixed rotation issues ([https://github.com/multitheftauto/mtasa-resources/commit/679c01b93132050548a86dba25ead7feaf9d5a1f 679c01b] by '''Nico834''')&lt;br /&gt;
:* Toggleable rotation mechanic and improve threshold ([https://github.com/multitheftauto/mtasa-resources/commit/83e2c79cbd959aa54c55d4220a5b4d38747e8353 83e2c79] by '''chris1384''')&lt;br /&gt;
:* Added missing objects and collisions ([https://github.com/multitheftauto/mtasa-resources/commit/4e83755d51345c0dc8e2e0f2ddf61588bf854641 4e83755] by '''THEGizmoOfficial''')&lt;br /&gt;
&lt;br /&gt;
'''edf'''&lt;br /&gt;
:* Fixed massive lag after stopping ''editor'' resource ([https://github.com/multitheftauto/mtasa-resources/commit/4674fa9c6dbff7a1073fb949cac44588c65df3fb 4674fa9] by '''IIYAMA12''')&lt;br /&gt;
&lt;br /&gt;
'''editor_main'''&lt;br /&gt;
:* Improvements ([https://github.com/multitheftauto/mtasa-resources/commit/5bf553f85cb9c53027814fe666268cb24ed66b2e 5bf553f], [https://github.com/multitheftauto/mtasa-resources/commit/e9b75fd615922c7d70f4e435a05fa933dcb9d2a5 e9b75fd] by '''q8X''')&lt;br /&gt;
:* Add xmlns namespace when saving map ([https://github.com/multitheftauto/mtasa-resources/commit/23fa3f38f71c2f3d28780df1b3ce163ab2eaae84 23fa3f3] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''editor_gui'''&lt;br /&gt;
:* Fixed test panel issues ([https://github.com/multitheftauto/mtasa-resources/commit/e558c846e8b0589997f342f431b36fdc371da000 e558c84] by '''chris1384''')&lt;br /&gt;
&lt;br /&gt;
'''fallout'''&lt;br /&gt;
:* Refactor &amp;amp; many improvements ([https://github.com/multitheftauto/mtasa-resources/commit/c733b69a735d004235ba61b1201ac1412acc6482 c733b69] by '''IIYAMA12''')&lt;br /&gt;
&lt;br /&gt;
'''freeroam'''&lt;br /&gt;
:* Updated skins.xml ([https://github.com/multitheftauto/mtasa-resources/commit/cacbe40a805402dec3a62180b987d4b777817ea6 cacbe40] by '''shadylua''')&lt;br /&gt;
:* Added Walk styles ([https://github.com/multitheftauto/mtasa-resources/commit/4a18d7585a2fa45eaed18d4b4796744a235a23c5 4a18d75] by '''shadylua''')&lt;br /&gt;
:* Security improvements ([https://github.com/multitheftauto/mtasa-resources/commit/2ec92132036d0dc073279dda3c88d71f578d651f 2ec9213] by '''IIYAMA12''')&lt;br /&gt;
:* Fixed freezetime flickering ([https://github.com/multitheftauto/mtasa-resources/commit/b40f27be0274b641c2cddd4c75a6f86f73ea4941 b40f27b], [https://github.com/multitheftauto/mtasa-resources/commit/817aa1ea9130fbccb1a23b7410309af2f8a21ddc 817aa1e] by '''ricksterhd123''' and '''jlillis''')&lt;br /&gt;
:* Fixed map key bind interferes with race editor help ([https://github.com/multitheftauto/mtasa-resources/commit/e62bc5471433b347b16c15709d469209cf202390 e62bc54] by '''MittellBuurman''')&lt;br /&gt;
:* Fixed player blips staying visible after closing spawn map with F1 ([https://github.com/multitheftauto/mtasa-resources/commit/aaf2dd7ed7a0b6b6c6609a4ee5d8319101e8a674 1a5031c] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''hedit'''&lt;br /&gt;
:* Added German localization [[File:Flag_de.png|x14px]] ([https://github.com/multitheftauto/mtasa-resources/pull/568/commits/c58df8666fbccfb0be73f27c52aa680dae2f0c1a bc33634] by '''shadylua''')&lt;br /&gt;
:* Added Brazilian Portuguese localization [[File:Flag_br.png|x14px]] ([https://github.com/multitheftauto/mtasa-resources/commit/d1b85d7dda45293ce497cf03f21eea2f59100b89 d1b85d7] by '''ricksterhd123''')&lt;br /&gt;
:* Added Hungarian localization [[File:Flag_hu.png|x18px]] ([https://github.com/multitheftauto/mtasa-resources/commit/53050dd0bf73a164969480c9277fc3c6b0601b7e 53050dd] by '''Nico834''')&lt;br /&gt;
:* Updated Turkish localization [[File:Tr.gif]] ([https://github.com/multitheftauto/mtasa-resources/commit/3044d00a796488870556b19b088ac505c332952c 3044d00] by '''mahlukat5''')&lt;br /&gt;
:* Updated Spanish localization [[File:Flag_es.png|x18px]] ([https://github.com/multitheftauto/mtasa-resources/commit/b74c2393cc15e403d4588ebb671659c16cc36269 b74c239] by '''kxndrick0''')&lt;br /&gt;
&lt;br /&gt;
'''internetradio'''&lt;br /&gt;
:* Fixed that the GUI window of the resource &amp;quot;internetradio&amp;quot; collides with the GUI window of the resource &amp;quot;helpmanager&amp;quot; ([https://github.com/multitheftauto/mtasa-resources/commit/313f3dde6b7cdb389f11f1a62a6d3e8c093c159f 313f3dd] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Improvements ([https://github.com/multitheftauto/mtasa-resources/commit/a3c9e17cf6b85374b5f9b5881937aee97da94745 a3c9e17] by '''srslyyyy''')&lt;br /&gt;
:* Added attaching to vehicles ([https://github.com/multitheftauto/mtasa-resources/commit/3dd5cbd32f092337707277fbecc5ee54988e07fc 3dd5cbd] by '''ds1-e''')&lt;br /&gt;
:* Added admin commands ([https://github.com/multitheftauto/mtasa-resources/commit/5c160212e190f74461d65fac1668cda07a2d0b11 https://github.com/multitheftauto/mtasa-resources/commit/5c160212e190f74461d65fac1668cda07a2d0b11] by '''ds1-e''')&lt;br /&gt;
:* Added ability to show speaker owner ([https://github.com/multitheftauto/mtasa-resources/commit/6189fc1eefce29c8467c5a1093eaa8bfd8ed97f0 6189fc1] by '''ds1-e''')&lt;br /&gt;
:* Fixed playSound3D and track name showing in other dimensions ([https://github.com/multitheftauto/mtasa-resources/commit/d4c04db009cdd68913fdb47bbc73acd91e63f981 d4c04db] by '''mateo-14'''&lt;br /&gt;
&lt;br /&gt;
'''ip2c'''&lt;br /&gt;
:* Added missing fetchRemote aclrequest ([https://github.com/multitheftauto/mtasa-resources/commit/e1364c3ebcc956dbf7f61e2d89741837776edec2 e1364c3] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Added backed up file and .gitignore to ignore the real one (auto-updated) ([https://github.com/multitheftauto/mtasa-resources/commit/e182291a53c3c76a2cf45834ba313aa9d18c16f4 e182291] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''ipb'''&lt;br /&gt;
:* Replaced the onClientResource start event with the onPlayerResourceStart event ([https://github.com/multitheftauto/mtasa-resources/commit/cca3a05adf7fc940b913453a5fad5d5f3c8e3518 cca3a05] by '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
'''parachute'''&lt;br /&gt;
:* Fixed warnings about min_mta_version ([https://github.com/multitheftauto/mtasa-resources/commit/b4119cca4665d63a3043f14c1624ce9c96700b96 b4119cc] by '''NetroX1993''')&lt;br /&gt;
&lt;br /&gt;
'''playerblips'''&lt;br /&gt;
:* Fixed that the resource &amp;quot;playercolors&amp;quot; should be activated for teams ([https://github.com/multitheftauto/mtasa-resources/commit/2cd28db5fa891f361c5af07a491532378a820b83 2cd28db] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Real-time update of settings ([https://github.com/multitheftauto/mtasa-resources/commit/9505b181fe7fc2bab53142746f73bc64a8fd984d 9505b18] by '''Nico834''')&lt;br /&gt;
:* Improved debug messages ([https://github.com/multitheftauto/mtasa-resources/commit/4084e5d369907d3ededd1b2eb19c916983680154 4084e5d] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed that when a player changed or joined teams the color of the blip was not updated ([https://github.com/multitheftauto/mtasa-resources/commit/ff80005f114a3d010624f7d54510ffde47dddb00 ff80005] by '''T-MaxWiese-T''')&lt;br /&gt;
&lt;br /&gt;
'''playercolors'''&lt;br /&gt;
:* Player nametag color should revert to team color when the resource is stopped ([https://github.com/multitheftauto/mtasa-resources/commit/d45d2d0cd963186639d76ab1cb27ef6a042cd0bd d45d2d0] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed chat messages sent twice ([https://github.com/multitheftauto/mtasa-resources/commit/0547cf72514a7dc7efc987f47903c35b310a3b22 0547cf7] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''performancebrowser'''&lt;br /&gt;
:* Fixed player names not being reinitialized on change ([https://github.com/multitheftauto/mtasa-resources/commit/3e0166dc7fa9c11c596a7958b02423b6aeff8410 3e0166d] by '''YelehaUwU''')&lt;br /&gt;
&lt;br /&gt;
'''runcode'''&lt;br /&gt;
:* Added aclrequest for loadstring function ([https://github.com/multitheftauto/mtasa-resources/commit/c40b8095f054b6e87b46e1d53d9b6ec77cf943c7 c40b809] by '''IIYAMA12 ''')&lt;br /&gt;
&lt;br /&gt;
'''scoreboard'''&lt;br /&gt;
:* Replaced drawing arrow from path to texture ([https://github.com/multitheftauto/mtasa-resources/commit/128f26952810804df6acb233ca9476853caa1286 128f269] by '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
'''speedometer'''&lt;br /&gt;
:* Display at resource start ([https://github.com/multitheftauto/mtasa-resources/commit/31a5ac4013c3633647178e695474da6632eb38b8 31a5ac4] by '''Nico834''')&lt;br /&gt;
:* Preventing pointer overflow ([https://github.com/multitheftauto/mtasa-resources/commit/8689cdc247a3fd16125524aac04eb054c398084c 8689cdc] by '''Nico834''')&lt;br /&gt;
&lt;br /&gt;
'''superman'''&lt;br /&gt;
:* Fixes and improvements ([https://github.com/multitheftauto/mtasa-resources/commit/2b3bc102225b2f1c3144cffe290175e9a2c71728 2b3bc10], [https://github.com/multitheftauto/mtasa-resources/commit/e1c06c3c2581c16a6e05401381263a47dd6ac5f0 e1c06c3], [https://github.com/multitheftauto/mtasa-resources/commit/1e4319d180be0f482d42f2f32fbf2c1e5cd440cc 1e4319d] by '''ds1-e''')&lt;br /&gt;
&lt;br /&gt;
'''votemanager'''&lt;br /&gt;
:* Fixed lint error ([https://github.com/multitheftauto/mtasa-resources/commit/c8630075317123e510645464a3bf56ebb244573b c863007] by '''Dark-Dragon''')&lt;br /&gt;
&lt;br /&gt;
'''mapfixes'''&lt;br /&gt;
:* A new resource has been added that fixes many holes and bugs in the default map ([https://github.com/multitheftauto/mtasa-resources/commit/23f6bd94370440af5ed79a47bda1ff0caf92fa8e 23f6bd9] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''gps'''&lt;br /&gt;
:* Added export functions for custom logic ([https://github.com/multitheftauto/mtasa-resources/commit/537d92d11b357cf9e795a7bb3ec87c13fa62c7bc 537d92d] by '''T-MaxWiese-T''')&lt;br /&gt;
&lt;br /&gt;
'''deathmatch'''&lt;br /&gt;
:* Improvements and update ([https://github.com/multitheftauto/mtasa-resources/commit/a01ec8a86e636ca61f25a03d4ee30bd898754cbd a01ec8a], [https://github.com/multitheftauto/mtasa-resources/commit/b94ffddfd5b230544d54e5eca8c9c5d87dc69128 b94ffdd] by '''jlillis'''&lt;br /&gt;
&lt;br /&gt;
'''race'''&lt;br /&gt;
:* Fixed automatic nextid assignment breaking ([https://github.com/multitheftauto/mtasa-resources/commit/2c695a9e793825a8cafd2ee3be490d2d8e9ad318 2c695a9] by '''lotsofs''')&lt;br /&gt;
&lt;br /&gt;
'''voice_local'''&lt;br /&gt;
:* Improvements ([https://github.com/multitheftauto/mtasa-resources/commit/53cf63d83169018e0de9f45ecb565958855d717d 53cf63d] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''Others / Uncategorized'''&lt;br /&gt;
:* Refactor of resources meta.xml ([https://github.com/multitheftauto/mtasa-resources/commit/6713b07a459739c06112ac3e608776f3f0696144 6713b07] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
== Extra information ==&lt;br /&gt;
''More detailed information available on our GitHub repositories:&lt;br /&gt;
* [https://github.com/multitheftauto/mtasa-blue MTA:SA Blue]&lt;br /&gt;
* [https://github.com/multitheftauto/mtasa-resources MTA:SA Official Resources]&lt;br /&gt;
&lt;br /&gt;
[[Category:Changelog]]&lt;br /&gt;
[[Category:Incomplete]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/Resource:DGS&amp;diff=82466</id>
		<title>AR/Resource:DGS</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/Resource:DGS&amp;diff=82466"/>
		<updated>2025-09-10T22:02:32Z</updated>

		<summary type="html">&lt;p&gt;O22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pageclass class=&amp;quot;resource&amp;quot; subcaption=&amp;quot;Resource&amp;quot;&amp;gt;&amp;lt;/pageclass&amp;gt;&lt;br /&gt;
[[Image:DGSNetStatus.png|300px|thumb|right|DGS Network Monitor]]&lt;br /&gt;
&lt;br /&gt;
تم تصميم هذا مود للسماح لك لإنشاء لوحات دي اكس  بدل من وظائف دي اكس الخاصه بــ ام تي اي  .&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''الاسم''': نظام واجهة المستخدم الرسومية ديريكتكس&lt;br /&gt;
&lt;br /&gt;
'''مصمم المود''': [[User:thisdp|thisdp]] &lt;br /&gt;
&lt;br /&gt;
'''حالة''': لمصدر المفتوح&lt;br /&gt;
&lt;br /&gt;
'''جيثب''': https://github.com/thisdp/dgs/tree/master&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=مميزات=&lt;br /&gt;
&lt;br /&gt;
[[Image:DGSS.png|400px|thumb|right|]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''كيف يعمل'''&lt;br /&gt;
* دغس هو تماما مثل نظام واجهة المستخدم الرسومية الأصلي الذي يقوم على نظام العنصر. يمكنني استخدام طريقة بسيطة يمكن أن تجعل من السهل أن نفهم.&lt;br /&gt;
* يتم تقديم عناصر دغس في &amp;quot;onClientRender&amp;quot;. هناك اثنين أو أكثر من الجداول تخزين عناصر دغس. عندما يسمى &amp;quot;onClientRender&amp;quot;، &amp;quot;for&amp;quot; حلقة حلقة وحساب كل عنصر دغس.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''ما هو المختلف؟'''&lt;br /&gt;
* يستند هذا المورد على دكس * وظائف. انها تسمح لنا لتحرير لدينا واجهة المستخدم الرسومية وجعله في التخصيص.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''نظام تحديث'''&lt;br /&gt;
*لديها نظام التحديث&lt;br /&gt;
*عندما تاتي نسخه جديد ل مود يجب عليك تحديث المود &lt;br /&gt;
*يمكنك استخدم امر &amp;quot;'''updatedgs'''&amp;quot;  كشف علي اخر تحديث  ل مود&lt;br /&gt;
*يمكنك فحص اخر تحديث بوسطة امر  &amp;quot;dgsver&amp;quot; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''سجلات التحديث'''&lt;br /&gt;
*''' سجلات التحديث هنا: [http://angel.mtaip.cn:233/dgsUpdate/ Update Log]'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''يجب ان تعرف'''&lt;br /&gt;
*Scroll Pane, Grid List, Combo Box, Memo and Edit box استخدام تحقيق الهدف، مما يعني إذا لم يكن لديك ما يكفي من ذاكرة الفيديو، '' 'سوف تحدث مشكله'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Dx_7.PNG|400px|thumb|right| DGS مثال لموجه الأوامر ]] &lt;br /&gt;
&lt;br /&gt;
'''امثله'''&lt;br /&gt;
*1.https://community.multitheftauto.com/index.php?p=resources&amp;amp;s=details&amp;amp;id=14757 By ([[User:Ahmed Ly|Ahmed Ly]] ,Mahmod Algeriany)&lt;br /&gt;
*2. أيضا test.lua ملف لها المزيد من الأمثلة يمكنك أن ترى ذلك&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Auto Completion'''&lt;br /&gt;
*1. رابط: http://www.mediafire.com/file/m6dm7815d5dihax/lua.zip  By [[User:Ahmed Ly|Ahmed Ly]] &lt;br /&gt;
*2. '''ملاجظه''': يجب عليك وضع  ملف في  Notepad++\plugins\APIs.&lt;br /&gt;
*3. لم يتم اضفت جميع وظايف ولكن سوف يتم اضفت جميع وظائف قريبا&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Debug'''&lt;br /&gt;
* يمكنك استخدام دي بق باستخدام امر  &amp;quot;'''debugdgs'''&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''DGS Type'''&lt;br /&gt;
[[Image:Dx Dgs.jpg|400px|thumb|right|Hurt World GUI Example]] &lt;br /&gt;
* Button (dgs-dxbutton): A button.&lt;br /&gt;
* Command (dgs-dxcmd): A command just like windows.&lt;br /&gt;
* Ellipse Detect Area (dgs-dxeda): An oval detect area.&lt;br /&gt;
* Edit (dgs-dxedit): An edit.&lt;br /&gt;
* Memo (dgs-dxmemo): A memo.&lt;br /&gt;
* Gridlist (dgs-dxgridlist): A grid list.&lt;br /&gt;
* Image (dgs-dximage): A dynamic image.&lt;br /&gt;
* Label (dgs-dxlabel): A text label.&lt;br /&gt;
* Ellipse Detect Area (EDA)&lt;br /&gt;
* ScrollBar (dgs-dxscrollbar): A scroll bar.&lt;br /&gt;
* ScrollPane (dgs-dxscrollpane): A scroll pane.&lt;br /&gt;
* Tab Panel (dgs-dxtabpanel + dgs-dxtab) : A tab panel. &lt;br /&gt;
* Window (dgs-dxwindow): A window.&lt;br /&gt;
* Progress Bar (dgs-dxprogressbar): A Progress Bar.&lt;br /&gt;
* Radio Button (dgs-dxradiobutton): A Radio Button.&lt;br /&gt;
* Combo Box (dgs-dxcombobox + dgs-dxcombobox-Box) : A combo box.&lt;br /&gt;
* Check Box (dgs-dxcheckbox) : A check box that with 3 states (checked, unchecked and indeterminate).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''تنويه'''&lt;br /&gt;
*من المستحسن تغيير اسم المود &amp;quot;dgs&amp;quot;  إلى.&lt;br /&gt;
*This is a resource, if you want to use the functions exported by this resource, you should use an exported function prefix ('''exports.dgs:''') call in your code, such as&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
label = exports.dgs:dgsCreateLabel(0, 0, 0.5, 0.1, &amp;quot;text&amp;quot;, true)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
*Here is a feasible way to shorten the name of an exported function:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
DGS = exports.dgs --shorten the export function prefix&lt;br /&gt;
label = DGS:dgsCreateLabel(0,0,0.5,0.1,&amp;quot;text&amp;quot;,false) -- انشاء ليبل Label&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''شكر خاص  لمساعدتهم''':&lt;br /&gt;
[[Image:Tab.PNG |200px|thumb|right|Example tab panel and label .]] &lt;br /&gt;
* Axel: يعطي بعض النصائح وتوفير بعض الوظائف.&lt;br /&gt;
* Senpai: يساعد كتابة ويكي.&lt;br /&gt;
* ZoNe: يساعد كتابة ويكي.&lt;br /&gt;
* DiGiTal: يساعد كتابة ويكي.&lt;br /&gt;
* #Dv^: يساعد كتابة ويكي.&lt;br /&gt;
&lt;br /&gt;
شكر خاص ل:&lt;br /&gt;
* Ahmed Ly: Helps write wiki, release auto completion for N++.&lt;br /&gt;
&lt;br /&gt;
='''DGS Element Properties'''=&lt;br /&gt;
{{DGSPROPERTIES}}&lt;br /&gt;
&lt;br /&gt;
='''Client Functions'''=&lt;br /&gt;
{{DGSFUNCTIONS}}&lt;br /&gt;
&lt;br /&gt;
=Client Events=&lt;br /&gt;
{{DGSEVENTS}}&lt;br /&gt;
&lt;br /&gt;
=في اخر=&lt;br /&gt;
'''الجميع مرحب به لتقديم اقتراحات، واختبار النص البرمجي، والمساعدة في إجراء تعديلات / إنهاء ويكي، وما إلى ذلك.'''&lt;br /&gt;
[[Category:Resource]]&lt;br /&gt;
&lt;br /&gt;
[[ZH-CN:Resource:Dgs]]&lt;br /&gt;
[[EN:Resource:Dgs]]&lt;br /&gt;
[[PL:Resource:Dgs]]&lt;br /&gt;
[[TR:Resource:Dgs]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Changes_in_1.7&amp;diff=82462</id>
		<title>Changes in 1.7</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Changes_in_1.7&amp;diff=82462"/>
		<updated>2025-09-09T19:38:54Z</updated>

		<summary type="html">&lt;p&gt;O22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pageclass class=&amp;quot;#4286f4&amp;quot; subcaption=&amp;quot;Next release&amp;quot;&amp;gt;&amp;lt;/pageclass&amp;gt;&lt;br /&gt;
{{Changelogs}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
'''This changelog is partial and needs updating. It is updated progressively to keep the page always up to date.'''&lt;br /&gt;
&lt;br /&gt;
* GitHub commit log: https://github.com/multitheftauto/mtasa-blue/compare/1.6.0...master&lt;br /&gt;
* GitHub milestone: https://github.com/multitheftauto/mtasa-blue/milestone/10&lt;br /&gt;
* Resources GitHub commit log: https://github.com/multitheftauto/mtasa-resources/compare/1.6.0...master&lt;br /&gt;
* Release announcement on forums: TBA&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Important notice to Windows 7 and 8.x users ==&lt;br /&gt;
If you are using Windows 7 or 8.x, please upgrade your system to Windows 10 or 11 as soon as possible. Windows 7 and 8.x are no longer supported by Microsoft (since January 2020 and January 2023 respectively) and most software (including Google Chrome and Steam) which means you are running an insecure system. Multi Theft Auto will also eventually drop Windows 7 and 8.x support sometime in the future, so it would be a good idea to start looking at upgrade options right now. Thank you!&lt;br /&gt;
&lt;br /&gt;
'''CEF in MTA is no longer updated for Windows 7 or 8.x. This is because CEF no longer supports those versions of Windows. This is bad for security, so please upgrade to Windows 10+ and MTA to 1.6+'''&lt;br /&gt;
&lt;br /&gt;
== 4 Deprecations ==&lt;br /&gt;
These changes will take effect in this version and scripts may need to be manually upgraded when updating:&lt;br /&gt;
* Changed [[base64Encode]] and [[base64Decode]] to throw a warning on use, please upgrade to [[encodeString]] and [[decodeString]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/30a83b0af164fb6920a2a60e089d08a6f5622f7d 30a83b0] by '''Nico834''')&lt;br /&gt;
* Changed [[setHelicopterRotorSpeed]] and [[getHelicopterRotorSpeed]] to throw a warning on use, please upgrade to [[setVehicleRotorSpeed]] and [[getVehicleRotorSpeed]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/82000c34830b51ace2d14e39f3b487feb1aac1da 82000c3] by '''FileEX''')&lt;br /&gt;
* Changes [[setPedOnFire]] and [[isPedOnFire]] to throw a warning on use, please upgrade to [[setElementOnFire]] and [[isElementOnFire]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/7ad96e2e78fe41f8924d3f105b1683f7363c6fcb 7ad96e2] by '''FileEX''')&lt;br /&gt;
* Changes [[removeAllGameBuildings]] and [[restoreAllGameBuildings]] to throw a warning on use, please upgrade to [[removeGameWorld]] and [[restoreGameWorld]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/d7adae68791ce237704acc06bf794b5fbda96f95#diff-93c130ddb85da32121129a437ac5b28ba16fa17f6e3506e4cddfb7bc3d8eb9fbR180 d7adae6] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
== Notable Changes ==&lt;br /&gt;
* Support for Discord Rich Presence ([https://github.com/multitheftauto/mtasa-blue/commit/fdaa3aca3e233c7aba69d0fd5f85e78288a4401a fdaa3ac], [https://github.com/multitheftauto/mtasa-blue/commit/ef26810df4542283fee8edcc165bc9be22f2ca98 ef26810], [https://github.com/multitheftauto/mtasa-blue/commit/acfbd40df1ff1432ea1d6663c005d43fce22899c acfbd40] by '''znjvder''', '''tederis''', '''patrikjuvonen''' and '''Deihim007''')&lt;br /&gt;
* Added support for [[Building]]'s ([https://github.com/multitheftauto/mtasa-blue/commit/81242edb9295efbf4bf8b198b12d577a0877aec2 81242ed], [https://github.com/multitheftauto/mtasa-blue/commit/eb6b18a5d49a7f0f34bdbf42b15f933e42876cf8 eb6b18a] by '''TheNormalnij''')&lt;br /&gt;
* Added the ability to generate a nickname ([https://github.com/multitheftauto/mtasa-blue/commit/12c50eee66898771244074a3a44818dab36a7ac3 12c50ee] by '''Nico834''')&lt;br /&gt;
* Added ''meta.xml'' loading files pattern ([https://github.com/multitheftauto/mtasa-blue/commit/90e2737d0a5eb12f34d2fd3c1f270bedf34cda35 90e2737] by '''W3lac3''')&lt;br /&gt;
* Added world properties (time cycle and weather related features) with new functions: [[setWorldProperty]], [[getWorldProperty]], [[resetWorldProperty]] ([https://github.com/multitheftauto/mtasa-blue/commit/a75f1e9a03e74f7c9d4ae9e5aef8433af84d5ea2 a75f1e9] by '''Samr46''')&lt;br /&gt;
* Added file-system related functions (list files and folders in directories) ([https://github.com/multitheftauto/mtasa-blue/commit/74781c6295b5b6dc81cd95d4cfab7900d88d7524 74781c6] by '''Tracer''')&lt;br /&gt;
* Added the ability to change the color and size of the target arrow in the checkpoint marker ([https://github.com/multitheftauto/mtasa-blue/commit/071378ec4326408a9520c79c96befca995d097f6 071378e] by '''FileEX''')&lt;br /&gt;
* Added the ability to change the alpha of checkpoint and arrow marker ([https://github.com/multitheftauto/mtasa-blue/commit/7988852cf3af9e78f662d76544dc00db408b5c87 7988852] by '''FileEX''')&lt;br /&gt;
* Fixed weapon issues when using the jetpack ([https://github.com/multitheftauto/mtasa-blue/commit/180fbc0b5fdba95450e7a519f78f7588849349bf 180fbc0], [https://github.com/multitheftauto/mtasa-blue/commit/a68c2c4232c28c6ba5595a814b89be976c4fa9c3 a68c2c4] by '''FileEX''')&lt;br /&gt;
* Fixed vehicle windows not being visible from the inside when the lights are on ([https://github.com/multitheftauto/mtasa-blue/commit/934c1d6cfef19902cc391c896bbe2f80ba5a4f70 934c1d6] by '''FileEX''')&lt;br /&gt;
* Fixed old [[setElementModel]] memory leak ([https://github.com/multitheftauto/mtasa-blue/commit/4e7afa2586c6992a75ac5312378c1096d87148ae 4e7afa2] by '''tederis''')&lt;br /&gt;
* Enabled WebGL (GPU Acceleration) in CEF ([https://github.com/multitheftauto/mtasa-blue/commit/026301168d2cd8239650a4f0aa33ff0be6d752dc 0263011] by '''TFP-dev''')&lt;br /&gt;
* Refactored '''Quick Connect button''' ([https://github.com/multitheftauto/mtasa-blue/commit/5b59e2236b30ec696ac1c05f8bb4e509ec06c0f7 5b59e22] by '''Fernando-A-Rocha''')&lt;br /&gt;
* Added setting to save camera photos in documents folder ([https://github.com/multitheftauto/mtasa-blue/commit/3419b9b7a20e3d1893d673a2a07ee1a0efda1bd5 3419b9b] by '''ffsPLASMA''')&lt;br /&gt;
* Added HUD customization ([https://github.com/multitheftauto/mtasa-blue/commit/5ea0e0fb23b21750207b23191db92562cf9b822c 5ea0e0f] by '''FileEX''')&lt;br /&gt;
* Added sync peds/players animations for new players ([https://github.com/multitheftauto/mtasa-blue/commit/b32eafc70816ece8ad995d98d380d8f6e9950475 b32eafc] by '''FileEX''')&lt;br /&gt;
* From now on, animation progress is preserved even after a restream; the animation will not start from the beginning. ([https://github.com/multitheftauto/mtasa-blue/commit/ad0d6bfdd7bf56b78f7c8c1b9a60597ef9b6dca3 ad0d6bf] by '''FileEX''')&lt;br /&gt;
* Added ability to replace CJ clothing models ([https://github.com/multitheftauto/mtasa-blue/commit/6b823653ecf68e181de91392d5d8931488f90f20 6b82365] by '''W3lac3''')&lt;br /&gt;
* New MTA splash window ([https://github.com/multitheftauto/mtasa-blue/commit/215173eeb1e015c0381ce94f95429c36ab1b4430 215173e] by '''botder''')&lt;br /&gt;
* Fixed multiple damage instances in certain areas during explosions ([https://github.com/multitheftauto/mtasa-blue/commit/3bce4080ec66a993096f9e7fb039cc7d5d0d8175 3bce408] by '''FileEX''')&lt;br /&gt;
* From now on, before disconnecting from the server using the main menu, you will be asked to confirm if you really want to do it ([https://github.com/multitheftauto/mtasa-blue/commit/6aa763fb79701c57402fccca9ae6c0f396fb8f3c 6aa763f] by '''tonievalue''')&lt;br /&gt;
&lt;br /&gt;
== Statistics ==&lt;br /&gt;
&amp;lt;section show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
These are some statistics since the [[Changes in 1.6.0|previous release]].&lt;br /&gt;
* This is the '''28&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt;''' 1.x.x release&lt;br /&gt;
* '''{{date difference|2023|06|16}}''' days&lt;br /&gt;
* '''39''' new functions&lt;br /&gt;
* '''12''' new events&lt;br /&gt;
* '''4''' deprecations&lt;br /&gt;
* '''50+''' bug fixes and changes&lt;br /&gt;
* '''734''' commits ([https://github.com/multitheftauto/mtasa-blue/compare/1.6.0...master mtasa-blue])  ([https://github.com/multitheftauto/mtasa-resources/compare/1.6.0...master mtasa-resources])&lt;br /&gt;
* '''78''' new open GitHub issues ([https://github.com/multitheftauto/mtasa-blue/issues?q=is%3Aopen+is%3Aissue+created%3A2023-06-16..2024-10-01 see list])&lt;br /&gt;
* '''29''' resolved GitHub issues ([https://github.com/multitheftauto/mtasa-blue/issues?q=is%3Aclosed+is%3Aissue+milestone%3A%221.6.1%22 see list])&lt;br /&gt;
* '''28''' closed GitHub issues ([https://github.com/multitheftauto/mtasa-blue/issues?q=is%3Aclosed+is%3Aissue+closed%3A2023-06-16..2024-10-01+no%3Amilestone+-label%3Ainvalid see list])&lt;br /&gt;
* '''30''' new open GitHub pull requests ([https://github.com/multitheftauto/mtasa-blue/pulls?q=is%3Aopen+is%3Apr+created%3A2023-06-16..2024-10-01 see list])&lt;br /&gt;
* '''81''' merged GitHub pull requests ([https://github.com/multitheftauto/mtasa-blue/pulls?q=is%3Apr+is%3Amerged+milestone%3A%221.6.1%22 see list])&lt;br /&gt;
* '''26''' closed GitHub pull requests ([https://github.com/multitheftauto/mtasa-blue/pulls?q=is%3Apr+is%3Aunmerged+closed%3A2023-06-16..2024-10-01 see list])&lt;br /&gt;
* '''2+''' contributors of which '''0+''' are new ([https://github.com/multitheftauto/mtasa-blue/graphs/contributors?from=2023-06-16&amp;amp;to=2024-10-01&amp;amp;type=c see list])&lt;br /&gt;
* '''100+''' total contributors ([https://github.com/multitheftauto/mtasa-blue/graphs/contributors see list])&lt;br /&gt;
* '''3''' vendor updates&lt;br /&gt;
&lt;br /&gt;
&amp;lt;sub&amp;gt;'''Note:''' Last update to these statistics was made {{date difference human friendly|2024|04|04}}.&amp;lt;/sub&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 86 New Features ==&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Added new ''special world properties'' to [[setWorldSpecialPropertyEnabled]] function&lt;br /&gt;
:* Added '''fireballdestruct''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
:* Added '''roadsignstext''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/4a746eca1b5a546a19344a76573a5108ff9d79e6 4a746ec] by '''FileEX''')&lt;br /&gt;
:* Added '''extendedwatercannons''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/13a53959f52c978b416c00b428938f82818b2312 13a5395] by '''FileEX''')&lt;br /&gt;
:* Added '''tunnelweatherblend''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/9a0790ec7fab1efb7817eead371744fcd47da5c5 9a0790e] by ''''gta191977649''')&lt;br /&gt;
:* Added '''ignorefirestate''' special world proeprty ([https://github.com/multitheftauto/mtasa-blue/commit/46f3580fbd8ea5cf48c14cf8fee0bd6eb6691854 46f3580] by '''FileEX''')&lt;br /&gt;
:* Added '''flyingcomponents''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/5ee641436821ae8a59484ac721a4ec929d5cc152 5ee6414] by '''FileEX''')&lt;br /&gt;
:* Added '''vehicleburnexplosions''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/88d303c0bbcc0ed4fee958df2d16ace562ce0108 88d303c] by '''samr46''')&lt;br /&gt;
:* Added '''vehicle_engine_autostart''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/8b3f3440f8bc485f90d466a3fe6f3e5819de9c2f 8b3f344] by '''samr46''')&lt;br /&gt;
&lt;br /&gt;
* Added new ''glitches'' to [[setGlitchEnabled]] function&lt;br /&gt;
:* Added '''vehicle_rapid_stop''' glitch ([https://github.com/multitheftauto/mtasa-blue/commit/3f5801e65d8a51d112b686485d4a2491151c3311 3f5801e], [https://github.com/multitheftauto/mtasa-blue/commit/ef792d6af62443f97014621334c7188dddb4ef29 ef792d6] by '''samr46''' and '''Merlin''')&lt;br /&gt;
&lt;br /&gt;
* New '''file''' functions&lt;br /&gt;
:* Added [[fileGetContents]] ([https://github.com/multitheftauto/mtasa-blue/commit/22930d854ce67d84a4a3b65a61b98a9ffd3f9e38 22930d8] by '''botder''')&lt;br /&gt;
:* Added [[fileGetHash]] ([https://github.com/multitheftauto/mtasa-blue/commit/94f944f508b99b5d7e84fbb0be07a483e10517a9 94f944f] by '''botder''')&lt;br /&gt;
&lt;br /&gt;
* New and updated [[object]] functions&lt;br /&gt;
:* '''[Updated]''' Added [[isObjectMoving]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/7c939adb892c08836462a78cd9b987884cdb49ee 7c939ad] by '''FileEX''')&lt;br /&gt;
:* '''[Updated]''' Added [[breakObject]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/aa1a7853f46fc796a94f38b7df2a5293fb941ba2 aa1a785] by '''FileEX''')&lt;br /&gt;
:* '''[Updated]''' Added [[respawnObject]] and [[toggleObjectRespawn]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/9d65bb673c4df16def27e97a4af74d3b0c7eedc9 9d65bb6] by '''FileEX''')&lt;br /&gt;
:* '''[New]''' Added [[isObjectRespawnable]] ([https://github.com/multitheftauto/mtasa-blue/commit/9d65bb673c4df16def27e97a4af74d3b0c7eedc9 9d65bb6] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New '''file-path''' functions&lt;br /&gt;
:* Added [[pathListDir]], [[pathIsFile]] and [[pathIsDirectory]] ([https://github.com/multitheftauto/mtasa-blue/commit/74781c6295b5b6dc81cd95d4cfab7900d88d7524 74781c6] by '''Tracer''')&lt;br /&gt;
&lt;br /&gt;
* New [[marker]] functions&lt;br /&gt;
:* Added [[setMarkerTargetArrowProperties]] and [[getMarkerTargetArrowProperties]] ([https://github.com/multitheftauto/mtasa-blue/commit/071378ec4326408a9520c79c96befca995d097f6 071378e] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[timer]] functions&lt;br /&gt;
:* Added [[setTimerPaused]] and [[isTimerPaused]] ([https://github.com/multitheftauto/mtasa-blue/commit/69aa420f21fde3ac56e3d3bbc62ef0f060295c0a 69aa420] by '''jvstns''')&lt;br /&gt;
&lt;br /&gt;
* New and updated '''world''' functions&lt;br /&gt;
:* '''[New]''' Added [[resetWorldProperties]] ([https://github.com/multitheftauto/mtasa-blue/commit/6df889e78328b80f8e4bdc02f8761472cf87c54c 6df889e] by '''FileEX''')&lt;br /&gt;
:* '''[Updated]''' Added [[isWorldSpecialPropertyEnabled]] and [[setWorldSpecialPropertyEnabled]] also to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
&lt;br /&gt;
* New and updated [[vehicle]] functions&lt;br /&gt;
:* '''[New]''' Added [[spawnVehicleFlyingComponent]] ([https://github.com/multitheftauto/mtasa-blue/commit/9f54cfcd7a584f413db731052ebed921acfc71ea 9f54cfc] by '''FileEX''')&lt;br /&gt;
:* '''[Upated]''' Added [[setVehicleNitroActivated]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/e9e5819c394987de2b9a5d581c4df9fd47057d9d#diff-49b4b89bf4463f38e70a325131b4da66457d783b1401dde0ffbad723624f8612R130 e9e5819] by '''Proxy-99''')&lt;br /&gt;
:* '''[Updated]''' Added [[addVehicleSirens]] and [[removeVehicleSirens]] to client-side ([https://github.com/multitheftauto/mtasa-blue/commit/682cdca3c37248a9e725b461ba322db413653f25 682cdca] by '''Proxy-99''')&lt;br /&gt;
&lt;br /&gt;
* Updated [[player]] functions&lt;br /&gt;
:* Added [[getPlayerScriptDebugLevel]] to client-side ([https://github.com/multitheftauto/mtasa-blue/commit/8403da54ecfd20d6b9740fb79d90ac936d316112 8403da5] by '''Nico834''')&lt;br /&gt;
&lt;br /&gt;
* Updated [[ped]] functions&lt;br /&gt;
:* Added [[isPedReloadingWeapon]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/e71f4828b46bb69b9622a11d0f700a79f986ee9b e71f482] by '''Nico834''')&lt;br /&gt;
&lt;br /&gt;
* New [[element]] functions&lt;br /&gt;
:* Added [[setElementOnFire]] and [[isElementOnFire]] ([https://github.com/multitheftauto/mtasa-blue/commit/7ad96e2e78fe41f8924d3f105b1683f7363c6fcb 7ad96e2] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
=== Client ===&lt;br /&gt;
====Functions====&lt;br /&gt;
* New '''engine''' functions &lt;br /&gt;
:* Added '''streaming''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/7ffc31243c1dbca8ed5e7b0f8c05da239aa918bd 7ffc312], [https://github.com/multitheftauto/mtasa-blue/commit/6c86ebbf0801c45d5e0bcbb9d9f2e8fd55525b15 6c86ebb], [https://github.com/multitheftauto/mtasa-blue/commit/3c44dc5dcde0a5f98ff470ce9bc64443d47de807 3c44dc5] by '''Pirulax''')&lt;br /&gt;
::* [[engineStreamingSetMemorySize]]&lt;br /&gt;
::* [[engineStreamingGetMemorySize]]&lt;br /&gt;
::* [[engineStreamingRestoreMemorySize]]&lt;br /&gt;
::* [[engineStreamingSetBufferSize]]&lt;br /&gt;
::* [[engineStreamingGetBufferSize]]&lt;br /&gt;
::* [[engineStreamingRestoreBufferSize]]&lt;br /&gt;
::* [[engineStreamingSetModelCacheLimits]]&lt;br /&gt;
:* Added '''model-streaming''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/008eaa7e36ae74bbab7c5bc9861d8f0f890eb945 008eaa7] by '''TheNormalnij''')&lt;br /&gt;
::* [[engineStreamingRequestModel]]&lt;br /&gt;
::* [[engineStreamingReleaseModel]]&lt;br /&gt;
::* [[engineStreamingGetModelLoadState]]&lt;br /&gt;
:* Added new '''TXD''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/3e9a3735a8022a0acabaa3041c8a3f8d91e547b7 3e9a373] by '''TheNormalnij''')&lt;br /&gt;
::* [[engineSetModelTXDID]]&lt;br /&gt;
::* [[engineResetModelTXDID]]&lt;br /&gt;
:* Added '''pools''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/bdf12215d1f6e73d87f5cb0881049aa224b46b65 bdf1221] by '''TheNormalnij''')&lt;br /&gt;
::* [[engineGetPoolCapacity]]&lt;br /&gt;
::* [[engineSetPoolCapacity]]&lt;br /&gt;
::* [[engineGetPoolDefaultCapacity]]&lt;br /&gt;
::* [[engineGetPoolUsedCapacity]]&lt;br /&gt;
:* Added [[enginePreloadWorldArea]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b72fb9d3c9e6813cdf56e53d1a1e72958abd3cf 5b72fb9] by '''MegadreamsBE''')&lt;br /&gt;
&lt;br /&gt;
* New functions for '''Discord RPC''' ([https://github.com/multitheftauto/mtasa-blue/commit/fdaa3aca3e233c7aba69d0fd5f85e78288a4401a fdaa3ac], [https://github.com/multitheftauto/mtasa-blue/commit/ef26810df4542283fee8edcc165bc9be22f2ca98 ef26810], [https://github.com/multitheftauto/mtasa-blue/commit/acfbd40df1ff1432ea1d6663c005d43fce22899c acfbd40] by '''znjvder''', '''tederis''', '''patrikjuvonen''' and '''Deihim007''')&lt;br /&gt;
:* [[setDiscordApplicationID]]&lt;br /&gt;
:* [[setDiscordRichPresenceDetails]]&lt;br /&gt;
:* [[setDiscordRichPresenceState]]&lt;br /&gt;
:* [[setDiscordRichPresenceAsset]]&lt;br /&gt;
:* [[setDiscordRichPresenceSmallAsset]]&lt;br /&gt;
:* [[setDiscordRichPresenceButton]]&lt;br /&gt;
:* [[resetDiscordRichPresenceData]]&lt;br /&gt;
:* [[isDiscordRichPresenceConnected]]&lt;br /&gt;
:* [[setDiscordRichPresencePartySize]]&lt;br /&gt;
:* [[setDiscordRichPresenceStartTime]]&lt;br /&gt;
:* [[setDiscordRichPresenceEndTime]]&lt;br /&gt;
:* [[getDiscordRichPresenceUserID]]&lt;br /&gt;
&lt;br /&gt;
* New [[building]] functions ([https://github.com/multitheftauto/mtasa-blue/commit/81242edb9295efbf4bf8b198b12d577a0877aec2 81242ed], [https://github.com/multitheftauto/mtasa-blue/commit/eb6b18a5d49a7f0f34bdbf42b15f933e42876cf8 eb6b18a] by '''TheNormalnij''')&lt;br /&gt;
:* [[createBuilding]]&lt;br /&gt;
:* '''[Deprecated]''' [[removeAllGameBuildings]] &lt;br /&gt;
:* '''[Deprecated]''' [[restoreAllGameBuildings]] &lt;br /&gt;
&lt;br /&gt;
* New '''world''' functions&lt;br /&gt;
:* Added [[processLineAgainstMesh]] ([https://github.com/multitheftauto/mtasa-blue/commit/acb80a3945d0d5e0230b8a41394a3fe3e70b8d0b acb80a3] by '''Pirulax''')&lt;br /&gt;
:* Added '''volumetric shadows''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/6c93a49c4c2381f4ce84df195d98d36372a47d37 6c93a49] by '''Proxy-99''')&lt;br /&gt;
:::* [[setVolumetricShadowsEnabled]]&lt;br /&gt;
:::* [[isVolumetricShadowsEnabled]]&lt;br /&gt;
:::* [[resetVolumetricShadows]]&lt;br /&gt;
:* Added [[testSphereAgainstWorld]] ([https://github.com/multitheftauto/mtasa-blue/commit/aa90aa5f31e59df455af33b49e3eee5e4f107bfd aa90aa5] by '''FileEX''')&lt;br /&gt;
:* Added [[removeGameWorld]] and [[restoreGameWorld]] ([https://github.com/multitheftauto/mtasa-blue/commit/d7adae68791ce237704acc06bf794b5fbda96f95 d7adae6] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
* New '''drawing''' functions&lt;br /&gt;
:* Added [[dxDrawModel3D]] ([https://github.com/multitheftauto/mtasa-blue/commit/f886a359dd4a680c080da7f132db0527116b5d7a f886a35], [https://github.com/multitheftauto/mtasa-blue/commit/04ef14bbf2182b356155f28d4ed972b0f293632f 04ef14b] by '''CrosRoad95''' and '''tederis''')&lt;br /&gt;
&lt;br /&gt;
* New '''effects/fx''' functions&lt;br /&gt;
:* Added [[fxCreateParticle]] ([https://github.com/multitheftauto/mtasa-blue/commit/8f2730d2e260c3319cb51101c6aedb45e22bbd89 8f2730d] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[ped]] functions&lt;br /&gt;
:* Added [[resetPedVoice]] ([https://github.com/multitheftauto/mtasa-blue/commit/18986a4542db5eb72f6d0dfffb80cb8bb6eb1442 18986a4] by '''Tracer''')&lt;br /&gt;
:* Added new animation features ([https://github.com/multitheftauto/mtasa-blue/commit/aa0591c6f7b529a27b4ed8667e1dc70e68bd9386 aa0591c] by '''Tracer''')&lt;br /&gt;
::* [[getPedAnimationProgress]]&lt;br /&gt;
::* [[getPedAnimationSpeed]]&lt;br /&gt;
::* [[getPedAnimationLength]]&lt;br /&gt;
:* Added [[killPedTask]] ([https://github.com/multitheftauto/mtasa-blue/commit/e4a502bc7619dc3913c70d169f6105ecfb0633ff e4a502b] by '''Proxy-99''')&lt;br /&gt;
:* Added ped shadow features ([https://github.com/multitheftauto/mtasa-blue/commit/26d18288730fd3a7a854152da60c9acd18ab6c6f 26d1828] by '''Proxy-99''')&lt;br /&gt;
::* [[setDynamicPedShadowsEnabled]]&lt;br /&gt;
::* [[isDynamicPedShadowsEnabled]]&lt;br /&gt;
::* [[resetDynamicPedShadows]]&lt;br /&gt;
:* Added [[playPedVoiceLine]] ([https://github.com/multitheftauto/mtasa-blue/commit/7067ac1a73bb0b8c5a1f37794504a00e9703332e 7067ac1] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[player]] functions&lt;br /&gt;
:* Added [[isPlayerCrosshairVisible]] ([https://github.com/multitheftauto/mtasa-blue/commit/03e851a2f5ff2d917ba3c7a1c7577fdb5b8d2a6f 03e851a], [https://github.com/multitheftauto/mtasa-blue/commit/5f21c32fb0725140d6d03476e08de330d429b55a 5f21c32] by '''FileEX''')&lt;br /&gt;
:* New '''HUD''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/5ea0e0fb23b21750207b23191db92562cf9b822c 5ea0e0f] by '''FileEX''')&lt;br /&gt;
::* [[setPlayerHudComponentProperty]]&lt;br /&gt;
::* [[getPlayerHudComponentProperty]]&lt;br /&gt;
::* [[resetPlayerHudComponentProperty]]&lt;br /&gt;
&lt;br /&gt;
* New [[vehicle]] functions&lt;br /&gt;
:* Added [[setVehicleWheelsRotation]] ([https://github.com/multitheftauto/mtasa-blue/commit/aeb113d269fffee7d9ac435ce87b51e905e9efa6 aeb113d] by '''gta191977649''')&lt;br /&gt;
:* Added [[getVehicleEntryPoints]] ([https://github.com/multitheftauto/mtasa-blue/commit/bf588c163cd5bc134771e3842a6585212f06307f bf588c1] by '''MegadreamsBE''')&lt;br /&gt;
:* Added [[setVehicleSmokeTrailEnabled]] and [[isVehicleSmokeTrailEnabled]] for planes ([https://github.com/multitheftauto/mtasa-blue/commit/a5dfc5223358127299511b618ab29da08ff23030 a5dfc52] by '''Proxy-99''')&lt;br /&gt;
:* Added [[setVehicleRotorState]] and [[getVehicleRotorState]] for planes and helicopters ([https://github.com/multitheftauto/mtasa-blue/commit/c7644f2773c37c4e3d40b00807f2e962daca83b6#diff-9a175949acc865a4deea435d73c2082716ab68c6811ef1a657783f3d420dc00fR165 c7644f2] by '''FileEX''')&lt;br /&gt;
:* Added '''vehicle audio''' functions: ([https://github.com/multitheftauto/mtasa-blue/commit/53ee579670ef4ecec28f44627ff99321bba48cbd 53ee579] by '''TheNormalnij''')&lt;br /&gt;
::* [[setVehicleModelAudioSetting]]&lt;br /&gt;
::* [[getVehicleModelAudioSettings]]&lt;br /&gt;
::* [[resetVehicleModelAudioSettings]]&lt;br /&gt;
::* [[setVehicleAudioSetting]]&lt;br /&gt;
::* [[getVehicleAudioSettings]]&lt;br /&gt;
::* [[resetVehicleAudioSettings]]&lt;br /&gt;
&lt;br /&gt;
* New '''camera''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/40ec398bb15e775d1552286eb86fe7aa0dffefa4 40ec398], [https://github.com/multitheftauto/mtasa-blue/commit/d9c2793de2a9f0782ec59cf0ef9907abf935d421 d9c2793] by '''Tracer''')&lt;br /&gt;
:* [[shakeCamera]]&lt;br /&gt;
:* [[resetShakeCamera]]&lt;br /&gt;
&lt;br /&gt;
* New '''game-time''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/b8b7ce555e2f0f0dd74425ac7c91786374513bee b8b7ce5] by '''Proxy-99''')&lt;br /&gt;
:* [[setTimeFrozen]]&lt;br /&gt;
:* [[isTimeFrozen]]&lt;br /&gt;
:* [[resetTimeFrozen]]&lt;br /&gt;
&lt;br /&gt;
* New [[element]] functions&lt;br /&gt;
:* Added [[setElementBoneQuaternion]] and [[getElementBoneQuaternion]] ([https://github.com/multitheftauto/mtasa-blue/commit/10098b0984bf5d5955ea1764e28f616c8a60714f 10098b0] by '''gownosatana''')&lt;br /&gt;
:* Added [[setElementLighting]] ([https://github.com/multitheftauto/mtasa-blue/commit/90fd98a6381991cfa926a9a65b9b934d0343e2b1 90fd98a] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[browser]] functions&lt;br /&gt;
:* Added [[isBrowserGPUEnabled]] ([https://github.com/multitheftauto/mtasa-blue/commit/bfdfdb5f44726df85626e6e3e06c2a319c0c8962 bfdfdb5] by '''Lpsd''')&lt;br /&gt;
&lt;br /&gt;
* New '''weapons''' functions&lt;br /&gt;
:* Added [[setWeaponRenderEnabled]] &amp;amp; [[isWeaponRenderEnabled]] ([https://github.com/multitheftauto/mtasa-blue/commit/efed59b7dc7b076219f1c8a868ef8aa028582127 efed59b] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
====Events====&lt;br /&gt;
* Added [[onClientCoreCommand]] ([https://github.com/multitheftauto/mtasa-blue/commit/b2cf02943924c4972d2a695cdbfd7c9873fc3cbb b2cf029] by '''Pieter-Dewachter''')&lt;br /&gt;
&lt;br /&gt;
* Added [[onClientBrowserConsoleMessage]] ([https://github.com/multitheftauto/mtasa-blue/pull/3676 #3676], [https://github.com/multitheftauto/mtasa-blue/commit/d296a653c5ce2ecfd4f7150d74391b703b773baf d296a65] by '''gownosatana''' and '''Tracer''')&lt;br /&gt;
&lt;br /&gt;
=== Server ===&lt;br /&gt;
====Functions====&lt;br /&gt;
* New [[ACL]] functions&lt;br /&gt;
:* Added [[aclObjectGetGroups]] ([https://github.com/multitheftauto/mtasa-blue/commit/cf46bd8487bdb2d0cafdab1f43936357f670fe10 cf46bd8] by '''Tracer''')&lt;br /&gt;
&lt;br /&gt;
* New '''acl-account''' functions&lt;br /&gt;
:* Added [[getAccountType]] ([https://github.com/multitheftauto/mtasa-blue/commit/545f54b6ae0bfc721abba12402ad3787ed9ae811 545f54b] by '''Tracer''')&lt;br /&gt;
:* Added [[setAccountSerial]] ([https://github.com/multitheftauto/mtasa-blue/commit/a0c2e410f225ebd245a7c5b8031812cf94360097 a0c2e41] by '''camargo2019''')&lt;br /&gt;
&lt;br /&gt;
* New [[vehicle]] functions&lt;br /&gt;
:* Added new vehicle respawn functions ([https://github.com/multitheftauto/mtasa-blue/commit/1ff7137fd4477626d7ef4abfb1c696872cdf0eab 1ff7137], [https://github.com/multitheftauto/mtasa-blue/commit/d93287de761e568400b3b555a277e4ead6546ca3 d93287d] by '''Tracer''')&lt;br /&gt;
::* [[isVehicleRespawnable]]&lt;br /&gt;
::* [[getVehicleRespawnDelay]]&lt;br /&gt;
::* [[getVehicleIdleRespawnDelay]]&lt;br /&gt;
&lt;br /&gt;
* Added [[createBuilding]] to server-side also ([https://github.com/multitheftauto/mtasa-blue/commit/6e221298f4998c576ebf5a783cd0761b89117a7a 6e22129] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
* Security improvements for element-data system ([https://github.com/multitheftauto/mtasa-blue/commit/750d09adb9fd35f4c1b7786966b7ca292e35c200 750d09a] by '''TheNormalnij''')&lt;br /&gt;
:* Added [[onPlayerChangesProtectedData]] event&lt;br /&gt;
:* Added '''elementdata_whitelisted''' tag to the '''mtaserver.conf'''&lt;br /&gt;
:* Added '''clientChangesPolicy''' argument to the [[setElementData]].&lt;br /&gt;
&lt;br /&gt;
* Added new [[Server_mtaserver.conf|mta_server.conf]] tags:&lt;br /&gt;
&amp;lt;!--:* Added object specific contact radius and limit contact check. This can be set in the [[server_mtaserver.conf#object_contact_sync_radius|mtaserver.conf]]([https://github.com/multitheftauto/mtasa-blue/commit/6085796cafd1008ed4a74eae614d651c6c734741 6085796] by '''MegadreamsBE''')--&amp;gt;&lt;br /&gt;
:* Added [[Server_mtaserver.conf#vehicle_contact_sync_radius#vehicle_contact_sync_radius|vehicle_contact_sync_radius]] tag ([https://github.com/multitheftauto/mtasa-blue/commit/e3338c2fbbdb500c4ce28dc0677ceadef1f1ca4c e3338c2] by '''MegadreamsBE''')&lt;br /&gt;
:* Added [[Server_mtaserver.conf#vehicle_contact_sync_radius#check_duplicate_serials|check_duplicate_serials]] tag ([https://github.com/multitheftauto/mtasa-blue/commit/e094942b75117a49cae8c35d6508f37d0cf511fe e094942] by '''Nico834''')&lt;br /&gt;
:* Added [[Server_mtaserver.conf#vehicle_contact_sync_radius#elementdata_whitelisted|elementdata_whitelisted]] tag [https://github.com/multitheftauto/mtasa-blue/commit/750d09adb9fd35f4c1b7786966b7ca292e35c200 750d09a] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
====Events====&lt;br /&gt;
* Added [[onExplosion]] event ([https://github.com/multitheftauto/mtasa-blue/commit/9edffc4997579583407e8c2910264b344cf626a3 9edffc4] by '''botder''')&lt;br /&gt;
* Added [[onPlayerProjectileCreation]] and [[onPlayerDetonateSatchels]] events ([https://github.com/multitheftauto/mtasa-blue/commit/bc404021f66228fb00f1f136a606425da6075daa bc40402] by '''Zangomangu''')&lt;br /&gt;
* Added [[onPlayerTriggerEventThreshold]] event ([https://github.com/multitheftauto/mtasa-blue/commit/eae47fe2f432d9053c425fd515ea27f963c254ec eae47fe] by '''Lpsd''')&lt;br /&gt;
* Added [[onResourceStateChange]] ([https://github.com/multitheftauto/mtasa-blue/commit/cfe9cd9d0006580e7e70dc9e93672e3d1d3b9836 cfe9cd9] by '''Tracer''')&lt;br /&gt;
* Added [[onPlayerTeamChange]] ([https://github.com/multitheftauto/mtasa-blue/commit/c4e18c618db299ea05f5395c798f2a7d6515f5ea c4e18c6] by '''esmail9900''')&lt;br /&gt;
* Added [[onAccountCreate]] and [[onAccountRemove]] ([https://github.com/multitheftauto/mtasa-blue/commit/545f54b6ae0bfc721abba12402ad3787ed9ae811 545f54b] by '''Tracer''')&lt;br /&gt;
* Added [[onPlayerTriggerInvalidEvent]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b4122d35f725e4d258b408253c93e7cbd2ec783 5b4122d] by '''Lpsd''')&lt;br /&gt;
* Added [[onPlayerChangesWorldSpecialProperty]] event ([https://github.com/multitheftauto/mtasa-blue/commit/bbf511d4c5a94fc42d4ead201446fcef8ae430ec bbf511d] by '''Nico834''')&lt;br /&gt;
* Added [[onPlayerChangesProtectedData]] event ([https://github.com/multitheftauto/mtasa-blue/commit/750d09adb9fd35f4c1b7786966b7ca292e35c200 750d09a] by '''TheNormalnij''')&lt;br /&gt;
* Added [[onShutdown]] ([https://github.com/multitheftauto/mtasa-blue/commit/aa20c7d279ac92f1f98c54e79fda7fe00de64e50 aa20c7d] by '''FileEX''')&lt;br /&gt;
* Added [[onPedWeaponReload]] and [[onPlayerWeaponReload]] ([https://github.com/multitheftauto/mtasa-blue/commit/e71f4828b46bb69b9622a11d0f700a79f986ee9b e71f482] by '''Nico834''')&lt;br /&gt;
* Added [[onPlayerTeleport]] ([https://github.com/multitheftauto/mtasa-blue/commit/4000ea4edb37d2d2caeb60a5977f7a38c8a22f06 a38e6ac] by '''imfelipedev''')&lt;br /&gt;
* Added [[onAccountNameChange]] ([https://github.com/multitheftauto/mtasa-blue/commit/078d46b13164c940f3a713039e1a1be6d52c6c76 078d46b] by '''Davis22d''')&lt;br /&gt;
&lt;br /&gt;
== 77 Changes and Bug Fixes ==&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Fixed random toggle of world special properties ([https://github.com/multitheftauto/mtasa-blue/commit/bf95b1d16e31f36899350e2acac4bb8adfad5cdd bf95b1d] by '''samr46''')&lt;br /&gt;
* Many debugscript fixes&lt;br /&gt;
:* Fixed [[onClientDebugMessage]]/[[onDebugMessage]] recognizing level 4 as 0 ([https://github.com/multitheftauto/mtasa-blue/commit/783971efbdfcae622dbc03fd7647c337c2a3a306 783971e] by '''Tracer''')&lt;br /&gt;
:* Fixed outputDebugString level 4 colors ([https://github.com/multitheftauto/mtasa-blue/commit/5d4d7df3b8ff703cf954f3af394c811c489dcb18 5d4d7df] by '''MegadreamsBE''')&lt;br /&gt;
:* Fixed [[outputDebugString]] level 4 not being logged ([https://github.com/multitheftauto/mtasa-blue/commit/1951a5e62d35b2cf4ec292d294f8c818b8463418 1951a5e] by '''MegadreamsBE''')&lt;br /&gt;
:* Fixed outputDebugString with level 4 not showing ([https://github.com/multitheftauto/mtasa-blue/commit/b459973f8ad00aff79042a338a70700a21b426dc b459973] by '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
* Ped sync improvements ([https://github.com/multitheftauto/mtasa-blue/commit/f5b599c9f45777f924f7980cadb2d3cc6431d8b8 f5b599c] by '''tederis''')&lt;br /&gt;
* Fixed &amp;quot;Using setElementHealth on a dead ped makes it invincible&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/836888379dc3e434752ad20c10a8d7d33ffc65a2 8368883] by '''FileEX''')&lt;br /&gt;
* Fixed setting player model resets their current weapon slot ([https://github.com/multitheftauto/mtasa-blue/commit/f7ce562b645cb05a18658df62d093b753b881bb9 f7ce562] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where ''&amp;quot;arrow&amp;quot;'' and ''&amp;quot;checkpoint&amp;quot;'' markers ignored the alpha color ([https://github.com/multitheftauto/mtasa-blue/commit/7988852cf3af9e78f662d76544dc00db408b5c87 7988852] by '''FileEX''')&lt;br /&gt;
* Fixed the goggle effect resetting after changing skin ([https://github.com/multitheftauto/mtasa-blue/commit/1dd291409f791891b54ccf6b1d1cebe08cff13c0 1dd2914] by '''Proxy-99''')&lt;br /&gt;
* Fixed satchels detaching after changing skin ([https://github.com/multitheftauto/mtasa-blue/commit/d93dbf2ca598bf3508364bc7c6337d82c3d9ccb2 d93dbf2] by '''FileEX''')&lt;br /&gt;
* Added '''resourceName''' global variable and added current resource as default argument for [[getResourceName]] ([https://github.com/multitheftauto/mtasa-blue/commit/49fb6c68a27ad85e5abcd563f4c4f8c568305fdb 49fb6c6] by '''Nico834''')&lt;br /&gt;
* Added new parameters '''animGroup''' &amp;amp; '''animID''' for wasted events [[onPlayerWasted]], [[onPedWasted]], [[onClientPlayerWasted]] ([https://github.com/multitheftauto/mtasa-blue/commit/ecd6ed98ca129e7f45bda14384a503bee09495a7 ecd6ed9] by '''Nico834''' and '''G-Moris''')&lt;br /&gt;
* Added optional '''ignoreAlphaLimits''' argument for [[createMarker]] to maintain backward compatibility after adding the ability to change alpha for arrow and checkpoint markers ([https://github.com/multitheftauto/mtasa-blue/commit/121048cb9a14c28dcefca9bf2d4e955ef920a087 121048c] by '''FileEX''')&lt;br /&gt;
* Added optional '''property''' argument for [[getVehicleHandling]] ([https://github.com/multitheftauto/mtasa-blue/commit/a08e38d6507fdc1c051c2b84727c83dd9c418649 a08e38d] by '''XJMLN''')&lt;br /&gt;
* Fixed health value issues ([https://github.com/multitheftauto/mtasa-blue/commit/612f9a6715059baa43182e891258d9c3ceb19591 612f9a6] by '''Tracer''')&lt;br /&gt;
* Fixed [[getTimerDetails]] negative remaining duration ([https://github.com/multitheftauto/mtasa-blue/commit/1c6cab5a94c8c6ff5cf9b1fc0c9bc04808c922f8 1c6cab5] by '''jvstns''')&lt;br /&gt;
* Fixed changing [[setElementCollisionsEnabled]] doesn't update contact element ([https://github.com/multitheftauto/mtasa-blue/commit/71c683f547aac34e876601d24c881227fe3ca05f 71c683f] by '''FileEX''')&lt;br /&gt;
* Removed ability to skip [[addDebugHook]] ([https://github.com/multitheftauto/mtasa-blue/commit/2fecd74fdd453efdcbdddfd8f3fa3c092640cf9f 2fecd74] by '''PlatinMTA''')&lt;br /&gt;
* Fixed hydraulics stopping working after using [[setVehicleHandling]] ([https://github.com/multitheftauto/mtasa-blue/commit/f96836397a075585d4d112eb7d0240f1abf361d4 f968363] by '''FileEX''')&lt;br /&gt;
* Fixed helicopter rotor unaffected by vehicle alpha ([https://github.com/multitheftauto/mtasa-blue/commit/55d39225254c0b9961c1423b0d5695beff20072b 55d3922] by '''FileEX''')&lt;br /&gt;
* Add '''spawnFlyingComponent &amp;amp; breakGlass''' arguments for [[setVehiclePanelState]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b69d700c848e36b2f427bbc6ba5b2c905592783 5b69d70] by '''FileEX''')&lt;br /&gt;
* Fixed armor synchronization ([https://github.com/multitheftauto/mtasa-blue/commit/583e675da976fbf90f45804ad834d8fe33c779a1 583e675] by '''Nico834''')&lt;br /&gt;
* Fixed jetpack disappearing after changing position and coming back after changing skin ([https://github.com/multitheftauto/mtasa-blue/commit/de26a9e98519350f0486290ce886595068c02470 de26a9e] by '''FileEX''')&lt;br /&gt;
* Added support for '''ZLIB''' compression to [[encodeString]] &amp;amp; [[decodeString]]. ([https://github.com/multitheftauto/mtasa-blue/commit/6230161f8d0c83b60aec3f4afa5be88dd213b88b 6230161] by '''samr46''')&lt;br /&gt;
* Fixed a bug where hex color codes were included in the chat message length. ([https://github.com/multitheftauto/mtasa-blue/commit/9a0b1d59233f7001e991262b4df9d1c17850dc08 9a0b1d5] by '''shadylua''')&lt;br /&gt;
&lt;br /&gt;
=== Client ===&lt;br /&gt;
* Update d3dcompiler_47.dll from CEF ([https://github.com/multitheftauto/mtasa-blue/commit/75a1a298113721343090a06d60394f63f64df9ca 75a1a29] and [https://github.com/multitheftauto/mtasa-blue/commit/6d8fd8cc2fe7377318583f70abf58dcdb7d09cb0 6d8fd8c] by '''patrikjuvonen''')&lt;br /&gt;
* Updated translations from Crowdin ([https://github.com/multitheftauto/mtasa-blue/commit/29baf29a0143706eb08ef76c4743a452a7f83600 29baf29] by '''patrikjuvonen''')&lt;br /&gt;
:* Added Azerbaijani to client languages&lt;br /&gt;
* Resolved cursor being invisible with main menu open in certain scenarios ([https://github.com/multitheftauto/mtasa-blue/commit/bb1f675e6fee0ca3967f05afb5d2592dec9459b2 bb1f675] by '''Lpsd''')&lt;br /&gt;
* Partially fixed screen flickering on high memory usage ([https://github.com/multitheftauto/mtasa-blue/commit/1a886460a9fab1041cfba38078ae544b0fa51240 1a88646] by '''Zangomangu''')&lt;br /&gt;
* Added ''texture hit info'' parameter to [[processLineOfSight]] ([https://github.com/multitheftauto/mtasa-blue/commit/86f3344d1371a9783c2c7b755b895160a03ff6cd 86f3344] by '''Pirulax''')&lt;br /&gt;
* Fixed CStreamingSA::GetUnusedStreamHandle ([https://github.com/multitheftauto/mtasa-blue/commit/38624a4c2d18f4b60064d49069d3bcd81fbb4385 38624a4] by '''tederis''')&lt;br /&gt;
* IMG count extension ([https://github.com/multitheftauto/mtasa-blue/commit/1a60f6094b6660d29cabae780e6fbea5f5f1abf2 1a60f60] by '''tederis''')&lt;br /&gt;
* Fixed a desync state after aborted carjacking ([https://github.com/multitheftauto/mtasa-blue/commit/3f510fcdc7722cdfcb2e09ea43990b56aa43162b 3f510fc] by '''Zangomangu''')&lt;br /&gt;
* Allowed allocating clump models ([https://github.com/multitheftauto/mtasa-blue/commit/428561f1ebab49b8370ef0f022510cd67e98ab59 428561f] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash in CEF init ([https://github.com/multitheftauto/mtasa-blue/commit/c782826c955dfbdbaa67852a245e1c601d6b9f2c c782826] by '''TheNormalnij''')&lt;br /&gt;
* Fixed &amp;quot;Changing vehicle model from doorless or &amp;quot;doorful&amp;quot; causes doors to fall off&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/d6659dae263e2883d9e479ca271f0e9c8e622f95 d6659da] by '''FileEX''')&lt;br /&gt;
* Fixed &amp;quot;Wheel visibility when using setVehicleWheelStates&amp;quot;  ([https://github.com/multitheftauto/mtasa-blue/commit/51c9257a427957642932a216bd76cb7de59fea1b 51c9257] by '''FileEX''')&lt;br /&gt;
* Added new world special property ''burnflippedcars'' ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
* Streaming buffer restore and fixes ([https://github.com/multitheftauto/mtasa-blue/commit/6c86ebbf0801c45d5e0bcbb9d9f2e8fd55525b15 6c86ebb] by '''Pirulax''')&lt;br /&gt;
* Fixed Unicode file path passed in CClientIMG ([https://github.com/multitheftauto/mtasa-blue/commit/c57f07bfad8b02953dbe7b2b6e9b9de08ba88226 c57f07b] by '''TheNormalnij''')&lt;br /&gt;
* Added new world special property ''fireballdestruct'' ([https://github.com/multitheftauto/mtasa-blue/commit/219ad73d600140724eefcf5ca4040ac417cdee12 219ad73] by '''samr46''')&lt;br /&gt;
* Fixed &amp;quot;Hide question box when hiding main menu&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/4beff0447f093c66594a5f32ad5e52c7d7188ce9 4beff04] by '''XJMLN''')&lt;br /&gt;
* Fixed engineFreeModel regression ([https://github.com/multitheftauto/mtasa-blue/commit/b52500e92fb2591c092a6e66121471f098a2e044 b52500e] by '''TheNormalnij''')&lt;br /&gt;
* Fixed assert when model info is missing ([https://github.com/multitheftauto/mtasa-blue/commit/d431e5e16120b63beafbfe69110da601d12a76bb d431e5e] by '''TheNormalnij''')&lt;br /&gt;
* Fixed engineFreeModel crashes ([https://github.com/multitheftauto/mtasa-blue/commit/c289c22fb9a13730b7fd793752d84adbf2b928ee c289c22] by '''TheNormalnij''')&lt;br /&gt;
* Filtered URLs in requestBrowserDomains with incorrect symbols ([https://github.com/multitheftauto/mtasa-blue/commit/74bbb068acc6757ff0e04d0c63b999236e51ce63 74bbb06] by '''TheNormalnij''')&lt;br /&gt;
* Fixed issues with ped shaders ([https://github.com/multitheftauto/mtasa-blue/commit/3bc1e6d98ab13a9e7db95cc616b4645dc761889b 3bc1e6d] by '''Merlin''')&lt;br /&gt;
* Fixed 3D primitives disappearing ([https://github.com/multitheftauto/mtasa-blue/commit/04a1e2ba9157e4a1a91297f91554b72a87bf0ed4 04a1e2b] by '''tederis''')&lt;br /&gt;
* Fixed [[svgSetSize]] issues ([https://github.com/multitheftauto/mtasa-blue/commit/721c2b6d0f0c4ab016be079f1d4e28dec0123a6d 721c2b6] by '''Nico834''')&lt;br /&gt;
* Fixed the marker flickering issue during water cannon effects ([https://github.com/multitheftauto/mtasa-blue/commit/e83f700ee24904c0411b4dad3e695b3c3e30d9e4 e83f700] by '''Merlin''')&lt;br /&gt;
* Fixed buildings removal ([https://github.com/multitheftauto/mtasa-blue/commit/1b40db7cb5b63966ee97d0cbe79190360e1d32a0 1b40db7] by '''tederis''')&lt;br /&gt;
* Fixed crashes caused by [[createBuilding]] with [[engineRequestModel]] ([https://github.com/multitheftauto/mtasa-blue/commit/6245a68f3d97fc222d78fbc66b67f422a13710bf 6245a68] by '''TheNormalnij''')&lt;br /&gt;
* Fixed wrong getModelMatrix result for buildings ([https://github.com/multitheftauto/mtasa-blue/commit/f691946bc2d3dac75bd27d31886cd6b66d55811d f691946] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crashes for ''timed-object'' in [[engineRequestModel]] ([https://github.com/multitheftauto/mtasa-blue/commit/229389a4bd1c4c02010ba27ce26a428b41b68560 229389a] by '''TheNormalnij''')&lt;br /&gt;
* Fixed incorrect colors for 3D draws ([https://github.com/multitheftauto/mtasa-blue/commit/1f2c6e75fb71b01f0053f151e766a232ed33692b 1f2c6e7] by '''Nico834''')&lt;br /&gt;
* Add missing definition GuiGridList::getColumnWidth ([https://github.com/multitheftauto/mtasa-blue/commit/b34b1d5362291bcf00c7a0a0b694f60e1dccb363 b34b1d5] by '''Lpsd''')&lt;br /&gt;
* Fixed [[resetPedVoice]] not working at all ([https://github.com/multitheftauto/mtasa-blue/commit/3d8bd504f009fc2aa66e1dc9d35427a889ccd6aa 3d8bd50] by '''Tracer''')&lt;br /&gt;
* Added LOD support for buildings ([https://github.com/multitheftauto/mtasa-blue/commit/77ab3e64a3c6dacdcee02a223b67aec6c5b97ec2 77ab3e6] by '''TheNormalnij''')&lt;br /&gt;
* Added render stages for 3D primitives (new ''stage'' parameter) ([https://github.com/multitheftauto/mtasa-blue/commit/841447684c2d1992656555f81d73da52b2ce5c4f 8414476] by '''tederis''')&lt;br /&gt;
* Added disable option for [[engineSetModelPhysicalPropertiesGroup]] ([https://github.com/multitheftauto/mtasa-blue/commit/b6216cad058582b0feb34e98e94531d4acbf7c5b b6216ca] by '''TheNormalnij''')&lt;br /&gt;
* Fixed return correct value for stuntDistance parameter ([https://github.com/multitheftauto/mtasa-blue/commit/1f464d61c8c5f1400faa5472ccb67d2436d52903 1f464d6] by '''XJMLN''')&lt;br /&gt;
* Fixed [[engineRestoreModelPhysicalPropertiesGroup]] restores incorrect group ([https://github.com/multitheftauto/mtasa-blue/commit/291dfb4bc9bd72307a4ba4b42ffcbfc03ded4e38 291dfb4] by '''TheNormalnij''')&lt;br /&gt;
* Fixed OGG sound files can't be played as RAW data ([https://github.com/multitheftauto/mtasa-blue/commit/2764b7983c4e1bde20b894ebcfef5f230b149030 2764b79] by '''FileEX''')&lt;br /&gt;
* Implement [[getElementBoundingBox]] for buildings ([https://github.com/multitheftauto/mtasa-blue/commit/7b228daea3e0dc22d808abcf0eb568d99efcf63d 7b228da] by '''TheNormalnij''')&lt;br /&gt;
* Fixed streaming size check after [[engineAddImage]] ([https://github.com/multitheftauto/mtasa-blue/commit/5cdc04d6d61f40e89a5da3d27ae9575f4a419a08 5cdc04d] by '''TheNormalnij''')&lt;br /&gt;
* Fixed [[removeWorldModel]] crash ([https://github.com/multitheftauto/mtasa-blue/commit/ae98b04753b54208961759b295bef44f0ffafe43 ae98b04] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash when using [[extinguishFire]] in [[onClientVehicleDamage]] event ([https://github.com/multitheftauto/mtasa-blue/commit/d6ae4e9e24b0b7de704a3cbeec25dfd661b4a3fc d6ae4e9] by '''FileEX''')&lt;br /&gt;
* Fixed weapon models being invisible when using the jetpack with [[setJetpackWeaponEnabled]] ([https://github.com/multitheftauto/mtasa-blue/commit/a68c2c4232c28c6ba5595a814b89be976c4fa9c3 a68c2c4] by '''FileEX''')&lt;br /&gt;
* Fixed animations validation to avoid crashes ([https://github.com/multitheftauto/mtasa-blue/commit/27a24b551d86c6fbf9ee308603f24b011e941399 27a24b5] by '''G-Moris''')&lt;br /&gt;
* Fixed a bug where the &amp;quot;attacker&amp;quot; parameter is always nil in the [[onClientObjectBreak]] event if the object is glass ([https://github.com/multitheftauto/mtasa-blue/commit/dca5e2065af4a0195526541f9a8285db0401616e dca5e20] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where the [[onClientObjectBreak]] event was not triggered if the glass was broken by an explosion ([https://github.com/multitheftauto/mtasa-blue/commit/dca5e2065af4a0195526541f9a8285db0401616e dca5e20] by '''FileEX''')&lt;br /&gt;
* Fixed a bug that prevented players from switching weapons with an active jetpack ([https://github.com/multitheftauto/mtasa-blue/commit/180fbc0b5fdba95450e7a519f78f7588849349bf 180fbc0] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where hitElement in the [[onClientVehicleCollision]] event was always nil for projectiles ([https://github.com/multitheftauto/mtasa-blue/commit/43cc7b3e34eb4680120eb8ebf40d31d845850df2 43cc7b3] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where hydra flares did not work with [[createProjectile]] ([https://github.com/multitheftauto/mtasa-blue/commit/2bdac16d1d868f396786fbfdcfa2595004e1fff5 2bdac16] by '''FileEX''')&lt;br /&gt;
* Fixed inconsistent extra component names ([https://github.com/multitheftauto/mtasa-blue/commit/d4f884935626c638dca0f7f45c71cfb22c4e2d72 d4f8849] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where after changing the key in the bind settings, only the key for the &amp;quot;down&amp;quot; status changed, while the &amp;quot;up&amp;quot; key remained unchanged.([https://github.com/multitheftauto/mtasa-blue/commit/3ebefc37951e24cbfb25035d99045d67571b5324 3ebefc3] by '''FileEX''')&lt;br /&gt;
* Maked frame graph scale accordingly to resolution ([https://github.com/multitheftauto/mtasa-blue/commit/e431474c676a253004a26d86fc9e1a6100d329d4 e431474] by '''ffsPLASMA''')&lt;br /&gt;
* Fixed old [[setElementModel]] memory leak ([https://github.com/multitheftauto/mtasa-blue/commit/4e7afa2586c6992a75ac5312378c1096d87148ae 4e7afa2] by '''tederis''')&lt;br /&gt;
* Fixed [[getObjectProperty]] returns invalid ''air_ressistance'' property ([https://github.com/multitheftauto/mtasa-blue/commit/b51e1116283e9ec453881d3c48229b96c6198d5a b51e111] by '''FileEX''')&lt;br /&gt;
* Fixed missing states in [[getPedControlState]] ([https://github.com/multitheftauto/mtasa-blue/commit/3333a115f1a14f00378161681aeba609b4e993c0 3333a11] by '''FileEX''')&lt;br /&gt;
* Fixed for randomly bright objects after weapon change  ([https://github.com/multitheftauto/mtasa-blue/commit/9b9120c73ec97bf1b2f24703889a62fc19326f1f 9b9120c] by '''FileEX''')&lt;br /&gt;
* Fixed some small problems with Device Selection Dialog ([https://github.com/multitheftauto/mtasa-blue/commit/6f90880bee4d9169d4eda5f6afc63f4ed1bf652f 6f90880] by '''forkerer''')&lt;br /&gt;
* Allow dynamic models to be created as buildings ([https://github.com/multitheftauto/mtasa-blue/commit/642438ec1302daba50b6f6069844e96cbaa31818 642438e] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash when disconnecting from server after creating projectiles ([https://github.com/multitheftauto/mtasa-blue/commit/9ab6104d9c1ec246fde29ae6bf303ae5848bbbe1 9ab6104] by '''TheNormalnij''')&lt;br /&gt;
* Allow client peds to enter/exit client vehicles ([https://github.com/multitheftauto/mtasa-blue/pull/3678 #3678], [https://github.com/multitheftauto/mtasa-blue/commit/67beec77b06897552dc2c756c15283bfdc19b143 67beec7] by '''gownosatana''' and '''Tracer''')&lt;br /&gt;
* Use immersive dark mode on game window ([https://github.com/multitheftauto/mtasa-blue/commit/fd9520498919ae191c718c49b2a5c742bbbf8239 fd95204] by '''FileEX''')&lt;br /&gt;
* Added damageable objects support for [[engineRequestModel]] ([https://github.com/multitheftauto/mtasa-blue/commit/21593b9239765343ad5a4975c9f8424e571a036d 21593b9] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash with [[setElementHealth]] in [[onClientPedDamage]] event ([https://github.com/multitheftauto/mtasa-blue/commit/2d3397df56827f7c218689873f8b4741ea9af44e 2d3397d] by '''FileEX''')&lt;br /&gt;
* Fixed [[setPedControlState]] is aborted when ped created/player join ([https://github.com/multitheftauto/mtasa-blue/commit/8117ebcb95d3e3c35c400ee073a6ebab81e3f9fb 8117ebc] by '''FileEX''')&lt;br /&gt;
* Added '''buildings''' support to [[engineApplyShaderToWorldTexture]] ([https://github.com/multitheftauto/mtasa-blue/commit/fe1dd063170aef6a866bc241c305278a73200fdd fe1dd06] by '''TheNormalnij''')&lt;br /&gt;
* Fixed unintended behavior for ped control states ([https://github.com/multitheftauto/mtasa-blue/commit/a38e6acaf5c0fd83b5627660439f36d380cd26e6 a38e6ac] by '''Nico834''')&lt;br /&gt;
* Fixed SVG colors bug ([https://github.com/multitheftauto/mtasa-blue/commit/04f297b7b1aecb3753c8fbfa19fa9627abf422b4 04f297b] by '''TheNormalnij''')&lt;br /&gt;
* Fixed &amp;quot;CEF Launcher&amp;quot; process remaining after closing MTA ([https://github.com/multitheftauto/mtasa-blue/commit/a6c00278a5329e3b2b870b298d78565b14a7bed2 a6c0027] by '''botder''')&lt;br /&gt;
* Removed ''login'' cmd from chat history ([https://github.com/multitheftauto/mtasa-blue/commit/4639aea8a5544bfa4460bfcc8bba1d5b032e931a 4639aea] by '''PlatinMTA''')&lt;br /&gt;
* Fixed in-game updater dialog incorrectly showing 0% progress ([https://github.com/multitheftauto/mtasa-blue/commit/40d9ac11a9864d4f26c9eb1979e3a30ec0624061 40d9ac1] by '''Dutchman101''')&lt;br /&gt;
* Fixed invalid references counter to TXD after [[engineSetModelTXDID]] (top 1 crash according to players crash stats) ([https://github.com/multitheftauto/mtasa-blue/commit/1b7e9e82997fb4ac2eec5722d9134299902a16e6 1b7e9e8] by '''TheNormalnij''')&lt;br /&gt;
* Fixed server cache memory leak on connecting to another server ([https://github.com/multitheftauto/mtasa-blue/commit/e3476592fc46dc28f9da98f525797ae94ebf3ec3 e347659] by '''Lpsd''')&lt;br /&gt;
* Added the ability to set CPU affinity (CPU 0) in the '''advanced''' tab in the settings ([https://github.com/multitheftauto/mtasa-blue/commit/d04c92b24e7b85f6015fa93192ddda06e9023c85 d04c92b] by '''FileEX''')&lt;br /&gt;
* Fixed crash in ''CClientDisplayManager'' (top 2 crash according to players crash stats) ([https://github.com/multitheftauto/mtasa-blue/commit/0df0a4b40f7aea7c16473d0844a03fcece888420 0df0a4b] by '''Lpsd''')&lt;br /&gt;
* Set main menu FPS limit to current display refresh rate ([https://github.com/multitheftauto/mtasa-blue/commit/acbcc8e03ba8ac677a9c2c8182fb6f24868cae46 acbcc8e] by '''samr46''')&lt;br /&gt;
* [[setSoundEffectParameter]] and [[getSoundEffectParameters]] can be now used also on players! ([https://github.com/multitheftauto/mtasa-blue/commit/20851ecf7d69cc42fc00a62446a87d7e99c1e19d 20851ec] by '''tederis''')&lt;br /&gt;
* Fixed elements sometimes being visible from other dimensions in the current dimension ([https://github.com/multitheftauto/mtasa-blue/commit/9af03b3263a5a320e2f92140f6caa6c94b9fe9a5 9af03b3], [https://github.com/multitheftauto/mtasa-blue/commit/1dff560099459bc1b8248ef50643886158b0d731 1dff560] by '''FileEX''' &amp;amp; '''tederis''')&lt;br /&gt;
* Fixed bug &amp;quot;Copying text from CEF Browser shows Chinese characters in console&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/892beb0457b461d5afd5d91e86763181bdb972d3 892beb0] by '''ColombuxMaximus''')&lt;br /&gt;
* Fixed a bug where hidden vehicle components became visible after changing the variant or handling ([https://github.com/multitheftauto/mtasa-blue/commit/1d81347ee7e2614cd94e4b1807947d2c98b3305f 1d81347] by '''ColombuxMaximus''')&lt;br /&gt;
* Fixed persian characters in main menu &amp;amp; CEGUI ([https://github.com/multitheftauto/mtasa-blue/commit/efb2edfa853aa9a95f39ed9a843c3230b2e627cf efb2edf] by '''tzwer''')&lt;br /&gt;
* Added new movement states to [[getPedMoveState]] and fixed incorrect returning of &amp;quot;fall&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/c43c1b98b8ec0b7253d98c65b405ead482a765d8 c43c1b9], [https://github.com/multitheftauto/mtasa-blue/commit/797331fadbca4367f6cfd43633e48af44a99a115 797331f] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where friendly fire did not prevent fire damage ([https://github.com/multitheftauto/mtasa-blue/commit/9c4397707dd2a94d8a6124d6b502d39793f0d2ba 9c43977] by '''FileEX''')&lt;br /&gt;
* Fixed [[engineReplaceModel]] memory leak &amp;amp; potential crash ([https://github.com/multitheftauto/mtasa-blue/commit/1dbbfd025c5ff791f31e1ef4f255514198f88d0c 1dbbfd0] by '''FileEX''')&lt;br /&gt;
* Fixed '''ALT + F4''' not working ([https://github.com/multitheftauto/mtasa-blue/commit/93963a98f24fdb5e8374baaddaa6d99260be967e 93963a9] by '''lopezloo''')&lt;br /&gt;
* Fixed [[setPedOnFire]] doesn't cancel '''TASK_SIMPLE_PLAYER_ON_FIRE''' ([https://github.com/multitheftauto/mtasa-blue/commit/2a2f31bccd9d90adfc2b03f1f63248b9d016c725 2a2f31b] by '''FileEX''')&lt;br /&gt;
* Fixed crash related to buildings ([https://github.com/multitheftauto/mtasa-blue/commit/4bcded5c89caffd005b266021d3c1bbd83a554cb 4bcded5] by '''tederis''')&lt;br /&gt;
* Fixed client freeze in some locations on the map ([https://github.com/multitheftauto/mtasa-blue/commit/3a376e479201b30b27488a5a674d7d816397e79a 3a376e4] by '''tederis''')&lt;br /&gt;
* Added disconnect warning when using quick connect while connected to server ([https://github.com/multitheftauto/mtasa-blue/commit/be395665c0f5094793b923e9f4fb94056ccff961 be39566] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
=== Server ===&lt;br /&gt;
* Fixed bullet sync check in CBulletsyncPacket by verifying total ammo instead of clip ammo ([https://github.com/multitheftauto/mtasa-blue/commit/ca06762413833e1c7f8d17970334607763414a45 ca06762] by '''shadylua''')&lt;br /&gt;
* Check deprecated account name length on [[banPlayer]] to fix all players getting kicked ([https://github.com/multitheftauto/mtasa-blue/commit/b5e2332ca5857f3e984467ca0cb8163ec998ea06 b5e2332] by '''patrikjuvonen''')&lt;br /&gt;
* Fixed a crash in CHandlingManager ([https://github.com/multitheftauto/mtasa-blue/commit/b6867a0d2ed0b4ab12a4461c3f1ca7d667bdedbc b6867a0] by '''Olya-Marinova''')&lt;br /&gt;
* Removed min-version lua function from old MTA versions ([https://github.com/multitheftauto/mtasa-blue/commit/222b2720c93f29977fffb722f8d42ea3fb5f790d 222b272] by '''Olya-Marinova''')&lt;br /&gt;
* Disallow loadstring by default ([https://github.com/multitheftauto/mtasa-blue/commit/89e2d375d12deb026ee91fedc5e1ced04dc9a723 89e2d37] by '''srslyyyy''')&lt;br /&gt;
* Added valid values for 'donotbroadcastlan' setting ([https://github.com/multitheftauto/mtasa-blue/commit/f8d4422ad75c0d7f21894f9f868aa37ec6993a35 f8d4422] by '''Dark-Dragon''')&lt;br /&gt;
* Fixed &amp;quot;ped revives when syncer changes&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/af604ae7dfec742661206fb809f149140ce3a960 af604ae] by '''Zangomangu''')&lt;br /&gt;
* Fixed files not unloading after renaming ([https://github.com/multitheftauto/mtasa-blue/commit/2846e2794af1d9d441b7b988f49af521bd765fb0 2846e27] by '''W3lac3''')&lt;br /&gt;
* Added ability to limit client triggered events via [[triggerServerEvent]] ([https://github.com/multitheftauto/mtasa-blue/commit/eae47fe2f432d9053c425fd515ea27f963c254ec eae47fe] by '''Lpsd''')&lt;br /&gt;
* Added FileExists check to CMainConfig::AddMissingSettings ([https://github.com/multitheftauto/mtasa-blue/commit/1ebaa28e0381fb114b946f2f5a4d4bc5834ebd03 1ebaa28] by '''Lpsd''')&lt;br /&gt;
* Added server side weapon related checks ([https://github.com/multitheftauto/mtasa-blue/commit/86448ea52c7ee13e554a907c424aa3c891e51e31 86448ea] by '''NanoBob''')&lt;br /&gt;
* Added [[dbConnect]] option for MySQL ''&amp;quot;use_ssl=0&amp;quot;'' ([https://github.com/multitheftauto/mtasa-blue/commit/e6476767a9b6848467f0d123830dd2f90bd4442d e647676] by '''Lpsd''')&lt;br /&gt;
* Added ''content'' parameter to [[onPlayerPrivateMessage]] event ([https://github.com/multitheftauto/mtasa-blue/commit/79f8ed6a374d62e5cf1ec707b2ba25e3a959f509 79f8ed6] by '''FileEX''')&lt;br /&gt;
* Fix ability to move server-side vehicles that are far away from the player. New parameter can be set in the [[Server_mtaserver.conf#vehicle_contact_sync_radius|mtaserver.conf]] ([https://github.com/multitheftauto/mtasa-blue/commit/e3338c2fbbdb500c4ce28dc0677ceadef1f1ca4c e3338c2] by '''MegadreamsBE''')&lt;br /&gt;
* Added ''sync'' parameter for vehicles ([https://github.com/multitheftauto/mtasa-blue/commit/f88d31306d3c7fadfbc1542c85922612fd00b131 f88d313] by '''znvjder''')&lt;br /&gt;
* Fixed server-side pickup collision size ([https://github.com/multitheftauto/mtasa-blue/commit/49d97513e1eb2e0c96c5aa5a1d542d14131edd76 49d9751] by '''Proxy-99''') &lt;br /&gt;
* Fixed ''CSimBulletsyncPacket'' crash ([https://github.com/multitheftauto/mtasa-blue/commit/ee8bc92907a112a5584844329dbb07cc82326ad1 ee8bc92] by '''G-Moris''')&lt;br /&gt;
* Fixed onVehicleExit doesn't trigger if pulled out ([https://github.com/multitheftauto/mtasa-blue/commit/af4f7facca73bb68238437e6eff3504bd6f1cfe0 af4f7fa] by '''Proxy-99''')&lt;br /&gt;
* Fixed arguments in [[setPedAnimation]] being ignored when nil was passed ([https://github.com/multitheftauto/mtasa-blue/commit/f6f544e6b54054a06497fdf94cd077b862af8055 f6f544e] by '''FileEX''')&lt;br /&gt;
* Fixed Sirens not removed correctly ([https://github.com/multitheftauto/mtasa-blue/commit/9e419620069ec8ad5828c50295c1901685166cf9 9e41962] by '''Proxy-99''')&lt;br /&gt;
* Fixed a bug where [[setPedWeaponSlot]] did not update data in [[getPedWeapon]] and [[getPedWeaponSlot]] ([https://github.com/multitheftauto/mtasa-blue/commit/9615523faf84f584179412fb8e0cc04f9f4ee48f 9615523] by '''FileEX''')&lt;br /&gt;
* Added '''player''' parameter to [[onVehicleExplode]] ([https://github.com/multitheftauto/mtasa-blue/commit/1ec1f5be69d3ef99bd2e26fd3d008a7cecd0a5ad 1ec1f5b] by '''FileEX''')&lt;br /&gt;
* Excluded '''meta.xml''' from glob patterns for security reasons ([https://github.com/multitheftauto/mtasa-blue/commit/78f6d669adc97c51a825250dd4dbf1a4a4a0ff15 78f6d66] by '''FileEX''')&lt;br /&gt;
* Fixed the bug where changing a vehicle to one with a different number of seats caused passengers to experience network trouble ([https://github.com/multitheftauto/mtasa-blue/commit/1fcd732ca9031060602c8e2425e40ce602d35253 1fcd732] by '''FileEX''')&lt;br /&gt;
* Glob patterns added to meta.xml for HTML files ([https://github.com/multitheftauto/mtasa-blue/commit/7e6b4d02ec113b7ce3a6fd9937a6e8ad0a1ad9cb 7e6b4d0] by '''FileEX''')&lt;br /&gt;
* Fixed console not maintaining position &amp;amp; size when GUI skin changed ([https://github.com/multitheftauto/mtasa-blue/commit/30d8e6dbfe75db47cf396aa909f43c24c4dbe127] by '''NanoBob''')&lt;br /&gt;
* Added '''includeCustom''' argument for [[getValidPedModels]] clientside ([https://github.com/multitheftauto/mtasa-blue/commit/889567a7a0ecb8a8b8d938826d2395ef9f43a76b] by '''Fernando-A-Rocha''')&lt;br /&gt;
* Fixed '''min_mta_version''' tag for server ([https://github.com/multitheftauto/mtasa-blue/commit/8c0a01bac62ecc3e9510133dee9f8d6700065f03 8c0a01b] by '''Fernando-A-Rocha''')&lt;br /&gt;
* Allowed user to pass multiple resource names to start/stop/restart ([https://github.com/multitheftauto/mtasa-blue/commit/6f5fb9c65ee93a5c1692b0d3516a483dcea48f08 6f5fb9c] by '''botder''')&lt;br /&gt;
* Added sync peds/players animations for new players ([https://github.com/multitheftauto/mtasa-blue/commit/b32eafc70816ece8ad995d98d380d8f6e9950475 b32eafc] by '''FileEX''')&lt;br /&gt;
* Optimized processing big files by server ([https://github.com/multitheftauto/mtasa-blue/commit/cb90339aad461d3ee8c1008f2da10934afc38a4c cb90339] by '''AlexTMjugador''')&lt;br /&gt;
* Separate icon for ''mta-server.exe'' ([https://github.com/multitheftauto/mtasa-blue/commit/6cb9d3edf9686749e524f136985cefb53772898e 6cb9d3e] by '''Nico834''')&lt;br /&gt;
* Fixed a bug that caused warnings in debugscript when using depracated function names as variable names ([https://github.com/multitheftauto/mtasa-blue/commit/f23e39521b7e35ad5389e467360fbc525c099887 f23e395] by '''YelehaUwU''')&lt;br /&gt;
* [[onVehicleExplode]] can now be cancelled! ([https://github.com/multitheftauto/mtasa-blue/commit/fcb5b038981066f561f3792c2ae3d97d76d9d0fe fcb5b03] by '''Nico834''')&lt;br /&gt;
* Added '''eventName''' parameter to [[onPlayerTriggerEventThreshold]] ([https://github.com/multitheftauto/mtasa-blue/commit/76d7764c7ec408b77eb7b12379e88882e014527f 76d7764] by '''ColombuxMaximus''')&lt;br /&gt;
&lt;br /&gt;
=== More Technical Changes and Bug Fixes ===&lt;br /&gt;
&amp;lt;section show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
:* Updated CLuaFunctionParser.h ([https://github.com/multitheftauto/mtasa-blue/commit/55647f4023c78a846870f7c96069fab411cff5c5 55647f4] by '''Xenius97''')&lt;br /&gt;
:* Fixed build after above update ([https://github.com/multitheftauto/mtasa-blue/commit/9dcc651d42ae78b7b04257e7612c5b594cb0fffd 9dcc651] by '''Pirulax''')&lt;br /&gt;
:* Fixed std::unordered_map&amp;lt;std::string, std::string&amp;gt; parsing ([https://github.com/multitheftauto/mtasa-blue/commit/005592417b42de63c3d8ba9c572a81cdc8f96164 0055924] by '''tederis''')&lt;br /&gt;
:* Addendum to [https://github.com/multitheftauto/mtasa-blue/pull/3251 #3251] ([https://github.com/multitheftauto/mtasa-blue/commit/9544a34a28d3b4e766d7d07a44d63a8fe45dc506 9544a34] by '''Lpsd''')&lt;br /&gt;
:* Fixes for [https://github.com/multitheftauto/mtasa-blue/pull/3251 #3251] ([https://github.com/multitheftauto/mtasa-blue/commit/07013d24766a6259f4115bd0349a86f790dbf5d0 07013d2] by '''Lpsd''')&lt;br /&gt;
:* Fixed SetStreamingBufferSize possibly accessing memory out-of-bounds ([https://github.com/multitheftauto/mtasa-blue/commit/e08b84fbfe6ad0431605b31c2ba5a50a8f116dc9 e08b84f] by '''Pirulax''')&lt;br /&gt;
:* Added a check to verify itemList validity ([https://github.com/multitheftauto/mtasa-blue/commit/668073787fa6b952d0f1520e8ccae0999dbdba13 6680737] by '''R4ven47''')&lt;br /&gt;
:* Various code clean ups and refactors&lt;br /&gt;
::* Removed COffsetsMP and EU addresses ([https://github.com/multitheftauto/mtasa-blue/commit/52b0115a2d9157b7a153b5f24316ff6fd053e79b 52b0115] by '''Merlin''')&lt;br /&gt;
::* Removed COffsets and EU addresses ([https://github.com/multitheftauto/mtasa-blue/commit/959141de324126245d2b5ebf029c924302ff64e9 959141d] by '''Merlin''')&lt;br /&gt;
::* Clean ups ''multiplayer_sa'' code ([https://github.com/multitheftauto/mtasa-blue/commit/38982043978dd1ec72230569a6d534792e7c18bd 3898204] by '''CrosRoad95''')&lt;br /&gt;
::* Removed old easter-egg &amp;amp; debug code ([https://github.com/multitheftauto/mtasa-blue/commit/b26f80c3d72d628d63807529b408be4b61a5be60 b26f80c], [https://github.com/multitheftauto/mtasa-blue/commit/530212f34fc44e95599ca5e39e608583ecdbb5cc 530212f] by '''botder''' and '''Merlin''')&lt;br /&gt;
::* Refactored entity hierarchy &amp;lt;!-- Fixed accepting possible malicious packets --&amp;gt; ([https://github.com/multitheftauto/mtasa-blue/commit/fdaced046a9421a39de87b81eaf0f7de7c234c4b fdaced0] by '''Tracer''')&lt;br /&gt;
::* Removed unused symbol from ''CConsole'' class ([https://github.com/multitheftauto/mtasa-blue/commit/4fe9084a2e5c5eeed4b0a9a30a07607c812e923b 4fe9084] by '''Nico834''')&lt;br /&gt;
::* Refactored ''CLuaBlipDefs'' ([https://github.com/multitheftauto/mtasa-blue/commit/d05d09be8b9bd1327e37631411fa1e3b16c4dbb7 d05d09b], [https://github.com/multitheftauto/mtasa-blue/commit/c278c12debfd346377354017992543fc7cf6397b c278c12] by '''FileEX''')&lt;br /&gt;
::* Refactored ''CLuaTeamDefs'' ([https://github.com/multitheftauto/mtasa-blue/commit/74ffa1d0138ab3d848b0e081ca265f18ae6c7bd8 74ffa1d], [https://github.com/multitheftauto/mtasa-blue/commit/f37bbada1381370eeadabd4f4dde2a024ec48f5f f37bbad] by '''Nico834''')&lt;br /&gt;
::* Removed dead ''CAnimManagerSA'' code ([https://github.com/multitheftauto/mtasa-blue/commit/d18d7d35fb50fdeea3f70ad688a5857b29867185 d18d7d3] by '''G-Moris''')&lt;br /&gt;
::* Refactored class hierarchy and removed VTBL hacks ([https://github.com/multitheftauto/mtasa-blue/commit/61d1caffb5bfa9c620c08d43280150906dd172d5 61d1caf] by '''TheNormalnij''')&lt;br /&gt;
::* Refactored ''CWeaponSA'' and ''CPedSA'' classes ([https://github.com/multitheftauto/mtasa-blue/commit/a3b7c8519d0d167c66e70c8c7ed5d2f810b7ae39 a3b7c85], [https://github.com/multitheftauto/mtasa-blue/commit/2526a7dd6cde545e600792dcac3ab1b8ece0edec 2526a7d] by '''FileEX''')&lt;br /&gt;
::* Cleaning up client Common.h and moving enums to separate files ([https://github.com/multitheftauto/mtasa-blue/commit/1e56571479217f787b6444d48770f8aa69f14387 1e56571] by '''FileEX''')&lt;br /&gt;
:* Addd Comments to Frame Rate Fixes in CMultiplayerSA_FrameRateFixes.cpp ([https://github.com/multitheftauto/mtasa-blue/commit/e4e6d1b5a9609cb093a191db405c61339d4280d2 e4e6d1b] by '''Merlin''')&lt;br /&gt;
:* Fixed build after CEF update ([https://github.com/multitheftauto/mtasa-blue/commit/9980252446a6869609b1afa1ae1168282a99cb17 9980252] by '''TheNormalnij''')&lt;br /&gt;
:* Bump chromedriver from 114.0.2 to 119.0.1 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/5d8d3756d98b0272687b87c30adca2961eee86c8 5d8d375])&lt;br /&gt;
:* Bump axios from 1.4.0 to 1.6.1 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/ba018013085058905aa789c4fa3f39c4ed32fc69 ba01801])&lt;br /&gt;
:* Fixed file lock after img:destroy ([https://github.com/multitheftauto/mtasa-blue/commit/c2ccfd2c648a2d3f33ead2169262c30533f79bac c2ccfd2] by '''TheNormalnij''')&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
:* Bump follow-redirects from 1.15.2 to 1.15.6 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/437dbcd8024c5217c22ef0e38719f93f33f47ce5 437dbcd])&lt;br /&gt;
:* Fix permission check in File.create method ([https://github.com/multitheftauto/mtasa-blue/commit/92144a4d7383af09dfa05b7bcd3db09fa487e6fd 92144a4] by '''theSarrum''')&lt;br /&gt;
:* mbedTLS fix for cURL 8.8.0 ([https://github.com/multitheftauto/mtasa-blue/commit/4f7e0d87ec04e44d2e47f5b869c2d7c765817c0f 4f7e0d8] by '''Lpsd''')&lt;br /&gt;
:* Discord RPC Tweaks ([https://github.com/multitheftauto/mtasa-blue/commit/8ef351eabe46fd50da096247d8b6fc74508cb911 8ef351e] by '''theSarrum''')&lt;br /&gt;
:* Fixed small overhead in argument parser for strings ([https://github.com/multitheftauto/mtasa-blue/commit/d20582d770dfd2a1677d9981005b3b6d28fb8e4e d20582d] by '''TheNormalnij''')&lt;br /&gt;
:* Bump ws from 8.13.0 to 8.17.1 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/cc172fcae7654ead0d3530a4819c71f76205a175 cc172fc])&lt;br /&gt;
:* Generic exception type for argument parser instead of std::invalid_argument ([https://github.com/multitheftauto/mtasa-blue/commit/2043acfdb210a8f1158501e2fbb431b625bbf74d 2043acf] by '''tederis''')&lt;br /&gt;
:* Added comments for hooks in CMultiplayerSA_CrashFixHacks.cpp ([https://github.com/multitheftauto/mtasa-blue/commit/0327cb1bef9b234451f8a22ece9c6c70fdc9adb0 0327cb1] by '''FileEX''')&lt;br /&gt;
:* Optimization handling ([https://github.com/multitheftauto/mtasa-blue/commit/e3a8bd96d4eccb30e439ba8bd4a2029d01586154 e3a8bd9], [https://github.com/multitheftauto/mtasa-blue/commit/5ac6c8adad9c9ffd4a1c299c7cd548713e485bd6 5ac6c8a] by '''G-Moris''')&lt;br /&gt;
:* Added ability to use varargs in ArgumentParser functions ([https://github.com/multitheftauto/mtasa-blue/commit/8c2f95a5ffade0e7fb212b62282e69d7f433d36f 8c2f95a] by '''Tracer''')&lt;br /&gt;
:* Fixed google-breakpad in newer GCC versions ([https://github.com/multitheftauto/mtasa-blue/commit/5508c7e4058ad9d29cacc9964f8e84df2c60d14f 5508c7e] by '''Tracer''')&lt;br /&gt;
:* Validate serial on player join ([https://github.com/multitheftauto/mtasa-blue/commit/84437e49e6ebca758e1e87d93e7846f9aa99a673 84437e4] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Extract TXD class ([https://github.com/multitheftauto/mtasa-blue/commit/733683d70dc037fdcbb256fb17d86e93b fedd239] by '''TheNormalnij''')&lt;br /&gt;
:* Fixed a bug with desynchronization of the values of some fields of the ''CTickRateSettings'' structure ([https://github.com/multitheftauto/mtasa-blue/commit/af5b6968e0a28dbde7d92f3828dead0f1a936eec af5b696], [https://github.com/multitheftauto/mtasa-blue/commit/514a3b36d09906f09bb32e900c39dc09b1c29d10 514a3b3] by '''nweb''')&lt;br /&gt;
:* Fixed ''MinClientReqCheck'' and improve resource upgrade ([https://github.com/multitheftauto/mtasa-blue/commit/f0954109c0644c551ae3ec1df4474d1857e4bed8 f095410] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Refactored and improved player map (F11) ([https://github.com/multitheftauto/mtasa-blue/commit/2c5cf3226a573637b91d8b255d57113b7043dc28 2c5cf32] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Fixed ''CVector'' optional arguments ([https://github.com/multitheftauto/mtasa-blue/commit/6a70cf7def14db86980a499d0fdf4c63565915e1 6a70cf7] by '''Tracer''')&lt;br /&gt;
:* Fixed memory overwriting by ''EnumToString'' &amp;amp; ''StringToEnum'' ([https://github.com/multitheftauto/mtasa-blue/commit/3ab068ba213abca718ace47ac3bb8df9e4b1c3fc 3ab068b] by '''FileEX''')&lt;br /&gt;
:* Allow using ''std::variant'' with several pointers ([https://github.com/multitheftauto/mtasa-blue/commit/9d776c8bfc2680fc28857fc0a5dc4a4e40d4c3bf 9d776c8] by '''tederis''')&lt;br /&gt;
:* Fixed argument parser not distinguishing arrays from maps ([https://github.com/multitheftauto/mtasa-blue/commit/d4388a2452f4427bd56c3d93b80d4ea74c05b6e5 d4388a2] by '''FileEX''')&lt;br /&gt;
:* Fixed crash with nested arrays/maps in new argument parser ([https://github.com/multitheftauto/mtasa-blue/commit/ca877d33471fabbe970cf03d9d6d9b3413b6daa1 ca877d3] by '''tederis''')&lt;br /&gt;
&lt;br /&gt;
== 13 Vendor Updates ==&lt;br /&gt;
=== Client ===&lt;br /&gt;
* Updated libpng to 1.6.50 ([https://github.com/multitheftauto/mtasa-blue/commit/c24b39d41fd768337c3d336a944588d53dfaba44] by '''Nico834''')&lt;br /&gt;
* Updatee CEF to 127.3.5+g114ea2a+chromium-127.0.6533.120 ([https://github.com/multitheftauto/mtasa-blue/commit/bca4dff8dc490328000d7653a9166704d859b7e5 bca4dff] by '''Dutchman101''')&lt;br /&gt;
* Updated Unifont to 15.1.05 ([https://github.com/multitheftauto/mtasa-blue/commit/02115a5c00e2480bbb3b829b655869e7436de955 02115a5] by '''Dutchman101''')&lt;br /&gt;
&lt;br /&gt;
=== Server ===&lt;br /&gt;
* Updated cURL to 8.14.1 ([https://github.com/multitheftauto/mtasa-blue/commit/7c27c20da7503c68234cde0b726f10a3dcdf85e3] by '''Nico834''')&lt;br /&gt;
* Updated MySQL to 8.4.0 &amp;amp; OpenSSL to 3.3.1 ([https://github.com/multitheftauto/mtasa-blue/commit/a44d673bb8731506418fdbaa6690b339a98d82c1 a44d673] by '''botder''')&lt;br /&gt;
* Updated SQLite to 3.46.0 ([https://github.com/multitheftauto/mtasa-blue/commit/30e31af2ca1ae96e03386670a9df6db70336b968 30e31af] by '''Dutchman101''')&lt;br /&gt;
&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Updated mbedTLS to 3.6.4 ([https://github.com/multitheftauto/mtasa-blue/commit/45955dad5471f49e2784e37cbafd1b92196abe96] by '''Nico834''')&lt;br /&gt;
* Updated 7-Zip Standalone plugins to 24.07 (24.7.0.0) ([https://github.com/multitheftauto/mtasa-blue/commit/9b979b2d5c7f4b885046a85d9895e58416563890 9b979b2] by '''Dutchman101''')&lt;br /&gt;
* Updated freetype to freetype-37cefe3 (freetype/freetype@37cefe3) ([https://github.com/multitheftauto/mtasa-blue/commit/89e022cb8586aba5bdacd7b56c7d45c9b7b95f97 89e022c] by '''Dutchman101''')&lt;br /&gt;
* Updated nvapi from r550 to r555 ([https://github.com/multitheftauto/mtasa-blue/commit/5fdcada80a18af530381b04f54c3c69b6988f479 5fdcada] by '''Dutchman101''')&lt;br /&gt;
* Updated unrar to 7.0.9 ([https://github.com/multitheftauto/mtasa-blue/commit/ab9461be5777427261bc3a330acb4c0f5cdc2c8b ab9461b] by '''Dutchman101''')&lt;br /&gt;
* Updated FreeType to 2.13.2 ([https://github.com/multitheftauto/mtasa-blue/commit/a783e994264d4e954489e31459505c53759ca7f1 a783e99] by '''Dutchman101''')&lt;br /&gt;
* Updated zlib from 1.2.13 to 1.3 ([https://github.com/multitheftauto/mtasa-blue/commit/0f37ac0b18845e9f035d0ca45bbb41b9cd1aa979 0f37ac0] by '''Dutchman101''')&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
=== 46+ Changes and Bug Fixes ===&lt;br /&gt;
&lt;br /&gt;
'''admin'''&lt;br /&gt;
:* Removed execute code functionality for safety reasons ([https://github.com/multitheftauto/mtasa-resources/commit/507a04937524997410e450a6d4292974fa801bf8 507a049] by '''srslyyyy''')&lt;br /&gt;
:* Updated skins.xml ([https://github.com/multitheftauto/mtasa-resources/commit/b5306484a789cc59b05f4182505ac07df3d90e07 b530648] by '''shadylua''')&lt;br /&gt;
:* Fixed warnings ([https://github.com/multitheftauto/mtasa-resources/commit/d7b02022fa8168fc300dd562118100265cf0688b d7b0202] by '''jlillis''')&lt;br /&gt;
:* Making the admin window focused ([https://github.com/multitheftauto/mtasa-resources/commit/33f7cc938d243687fa36fa300ec588b2d057d02c 33f7cc9] by '''Proxy-99''')&lt;br /&gt;
:* Resource settings button is only displayed if there are settings ([https://github.com/multitheftauto/mtasa-resources/commit/0224ef52c699f27bd6e0e6364fbc81ecd0ec345f 0224ef5] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed nil index error and removed invalid characters causing syntax errors ([https://github.com/multitheftauto/mtasa-resources/commit/79857393ddb42f52ee05cf5758d5fdc8c2ff845c 7985739] by '''rad3sh''')&lt;br /&gt;
:* Allow disabling/enabling default reporting system ([https://github.com/multitheftauto/mtasa-resources/commit/0dbb83df7d3e9a20a2c897612db778bf4e395c92 0dbb83d] by '''Viude''')&lt;br /&gt;
:* Updated clientcheckban setting to ban serial instead of IP ([https://github.com/multitheftauto/mtasa-resources/commit/fa5beb96e10d9f30d9565ca212fe901f88e413a5 fa5beb9] by '''Viude''')&lt;br /&gt;
:* Fixed that double clicking on a resource without setting opened the GUI settings window ([https://github.com/multitheftauto/mtasa-resources/commit/82d5b835b503594101a99041498501e19a433a79 82d5b83] by '''T-MaxWiese-T''')&lt;br /&gt;
&lt;br /&gt;
'''admin2'''&lt;br /&gt;
:* Forward-ported permissions widget from admin1 and minor fixes ([https://github.com/multitheftauto/mtasa-resources/commit/25dcc4c655de26de0a2d0eb1b55ef7f3b3f6725e 25dcc4c] by '''Dark-Dragon''')&lt;br /&gt;
:* Fixed /report message viewer widget and minor fixes ([https://github.com/multitheftauto/mtasa-resources/commit/6dbdf2cf90d0e447879bea86942e01caf949b8f5 6dbdf2c] by '''Dark-Dragon''')&lt;br /&gt;
:* Refactored bans functionality ([https://github.com/multitheftauto/mtasa-resources/commit/d8c35b0a38a295d119054c4328a892c4e26be358 d8c35b0] by '''jlillis''')&lt;br /&gt;
:* Fixed messagebox not showing ([https://github.com/multitheftauto/mtasa-resources/commit/5afe0247e6ca44c5754a2d9a6a0af7bc8b57f967 5afe024] by '''FileEX''')&lt;br /&gt;
:* Added missing glitches and world properties ([https://github.com/multitheftauto/mtasa-resources/commit/6856aa075c8e5674379c2a89f355d8b167ab6fdb 6856aa0] by '''FileEX''')&lt;br /&gt;
:* Added content for &amp;quot;Users&amp;quot; sub-tab in the &amp;quot;Rights&amp;quot; tab ([https://github.com/multitheftauto/mtasa-resources/commit/3f8ecca953cc3dfa84e4d1b38b6b4c41f323688b 3f8ecca] by '''FileEX''')&lt;br /&gt;
:* Removed execute code functionality for safety reasons ([https://github.com/multitheftauto/mtasa-resources/commit/c4bc73a2b088b98116ece27065cc7f5a1dced15b c4bc73a] by '''jlillis''')&lt;br /&gt;
:* Replaced checkboxes with a gridlist for glitches and special world properties ([https://github.com/multitheftauto/mtasa-resources/commit/1dcb2953757c6741c93b9c63db33c032183047bc 1dcb295] by '''FileEX''')&lt;br /&gt;
:* Added ability to change server configuration settings ([https://github.com/multitheftauto/mtasa-resources/commit/118d58e383f631f111fe3f2463480182235c71d1 118d58e] by '''FileEX''')&lt;br /&gt;
:* Added content for &amp;quot;Resources&amp;quot; sub-tab in the &amp;quot;Rights&amp;quot; tab ([https://github.com/multitheftauto/mtasa-resources/commit/f16577e24ca9125eac5f2e96621077ad0d213b69 f16577e] by '''FileEX''')&lt;br /&gt;
:* Making the admin window focused ([https://github.com/multitheftauto/mtasa-resources/commit/33f7cc938d243687fa36fa300ec588b2d057d02c 33f7cc9] by '''Proxy-99''')&lt;br /&gt;
:* Fixed panel bind bug after reconnect ([https://github.com/multitheftauto/mtasa-resources/commit/c96bdd5297cf180f947596c1eded8929b4982e6c c96bdd5] by '''ricksterhd123''')&lt;br /&gt;
&lt;br /&gt;
'''chatmanager'''&lt;br /&gt;
:* Added a new resource for chat handling and management ([https://github.com/multitheftauto/mtasa-resources/commit/4e45cb75a8780b0c191031091a4fcd2d76442aa7 4e45cb7] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''defaultstats'''&lt;br /&gt;
:* Don't re-apply stats on every respawn ([https://github.com/multitheftauto/mtasa-resources/commit/9fde199ec5025052468df0255bf5c5011ef29718 9fde199] by '''Dutchman101''')&lt;br /&gt;
:* Fixed issue where defaultstats did not set player stats correctly ([https://github.com/multitheftauto/mtasa-resources/commit/567d10c552305dae3f57d5c422a34c25f22fdc12 567d10c] by '''MittellBuurman''')&lt;br /&gt;
&lt;br /&gt;
'''editor'''&lt;br /&gt;
:* Various fixes for local spawned or invalid elements ([https://github.com/multitheftauto/mtasa-resources/commit/4e3c57941cd789cff8d9ce240e99edca871a345d 4e3c579] by '''chris1384''')&lt;br /&gt;
:* Various bug fixes and improvements ([https://github.com/multitheftauto/mtasa-resources/commit/4674fa9c6dbff7a1073fb949cac44588c65df3fb 4674fa9] by '''IIYAMA12''')&lt;br /&gt;
:* Fixed rotation issues ([https://github.com/multitheftauto/mtasa-resources/commit/679c01b93132050548a86dba25ead7feaf9d5a1f 679c01b] by '''Nico834''')&lt;br /&gt;
:* Toggleable rotation mechanic and improve threshold ([https://github.com/multitheftauto/mtasa-resources/commit/83e2c79cbd959aa54c55d4220a5b4d38747e8353 83e2c79] by '''chris1384''')&lt;br /&gt;
:* Added missing objects and collisions ([https://github.com/multitheftauto/mtasa-resources/commit/4e83755d51345c0dc8e2e0f2ddf61588bf854641 4e83755] by '''THEGizmoOfficial''')&lt;br /&gt;
&lt;br /&gt;
'''edf'''&lt;br /&gt;
:* Fixed massive lag after stopping ''editor'' resource ([https://github.com/multitheftauto/mtasa-resources/commit/4674fa9c6dbff7a1073fb949cac44588c65df3fb 4674fa9] by '''IIYAMA12''')&lt;br /&gt;
&lt;br /&gt;
'''editor_main'''&lt;br /&gt;
:* Improvements ([https://github.com/multitheftauto/mtasa-resources/commit/5bf553f85cb9c53027814fe666268cb24ed66b2e 5bf553f], [https://github.com/multitheftauto/mtasa-resources/commit/e9b75fd615922c7d70f4e435a05fa933dcb9d2a5 e9b75fd] by '''q8X''')&lt;br /&gt;
:* Add xmlns namespace when saving map ([https://github.com/multitheftauto/mtasa-resources/commit/23fa3f38f71c2f3d28780df1b3ce163ab2eaae84 23fa3f3] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''editor_gui'''&lt;br /&gt;
:* Fixed test panel issues ([https://github.com/multitheftauto/mtasa-resources/commit/e558c846e8b0589997f342f431b36fdc371da000 e558c84] by '''chris1384''')&lt;br /&gt;
&lt;br /&gt;
'''fallout'''&lt;br /&gt;
:* Refactor &amp;amp; many improvements ([https://github.com/multitheftauto/mtasa-resources/commit/c733b69a735d004235ba61b1201ac1412acc6482 c733b69] by '''IIYAMA12''')&lt;br /&gt;
&lt;br /&gt;
'''freeroam'''&lt;br /&gt;
:* Updated skins.xml ([https://github.com/multitheftauto/mtasa-resources/commit/cacbe40a805402dec3a62180b987d4b777817ea6 cacbe40] by '''shadylua''')&lt;br /&gt;
:* Added Walk styles ([https://github.com/multitheftauto/mtasa-resources/commit/4a18d7585a2fa45eaed18d4b4796744a235a23c5 4a18d75] by '''shadylua''')&lt;br /&gt;
:* Security improvements ([https://github.com/multitheftauto/mtasa-resources/commit/2ec92132036d0dc073279dda3c88d71f578d651f 2ec9213] by '''IIYAMA12''')&lt;br /&gt;
:* Fixed freezetime flickering ([https://github.com/multitheftauto/mtasa-resources/commit/b40f27be0274b641c2cddd4c75a6f86f73ea4941 b40f27b], [https://github.com/multitheftauto/mtasa-resources/commit/817aa1ea9130fbccb1a23b7410309af2f8a21ddc 817aa1e] by '''ricksterhd123''' and '''jlillis''')&lt;br /&gt;
:* Fixed map key bind interferes with race editor help ([https://github.com/multitheftauto/mtasa-resources/commit/e62bc5471433b347b16c15709d469209cf202390 e62bc54] by '''MittellBuurman''')&lt;br /&gt;
:* Fixed player blips staying visible after closing spawn map with F1 ([https://github.com/multitheftauto/mtasa-resources/commit/aaf2dd7ed7a0b6b6c6609a4ee5d8319101e8a674 1a5031c] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''hedit'''&lt;br /&gt;
:* Added German localization [[File:Flag_de.png|x14px]] ([https://github.com/multitheftauto/mtasa-resources/pull/568/commits/c58df8666fbccfb0be73f27c52aa680dae2f0c1a bc33634] by '''shadylua''')&lt;br /&gt;
:* Added Brazilian Portuguese localization [[File:Flag_br.png|x14px]] ([https://github.com/multitheftauto/mtasa-resources/commit/d1b85d7dda45293ce497cf03f21eea2f59100b89 d1b85d7] by '''ricksterhd123''')&lt;br /&gt;
:* Added Hungarian localization [[File:Flag_hu.png|x18px]] ([https://github.com/multitheftauto/mtasa-resources/commit/53050dd0bf73a164969480c9277fc3c6b0601b7e 53050dd] by '''Nico834''')&lt;br /&gt;
:* Updated Turkish localization [[File:Tr.gif]] ([https://github.com/multitheftauto/mtasa-resources/commit/3044d00a796488870556b19b088ac505c332952c 3044d00] by '''mahlukat5''')&lt;br /&gt;
:* Updated Spanish localization [[File:Flag_es.png|x18px]] ([https://github.com/multitheftauto/mtasa-resources/commit/b74c2393cc15e403d4588ebb671659c16cc36269 b74c239] by '''kxndrick0''')&lt;br /&gt;
&lt;br /&gt;
'''internetradio'''&lt;br /&gt;
:* Fixed that the GUI window of the resource &amp;quot;internetradio&amp;quot; collides with the GUI window of the resource &amp;quot;helpmanager&amp;quot; ([https://github.com/multitheftauto/mtasa-resources/commit/313f3dde6b7cdb389f11f1a62a6d3e8c093c159f 313f3dd] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Improvements ([https://github.com/multitheftauto/mtasa-resources/commit/a3c9e17cf6b85374b5f9b5881937aee97da94745 a3c9e17] by '''srslyyyy''')&lt;br /&gt;
:* Added attaching to vehicles ([https://github.com/multitheftauto/mtasa-resources/commit/3dd5cbd32f092337707277fbecc5ee54988e07fc 3dd5cbd] by '''ds1-e''')&lt;br /&gt;
:* Added admin commands ([https://github.com/multitheftauto/mtasa-resources/commit/5c160212e190f74461d65fac1668cda07a2d0b11 https://github.com/multitheftauto/mtasa-resources/commit/5c160212e190f74461d65fac1668cda07a2d0b11] by '''ds1-e''')&lt;br /&gt;
:* Added ability to show speaker owner ([https://github.com/multitheftauto/mtasa-resources/commit/6189fc1eefce29c8467c5a1093eaa8bfd8ed97f0 6189fc1] by '''ds1-e''')&lt;br /&gt;
:* Fixed playSound3D and track name showing in other dimensions ([https://github.com/multitheftauto/mtasa-resources/commit/d4c04db009cdd68913fdb47bbc73acd91e63f981 d4c04db] by '''mateo-14'''&lt;br /&gt;
&lt;br /&gt;
'''ip2c'''&lt;br /&gt;
:* Added missing fetchRemote aclrequest ([https://github.com/multitheftauto/mtasa-resources/commit/e1364c3ebcc956dbf7f61e2d89741837776edec2 e1364c3] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Added backed up file and .gitignore to ignore the real one (auto-updated) ([https://github.com/multitheftauto/mtasa-resources/commit/e182291a53c3c76a2cf45834ba313aa9d18c16f4 e182291] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''ipb'''&lt;br /&gt;
:* Replaced the onClientResource start event with the onPlayerResourceStart event ([https://github.com/multitheftauto/mtasa-resources/commit/cca3a05adf7fc940b913453a5fad5d5f3c8e3518 cca3a05] by '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
'''parachute'''&lt;br /&gt;
:* Fixed warnings about min_mta_version ([https://github.com/multitheftauto/mtasa-resources/commit/b4119cca4665d63a3043f14c1624ce9c96700b96 b4119cc] by '''NetroX1993''')&lt;br /&gt;
&lt;br /&gt;
'''playerblips'''&lt;br /&gt;
:* Fixed that the resource &amp;quot;playercolors&amp;quot; should be activated for teams ([https://github.com/multitheftauto/mtasa-resources/commit/2cd28db5fa891f361c5af07a491532378a820b83 2cd28db] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Real-time update of settings ([https://github.com/multitheftauto/mtasa-resources/commit/9505b181fe7fc2bab53142746f73bc64a8fd984d 9505b18] by '''Nico834''')&lt;br /&gt;
:* Improved debug messages ([https://github.com/multitheftauto/mtasa-resources/commit/4084e5d369907d3ededd1b2eb19c916983680154 4084e5d] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed that when a player changed or joined teams the color of the blip was not updated ([https://github.com/multitheftauto/mtasa-resources/commit/ff80005f114a3d010624f7d54510ffde47dddb00 ff80005] by '''T-MaxWiese-T''')&lt;br /&gt;
&lt;br /&gt;
'''playercolors'''&lt;br /&gt;
:* Player nametag color should revert to team color when the resource is stopped ([https://github.com/multitheftauto/mtasa-resources/commit/d45d2d0cd963186639d76ab1cb27ef6a042cd0bd d45d2d0] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed chat messages sent twice ([https://github.com/multitheftauto/mtasa-resources/commit/0547cf72514a7dc7efc987f47903c35b310a3b22 0547cf7] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''performancebrowser'''&lt;br /&gt;
:* Fixed player names not being reinitialized on change ([https://github.com/multitheftauto/mtasa-resources/commit/3e0166dc7fa9c11c596a7958b02423b6aeff8410 3e0166d] by '''YelehaUwU''')&lt;br /&gt;
&lt;br /&gt;
'''runcode'''&lt;br /&gt;
:* Added aclrequest for loadstring function ([https://github.com/multitheftauto/mtasa-resources/commit/c40b8095f054b6e87b46e1d53d9b6ec77cf943c7 c40b809] by '''IIYAMA12 ''')&lt;br /&gt;
&lt;br /&gt;
'''scoreboard'''&lt;br /&gt;
:* Replaced drawing arrow from path to texture ([https://github.com/multitheftauto/mtasa-resources/commit/128f26952810804df6acb233ca9476853caa1286 128f269] by '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
'''speedometer'''&lt;br /&gt;
:* Display at resource start ([https://github.com/multitheftauto/mtasa-resources/commit/31a5ac4013c3633647178e695474da6632eb38b8 31a5ac4] by '''Nico834''')&lt;br /&gt;
:* Preventing pointer overflow ([https://github.com/multitheftauto/mtasa-resources/commit/8689cdc247a3fd16125524aac04eb054c398084c 8689cdc] by '''Nico834''')&lt;br /&gt;
&lt;br /&gt;
'''superman'''&lt;br /&gt;
:* Fixes and improvements ([https://github.com/multitheftauto/mtasa-resources/commit/2b3bc102225b2f1c3144cffe290175e9a2c71728 2b3bc10], [https://github.com/multitheftauto/mtasa-resources/commit/e1c06c3c2581c16a6e05401381263a47dd6ac5f0 e1c06c3], [https://github.com/multitheftauto/mtasa-resources/commit/1e4319d180be0f482d42f2f32fbf2c1e5cd440cc 1e4319d] by '''ds1-e''')&lt;br /&gt;
&lt;br /&gt;
'''votemanager'''&lt;br /&gt;
:* Fixed lint error ([https://github.com/multitheftauto/mtasa-resources/commit/c8630075317123e510645464a3bf56ebb244573b c863007] by '''Dark-Dragon''')&lt;br /&gt;
&lt;br /&gt;
'''mapfixes'''&lt;br /&gt;
:* A new resource has been added that fixes many holes and bugs in the default map ([https://github.com/multitheftauto/mtasa-resources/commit/23f6bd94370440af5ed79a47bda1ff0caf92fa8e 23f6bd9] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''gps'''&lt;br /&gt;
:* Added export functions for custom logic ([https://github.com/multitheftauto/mtasa-resources/commit/537d92d11b357cf9e795a7bb3ec87c13fa62c7bc 537d92d] by '''T-MaxWiese-T''')&lt;br /&gt;
&lt;br /&gt;
'''deathmatch'''&lt;br /&gt;
:* Improvements and update ([https://github.com/multitheftauto/mtasa-resources/commit/a01ec8a86e636ca61f25a03d4ee30bd898754cbd a01ec8a], [https://github.com/multitheftauto/mtasa-resources/commit/b94ffddfd5b230544d54e5eca8c9c5d87dc69128 b94ffdd] by '''jlillis'''&lt;br /&gt;
&lt;br /&gt;
'''race'''&lt;br /&gt;
:* Fixed automatic nextid assignment breaking ([https://github.com/multitheftauto/mtasa-resources/commit/2c695a9e793825a8cafd2ee3be490d2d8e9ad318 2c695a9] by '''lotsofs''')&lt;br /&gt;
&lt;br /&gt;
'''voice_local'''&lt;br /&gt;
:* Improvements ([https://github.com/multitheftauto/mtasa-resources/commit/53cf63d83169018e0de9f45ecb565958855d717d 53cf63d] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''Others / Uncategorized'''&lt;br /&gt;
:* Refactor of resources meta.xml ([https://github.com/multitheftauto/mtasa-resources/commit/6713b07a459739c06112ac3e608776f3f0696144 6713b07] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
== Extra information ==&lt;br /&gt;
''More detailed information available on our GitHub repositories:&lt;br /&gt;
* [https://github.com/multitheftauto/mtasa-blue MTA:SA Blue]&lt;br /&gt;
* [https://github.com/multitheftauto/mtasa-resources MTA:SA Official Resources]&lt;br /&gt;
&lt;br /&gt;
[[Category:Changelog]]&lt;br /&gt;
[[Category:Incomplete]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Changes_in_1.7&amp;diff=82457</id>
		<title>Changes in 1.7</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Changes_in_1.7&amp;diff=82457"/>
		<updated>2025-09-08T17:48:41Z</updated>

		<summary type="html">&lt;p&gt;O22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pageclass class=&amp;quot;#4286f4&amp;quot; subcaption=&amp;quot;Next release&amp;quot;&amp;gt;&amp;lt;/pageclass&amp;gt;&lt;br /&gt;
{{Changelogs}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
'''This changelog is partial and needs updating. It is updated progressively to keep the page always up to date.'''&lt;br /&gt;
&lt;br /&gt;
* GitHub commit log: https://github.com/multitheftauto/mtasa-blue/compare/1.6.0...master&lt;br /&gt;
* GitHub milestone: https://github.com/multitheftauto/mtasa-blue/milestone/10&lt;br /&gt;
* Resources GitHub commit log: https://github.com/multitheftauto/mtasa-resources/compare/1.6.0...master&lt;br /&gt;
* Release announcement on forums: TBA&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Important notice to Windows 7 and 8.x users ==&lt;br /&gt;
If you are using Windows 7 or 8.x, please upgrade your system to Windows 10 or 11 as soon as possible. Windows 7 and 8.x are no longer supported by Microsoft (since January 2020 and January 2023 respectively) and most software (including Google Chrome and Steam) which means you are running an insecure system. Multi Theft Auto will also eventually drop Windows 7 and 8.x support sometime in the future, so it would be a good idea to start looking at upgrade options right now. Thank you!&lt;br /&gt;
&lt;br /&gt;
'''CEF in MTA is no longer updated for Windows 7 or 8.x. This is because CEF no longer supports those versions of Windows. This is bad for security, so please upgrade to Windows 10+ and MTA to 1.6+'''&lt;br /&gt;
&lt;br /&gt;
== 4 Deprecations ==&lt;br /&gt;
These changes will take effect in this version and scripts may need to be manually upgraded when updating:&lt;br /&gt;
* Changed [[base64Encode]] and [[base64Decode]] to throw a warning on use, please upgrade to [[encodeString]] and [[decodeString]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/30a83b0af164fb6920a2a60e089d08a6f5622f7d 30a83b0] by '''Nico834''')&lt;br /&gt;
* Changed [[setHelicopterRotorSpeed]] and [[getHelicopterRotorSpeed]] to throw a warning on use, please upgrade to [[setVehicleRotorSpeed]] and [[getVehicleRotorSpeed]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/82000c34830b51ace2d14e39f3b487feb1aac1da 82000c3] by '''FileEX''')&lt;br /&gt;
* Changes [[setPedOnFire]] and [[isPedOnFire]] to throw a warning on use, please upgrade to [[setElementOnFire]] and [[isElementOnFire]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/7ad96e2e78fe41f8924d3f105b1683f7363c6fcb 7ad96e2] by '''FileEX''')&lt;br /&gt;
* Changes [[removeAllGameBuildings]] and [[restoreAllGameBuildings]] to throw a warning on use, please upgrade to [[removeGameWorld]] and [[restoreGameWorld]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/d7adae68791ce237704acc06bf794b5fbda96f95#diff-93c130ddb85da32121129a437ac5b28ba16fa17f6e3506e4cddfb7bc3d8eb9fbR180 d7adae6] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
== Notable Changes ==&lt;br /&gt;
* Support for Discord Rich Presence ([https://github.com/multitheftauto/mtasa-blue/commit/fdaa3aca3e233c7aba69d0fd5f85e78288a4401a fdaa3ac], [https://github.com/multitheftauto/mtasa-blue/commit/ef26810df4542283fee8edcc165bc9be22f2ca98 ef26810], [https://github.com/multitheftauto/mtasa-blue/commit/acfbd40df1ff1432ea1d6663c005d43fce22899c acfbd40] by '''znjvder''', '''tederis''', '''patrikjuvonen''' and '''Deihim007''')&lt;br /&gt;
* Added support for [[Building]]'s ([https://github.com/multitheftauto/mtasa-blue/commit/81242edb9295efbf4bf8b198b12d577a0877aec2 81242ed], [https://github.com/multitheftauto/mtasa-blue/commit/eb6b18a5d49a7f0f34bdbf42b15f933e42876cf8 eb6b18a] by '''TheNormalnij''')&lt;br /&gt;
* Added the ability to generate a nickname ([https://github.com/multitheftauto/mtasa-blue/commit/12c50eee66898771244074a3a44818dab36a7ac3 12c50ee] by '''Nico834''')&lt;br /&gt;
* Added ''meta.xml'' loading files pattern ([https://github.com/multitheftauto/mtasa-blue/commit/90e2737d0a5eb12f34d2fd3c1f270bedf34cda35 90e2737] by '''W3lac3''')&lt;br /&gt;
* Added world properties (time cycle and weather related features) with new functions: [[setWorldProperty]], [[getWorldProperty]], [[resetWorldProperty]] ([https://github.com/multitheftauto/mtasa-blue/commit/a75f1e9a03e74f7c9d4ae9e5aef8433af84d5ea2 a75f1e9] by '''Samr46''')&lt;br /&gt;
* Added file-system related functions (list files and folders in directories) ([https://github.com/multitheftauto/mtasa-blue/commit/74781c6295b5b6dc81cd95d4cfab7900d88d7524 74781c6] by '''Tracer''')&lt;br /&gt;
* Added the ability to change the color and size of the target arrow in the checkpoint marker ([https://github.com/multitheftauto/mtasa-blue/commit/071378ec4326408a9520c79c96befca995d097f6 071378e] by '''FileEX''')&lt;br /&gt;
* Added the ability to change the alpha of checkpoint and arrow marker ([https://github.com/multitheftauto/mtasa-blue/commit/7988852cf3af9e78f662d76544dc00db408b5c87 7988852] by '''FileEX''')&lt;br /&gt;
* Fixed weapon issues when using the jetpack ([https://github.com/multitheftauto/mtasa-blue/commit/180fbc0b5fdba95450e7a519f78f7588849349bf 180fbc0], [https://github.com/multitheftauto/mtasa-blue/commit/a68c2c4232c28c6ba5595a814b89be976c4fa9c3 a68c2c4] by '''FileEX''')&lt;br /&gt;
* Fixed vehicle windows not being visible from the inside when the lights are on ([https://github.com/multitheftauto/mtasa-blue/commit/934c1d6cfef19902cc391c896bbe2f80ba5a4f70 934c1d6] by '''FileEX''')&lt;br /&gt;
* Fixed old [[setElementModel]] memory leak ([https://github.com/multitheftauto/mtasa-blue/commit/4e7afa2586c6992a75ac5312378c1096d87148ae 4e7afa2] by '''tederis''')&lt;br /&gt;
* Enabled WebGL (GPU Acceleration) in CEF ([https://github.com/multitheftauto/mtasa-blue/commit/026301168d2cd8239650a4f0aa33ff0be6d752dc 0263011] by '''TFP-dev''')&lt;br /&gt;
* Refactored '''Quick Connect button''' ([https://github.com/multitheftauto/mtasa-blue/commit/5b59e2236b30ec696ac1c05f8bb4e509ec06c0f7 5b59e22] by '''Fernando-A-Rocha''')&lt;br /&gt;
* Added setting to save camera photos in documents folder ([https://github.com/multitheftauto/mtasa-blue/commit/3419b9b7a20e3d1893d673a2a07ee1a0efda1bd5 3419b9b] by '''ffsPLASMA''')&lt;br /&gt;
* Added HUD customization ([https://github.com/multitheftauto/mtasa-blue/commit/5ea0e0fb23b21750207b23191db92562cf9b822c 5ea0e0f] by '''FileEX''')&lt;br /&gt;
* Added sync peds/players animations for new players ([https://github.com/multitheftauto/mtasa-blue/commit/b32eafc70816ece8ad995d98d380d8f6e9950475 b32eafc] by '''FileEX''')&lt;br /&gt;
* From now on, animation progress is preserved even after a restream; the animation will not start from the beginning. ([https://github.com/multitheftauto/mtasa-blue/commit/ad0d6bfdd7bf56b78f7c8c1b9a60597ef9b6dca3 ad0d6bf] by '''FileEX''')&lt;br /&gt;
* Added ability to replace CJ clothing models ([https://github.com/multitheftauto/mtasa-blue/commit/6b823653ecf68e181de91392d5d8931488f90f20 6b82365] by '''W3lac3''')&lt;br /&gt;
* New MTA splash window ([https://github.com/multitheftauto/mtasa-blue/commit/215173eeb1e015c0381ce94f95429c36ab1b4430 215173e] by '''botder''')&lt;br /&gt;
* Fixed multiple damage instances in certain areas during explosions ([https://github.com/multitheftauto/mtasa-blue/commit/3bce4080ec66a993096f9e7fb039cc7d5d0d8175 3bce408] by '''FileEX''')&lt;br /&gt;
* From now on, before disconnecting from the server using the main menu, you will be asked to confirm if you really want to do it ([https://github.com/multitheftauto/mtasa-blue/commit/6aa763fb79701c57402fccca9ae6c0f396fb8f3c 6aa763f] by '''tonievalue''')&lt;br /&gt;
&lt;br /&gt;
== Statistics ==&lt;br /&gt;
&amp;lt;section show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
These are some statistics since the [[Changes in 1.6.0|previous release]].&lt;br /&gt;
* This is the '''28&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt;''' 1.x.x release&lt;br /&gt;
* '''{{date difference|2023|06|16}}''' days&lt;br /&gt;
* '''39''' new functions&lt;br /&gt;
* '''12''' new events&lt;br /&gt;
* '''4''' deprecations&lt;br /&gt;
* '''50+''' bug fixes and changes&lt;br /&gt;
* '''734''' commits ([https://github.com/multitheftauto/mtasa-blue/compare/1.6.0...master mtasa-blue])  ([https://github.com/multitheftauto/mtasa-resources/compare/1.6.0...master mtasa-resources])&lt;br /&gt;
* '''78''' new open GitHub issues ([https://github.com/multitheftauto/mtasa-blue/issues?q=is%3Aopen+is%3Aissue+created%3A2023-06-16..2024-10-01 see list])&lt;br /&gt;
* '''29''' resolved GitHub issues ([https://github.com/multitheftauto/mtasa-blue/issues?q=is%3Aclosed+is%3Aissue+milestone%3A%221.6.1%22 see list])&lt;br /&gt;
* '''28''' closed GitHub issues ([https://github.com/multitheftauto/mtasa-blue/issues?q=is%3Aclosed+is%3Aissue+closed%3A2023-06-16..2024-10-01+no%3Amilestone+-label%3Ainvalid see list])&lt;br /&gt;
* '''30''' new open GitHub pull requests ([https://github.com/multitheftauto/mtasa-blue/pulls?q=is%3Aopen+is%3Apr+created%3A2023-06-16..2024-10-01 see list])&lt;br /&gt;
* '''81''' merged GitHub pull requests ([https://github.com/multitheftauto/mtasa-blue/pulls?q=is%3Apr+is%3Amerged+milestone%3A%221.6.1%22 see list])&lt;br /&gt;
* '''26''' closed GitHub pull requests ([https://github.com/multitheftauto/mtasa-blue/pulls?q=is%3Apr+is%3Aunmerged+closed%3A2023-06-16..2024-10-01 see list])&lt;br /&gt;
* '''2+''' contributors of which '''0+''' are new ([https://github.com/multitheftauto/mtasa-blue/graphs/contributors?from=2023-06-16&amp;amp;to=2024-10-01&amp;amp;type=c see list])&lt;br /&gt;
* '''100+''' total contributors ([https://github.com/multitheftauto/mtasa-blue/graphs/contributors see list])&lt;br /&gt;
* '''3''' vendor updates&lt;br /&gt;
&lt;br /&gt;
&amp;lt;sub&amp;gt;'''Note:''' Last update to these statistics was made {{date difference human friendly|2024|04|04}}.&amp;lt;/sub&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 86 New Features ==&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Added new ''special world properties'' to [[setWorldSpecialPropertyEnabled]] function&lt;br /&gt;
:* Added '''fireballdestruct''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
:* Added '''roadsignstext''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/4a746eca1b5a546a19344a76573a5108ff9d79e6 4a746ec] by '''FileEX''')&lt;br /&gt;
:* Added '''extendedwatercannons''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/13a53959f52c978b416c00b428938f82818b2312 13a5395] by '''FileEX''')&lt;br /&gt;
:* Added '''tunnelweatherblend''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/9a0790ec7fab1efb7817eead371744fcd47da5c5 9a0790e] by ''''gta191977649''')&lt;br /&gt;
:* Added '''ignorefirestate''' special world proeprty ([https://github.com/multitheftauto/mtasa-blue/commit/46f3580fbd8ea5cf48c14cf8fee0bd6eb6691854 46f3580] by '''FileEX''')&lt;br /&gt;
:* Added '''flyingcomponents''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/5ee641436821ae8a59484ac721a4ec929d5cc152 5ee6414] by '''FileEX''')&lt;br /&gt;
:* Added '''vehicleburnexplosions''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/88d303c0bbcc0ed4fee958df2d16ace562ce0108 88d303c] by '''samr46''')&lt;br /&gt;
:* Added '''vehicle_engine_autostart''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/8b3f3440f8bc485f90d466a3fe6f3e5819de9c2f 8b3f344] by '''samr46''')&lt;br /&gt;
&lt;br /&gt;
* Added new ''glitches'' to [[setGlitchEnabled]] function&lt;br /&gt;
:* Added '''vehicle_rapid_stop''' glitch ([https://github.com/multitheftauto/mtasa-blue/commit/3f5801e65d8a51d112b686485d4a2491151c3311 3f5801e], [https://github.com/multitheftauto/mtasa-blue/commit/ef792d6af62443f97014621334c7188dddb4ef29 ef792d6] by '''samr46''' and '''Merlin''')&lt;br /&gt;
&lt;br /&gt;
* New '''file''' functions&lt;br /&gt;
:* Added [[fileGetContents]] ([https://github.com/multitheftauto/mtasa-blue/commit/22930d854ce67d84a4a3b65a61b98a9ffd3f9e38 22930d8] by '''botder''')&lt;br /&gt;
:* Added [[fileGetHash]] ([https://github.com/multitheftauto/mtasa-blue/commit/94f944f508b99b5d7e84fbb0be07a483e10517a9 94f944f] by '''botder''')&lt;br /&gt;
&lt;br /&gt;
* New and updated [[object]] functions&lt;br /&gt;
:* '''[Updated]''' Added [[isObjectMoving]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/7c939adb892c08836462a78cd9b987884cdb49ee 7c939ad] by '''FileEX''')&lt;br /&gt;
:* '''[Updated]''' Added [[breakObject]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/aa1a7853f46fc796a94f38b7df2a5293fb941ba2 aa1a785] by '''FileEX''')&lt;br /&gt;
:* '''[Updated]''' Added [[respawnObject]] and [[toggleObjectRespawn]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/9d65bb673c4df16def27e97a4af74d3b0c7eedc9 9d65bb6] by '''FileEX''')&lt;br /&gt;
:* '''[New]''' Added [[isObjectRespawnable]] ([https://github.com/multitheftauto/mtasa-blue/commit/9d65bb673c4df16def27e97a4af74d3b0c7eedc9 9d65bb6] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New '''file-path''' functions&lt;br /&gt;
:* Added [[pathListDir]], [[pathIsFile]] and [[pathIsDirectory]] ([https://github.com/multitheftauto/mtasa-blue/commit/74781c6295b5b6dc81cd95d4cfab7900d88d7524 74781c6] by '''Tracer''')&lt;br /&gt;
&lt;br /&gt;
* New [[marker]] functions&lt;br /&gt;
:* Added [[setMarkerTargetArrowProperties]] and [[getMarkerTargetArrowProperties]] ([https://github.com/multitheftauto/mtasa-blue/commit/071378ec4326408a9520c79c96befca995d097f6 071378e] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[timer]] functions&lt;br /&gt;
:* Added [[setTimerPaused]] and [[isTimerPaused]] ([https://github.com/multitheftauto/mtasa-blue/commit/69aa420f21fde3ac56e3d3bbc62ef0f060295c0a 69aa420] by '''jvstns''')&lt;br /&gt;
&lt;br /&gt;
* New and updated '''world''' functions&lt;br /&gt;
:* '''[New]''' Added [[resetWorldProperties]] ([https://github.com/multitheftauto/mtasa-blue/commit/6df889e78328b80f8e4bdc02f8761472cf87c54c 6df889e] by '''FileEX''')&lt;br /&gt;
:* '''[Updated]''' Added [[isWorldSpecialPropertyEnabled]] and [[setWorldSpecialPropertyEnabled]] also to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
&lt;br /&gt;
* New and updated [[vehicle]] functions&lt;br /&gt;
:* '''[New]''' Added [[spawnVehicleFlyingComponent]] ([https://github.com/multitheftauto/mtasa-blue/commit/9f54cfcd7a584f413db731052ebed921acfc71ea 9f54cfc] by '''FileEX''')&lt;br /&gt;
:* '''[Upated]''' Added [[setVehicleNitroActivated]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/e9e5819c394987de2b9a5d581c4df9fd47057d9d#diff-49b4b89bf4463f38e70a325131b4da66457d783b1401dde0ffbad723624f8612R130 e9e5819] by '''Proxy-99''')&lt;br /&gt;
:* '''[Updated]''' Added [[addVehicleSirens]] and [[removeVehicleSirens]] to client-side ([https://github.com/multitheftauto/mtasa-blue/commit/682cdca3c37248a9e725b461ba322db413653f25 682cdca] by '''Proxy-99''')&lt;br /&gt;
&lt;br /&gt;
* Updated [[player]] functions&lt;br /&gt;
:* Added [[getPlayerScriptDebugLevel]] to client-side ([https://github.com/multitheftauto/mtasa-blue/commit/8403da54ecfd20d6b9740fb79d90ac936d316112 8403da5] by '''Nico834''')&lt;br /&gt;
&lt;br /&gt;
* Updated [[ped]] functions&lt;br /&gt;
:* Added [[isPedReloadingWeapon]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/e71f4828b46bb69b9622a11d0f700a79f986ee9b e71f482] by '''Nico834''')&lt;br /&gt;
&lt;br /&gt;
* New [[element]] functions&lt;br /&gt;
:* Added [[setElementOnFire]] and [[isElementOnFire]] ([https://github.com/multitheftauto/mtasa-blue/commit/7ad96e2e78fe41f8924d3f105b1683f7363c6fcb 7ad96e2] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
=== Client ===&lt;br /&gt;
====Functions====&lt;br /&gt;
* New '''engine''' functions &lt;br /&gt;
:* Added '''streaming''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/7ffc31243c1dbca8ed5e7b0f8c05da239aa918bd 7ffc312], [https://github.com/multitheftauto/mtasa-blue/commit/6c86ebbf0801c45d5e0bcbb9d9f2e8fd55525b15 6c86ebb], [https://github.com/multitheftauto/mtasa-blue/commit/3c44dc5dcde0a5f98ff470ce9bc64443d47de807 3c44dc5] by '''Pirulax''')&lt;br /&gt;
::* [[engineStreamingSetMemorySize]]&lt;br /&gt;
::* [[engineStreamingGetMemorySize]]&lt;br /&gt;
::* [[engineStreamingRestoreMemorySize]]&lt;br /&gt;
::* [[engineStreamingSetBufferSize]]&lt;br /&gt;
::* [[engineStreamingGetBufferSize]]&lt;br /&gt;
::* [[engineStreamingRestoreBufferSize]]&lt;br /&gt;
::* [[engineStreamingSetModelCacheLimits]]&lt;br /&gt;
:* Added '''model-streaming''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/008eaa7e36ae74bbab7c5bc9861d8f0f890eb945 008eaa7] by '''TheNormalnij''')&lt;br /&gt;
::* [[engineStreamingRequestModel]]&lt;br /&gt;
::* [[engineStreamingReleaseModel]]&lt;br /&gt;
::* [[engineStreamingGetModelLoadState]]&lt;br /&gt;
:* Added new '''TXD''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/3e9a3735a8022a0acabaa3041c8a3f8d91e547b7 3e9a373] by '''TheNormalnij''')&lt;br /&gt;
::* [[engineSetModelTXDID]]&lt;br /&gt;
::* [[engineResetModelTXDID]]&lt;br /&gt;
:* Added '''pools''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/bdf12215d1f6e73d87f5cb0881049aa224b46b65 bdf1221] by '''TheNormalnij''')&lt;br /&gt;
::* [[engineGetPoolCapacity]]&lt;br /&gt;
::* [[engineSetPoolCapacity]]&lt;br /&gt;
::* [[engineGetPoolDefaultCapacity]]&lt;br /&gt;
::* [[engineGetPoolUsedCapacity]]&lt;br /&gt;
:* Added [[enginePreloadWorldArea]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b72fb9d3c9e6813cdf56e53d1a1e72958abd3cf 5b72fb9] by '''MegadreamsBE''')&lt;br /&gt;
&lt;br /&gt;
* New functions for '''Discord RPC''' ([https://github.com/multitheftauto/mtasa-blue/commit/fdaa3aca3e233c7aba69d0fd5f85e78288a4401a fdaa3ac], [https://github.com/multitheftauto/mtasa-blue/commit/ef26810df4542283fee8edcc165bc9be22f2ca98 ef26810], [https://github.com/multitheftauto/mtasa-blue/commit/acfbd40df1ff1432ea1d6663c005d43fce22899c acfbd40] by '''znjvder''', '''tederis''', '''patrikjuvonen''' and '''Deihim007''')&lt;br /&gt;
:* [[setDiscordApplicationID]]&lt;br /&gt;
:* [[setDiscordRichPresenceDetails]]&lt;br /&gt;
:* [[setDiscordRichPresenceState]]&lt;br /&gt;
:* [[setDiscordRichPresenceAsset]]&lt;br /&gt;
:* [[setDiscordRichPresenceSmallAsset]]&lt;br /&gt;
:* [[setDiscordRichPresenceButton]]&lt;br /&gt;
:* [[resetDiscordRichPresenceData]]&lt;br /&gt;
:* [[isDiscordRichPresenceConnected]]&lt;br /&gt;
:* [[setDiscordRichPresencePartySize]]&lt;br /&gt;
:* [[setDiscordRichPresenceStartTime]]&lt;br /&gt;
:* [[setDiscordRichPresenceEndTime]]&lt;br /&gt;
:* [[getDiscordRichPresenceUserID]]&lt;br /&gt;
&lt;br /&gt;
* New [[building]] functions ([https://github.com/multitheftauto/mtasa-blue/commit/81242edb9295efbf4bf8b198b12d577a0877aec2 81242ed], [https://github.com/multitheftauto/mtasa-blue/commit/eb6b18a5d49a7f0f34bdbf42b15f933e42876cf8 eb6b18a] by '''TheNormalnij''')&lt;br /&gt;
:* [[createBuilding]]&lt;br /&gt;
:* '''[Deprecated]''' [[removeAllGameBuildings]] &lt;br /&gt;
:* '''[Deprecated]''' [[restoreAllGameBuildings]] &lt;br /&gt;
&lt;br /&gt;
* New '''world''' functions&lt;br /&gt;
:* Added [[processLineAgainstMesh]] ([https://github.com/multitheftauto/mtasa-blue/commit/acb80a3945d0d5e0230b8a41394a3fe3e70b8d0b acb80a3] by '''Pirulax''')&lt;br /&gt;
:* Added '''volumetric shadows''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/6c93a49c4c2381f4ce84df195d98d36372a47d37 6c93a49] by '''Proxy-99''')&lt;br /&gt;
:::* [[setVolumetricShadowsEnabled]]&lt;br /&gt;
:::* [[isVolumetricShadowsEnabled]]&lt;br /&gt;
:::* [[resetVolumetricShadows]]&lt;br /&gt;
:* Added [[testSphereAgainstWorld]] ([https://github.com/multitheftauto/mtasa-blue/commit/aa90aa5f31e59df455af33b49e3eee5e4f107bfd aa90aa5] by '''FileEX''')&lt;br /&gt;
:* Added [[removeGameWorld]] and [[restoreGameWorld]] ([https://github.com/multitheftauto/mtasa-blue/commit/d7adae68791ce237704acc06bf794b5fbda96f95 d7adae6] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
* New '''drawing''' functions&lt;br /&gt;
:* Added [[dxDrawModel3D]] ([https://github.com/multitheftauto/mtasa-blue/commit/f886a359dd4a680c080da7f132db0527116b5d7a f886a35], [https://github.com/multitheftauto/mtasa-blue/commit/04ef14bbf2182b356155f28d4ed972b0f293632f 04ef14b] by '''CrosRoad95''' and '''tederis''')&lt;br /&gt;
&lt;br /&gt;
* New '''effects/fx''' functions&lt;br /&gt;
:* Added [[fxCreateParticle]] ([https://github.com/multitheftauto/mtasa-blue/commit/8f2730d2e260c3319cb51101c6aedb45e22bbd89 8f2730d] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[ped]] functions&lt;br /&gt;
:* Added [[resetPedVoice]] ([https://github.com/multitheftauto/mtasa-blue/commit/18986a4542db5eb72f6d0dfffb80cb8bb6eb1442 18986a4] by '''Tracer''')&lt;br /&gt;
:* Added new animation features ([https://github.com/multitheftauto/mtasa-blue/commit/aa0591c6f7b529a27b4ed8667e1dc70e68bd9386 aa0591c] by '''Tracer''')&lt;br /&gt;
::* [[getPedAnimationProgress]]&lt;br /&gt;
::* [[getPedAnimationSpeed]]&lt;br /&gt;
::* [[getPedAnimationLength]]&lt;br /&gt;
:* Added [[killPedTask]] ([https://github.com/multitheftauto/mtasa-blue/commit/e4a502bc7619dc3913c70d169f6105ecfb0633ff e4a502b] by '''Proxy-99''')&lt;br /&gt;
:* Added ped shadow features ([https://github.com/multitheftauto/mtasa-blue/commit/26d18288730fd3a7a854152da60c9acd18ab6c6f 26d1828] by '''Proxy-99''')&lt;br /&gt;
::* [[setDynamicPedShadowsEnabled]]&lt;br /&gt;
::* [[isDynamicPedShadowsEnabled]]&lt;br /&gt;
::* [[resetDynamicPedShadows]]&lt;br /&gt;
:* Added [[playPedVoiceLine]] ([https://github.com/multitheftauto/mtasa-blue/commit/7067ac1a73bb0b8c5a1f37794504a00e9703332e 7067ac1] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[player]] functions&lt;br /&gt;
:* Added [[isPlayerCrosshairVisible]] ([https://github.com/multitheftauto/mtasa-blue/commit/03e851a2f5ff2d917ba3c7a1c7577fdb5b8d2a6f 03e851a], [https://github.com/multitheftauto/mtasa-blue/commit/5f21c32fb0725140d6d03476e08de330d429b55a 5f21c32] by '''FileEX''')&lt;br /&gt;
:* New '''HUD''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/5ea0e0fb23b21750207b23191db92562cf9b822c 5ea0e0f] by '''FileEX''')&lt;br /&gt;
::* [[setPlayerHudComponentProperty]]&lt;br /&gt;
::* [[getPlayerHudComponentProperty]]&lt;br /&gt;
::* [[resetPlayerHudComponentProperty]]&lt;br /&gt;
&lt;br /&gt;
* New [[vehicle]] functions&lt;br /&gt;
:* Added [[setVehicleWheelsRotation]] ([https://github.com/multitheftauto/mtasa-blue/commit/aeb113d269fffee7d9ac435ce87b51e905e9efa6 aeb113d] by '''gta191977649''')&lt;br /&gt;
:* Added [[getVehicleEntryPoints]] ([https://github.com/multitheftauto/mtasa-blue/commit/bf588c163cd5bc134771e3842a6585212f06307f bf588c1] by '''MegadreamsBE''')&lt;br /&gt;
:* Added [[setVehicleSmokeTrailEnabled]] and [[isVehicleSmokeTrailEnabled]] for planes ([https://github.com/multitheftauto/mtasa-blue/commit/a5dfc5223358127299511b618ab29da08ff23030 a5dfc52] by '''Proxy-99''')&lt;br /&gt;
:* Added [[setVehicleRotorState]] and [[getVehicleRotorState]] for planes and helicopters ([https://github.com/multitheftauto/mtasa-blue/commit/c7644f2773c37c4e3d40b00807f2e962daca83b6#diff-9a175949acc865a4deea435d73c2082716ab68c6811ef1a657783f3d420dc00fR165 c7644f2] by '''FileEX''')&lt;br /&gt;
:* Added '''vehicle audio''' functions: ([https://github.com/multitheftauto/mtasa-blue/commit/53ee579670ef4ecec28f44627ff99321bba48cbd 53ee579] by '''TheNormalnij''')&lt;br /&gt;
::* [[setVehicleModelAudioSetting]]&lt;br /&gt;
::* [[getVehicleModelAudioSettings]]&lt;br /&gt;
::* [[resetVehicleModelAudioSettings]]&lt;br /&gt;
::* [[setVehicleAudioSetting]]&lt;br /&gt;
::* [[getVehicleAudioSettings]]&lt;br /&gt;
::* [[resetVehicleAudioSettings]]&lt;br /&gt;
&lt;br /&gt;
* New '''camera''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/40ec398bb15e775d1552286eb86fe7aa0dffefa4 40ec398], [https://github.com/multitheftauto/mtasa-blue/commit/d9c2793de2a9f0782ec59cf0ef9907abf935d421 d9c2793] by '''Tracer''')&lt;br /&gt;
:* [[shakeCamera]]&lt;br /&gt;
:* [[resetShakeCamera]]&lt;br /&gt;
&lt;br /&gt;
* New '''game-time''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/b8b7ce555e2f0f0dd74425ac7c91786374513bee b8b7ce5] by '''Proxy-99''')&lt;br /&gt;
:* [[setTimeFrozen]]&lt;br /&gt;
:* [[isTimeFrozen]]&lt;br /&gt;
:* [[resetTimeFrozen]]&lt;br /&gt;
&lt;br /&gt;
* New [[element]] functions&lt;br /&gt;
:* Added [[setElementBoneQuaternion]] and [[getElementBoneQuaternion]] ([https://github.com/multitheftauto/mtasa-blue/commit/10098b0984bf5d5955ea1764e28f616c8a60714f 10098b0] by '''gownosatana''')&lt;br /&gt;
:* Added [[setElementLighting]] ([https://github.com/multitheftauto/mtasa-blue/commit/90fd98a6381991cfa926a9a65b9b934d0343e2b1 90fd98a] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[browser]] functions&lt;br /&gt;
:* Added [[isBrowserGPUEnabled]] ([https://github.com/multitheftauto/mtasa-blue/commit/bfdfdb5f44726df85626e6e3e06c2a319c0c8962 bfdfdb5] by '''Lpsd''')&lt;br /&gt;
&lt;br /&gt;
* New '''weapons''' functions&lt;br /&gt;
:* Added [[setWeaponRenderEnabled]] &amp;amp; [[isWeaponRenderEnabled]] ([https://github.com/multitheftauto/mtasa-blue/commit/efed59b7dc7b076219f1c8a868ef8aa028582127 efed59b] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
====Events====&lt;br /&gt;
* Added [[onClientCoreCommand]] ([https://github.com/multitheftauto/mtasa-blue/commit/b2cf02943924c4972d2a695cdbfd7c9873fc3cbb b2cf029] by '''Pieter-Dewachter''')&lt;br /&gt;
&lt;br /&gt;
* Added [[onClientBrowserConsoleMessage]] ([https://github.com/multitheftauto/mtasa-blue/pull/3676 #3676], [https://github.com/multitheftauto/mtasa-blue/commit/d296a653c5ce2ecfd4f7150d74391b703b773baf d296a65] by '''gownosatana''' and '''Tracer''')&lt;br /&gt;
&lt;br /&gt;
=== Server ===&lt;br /&gt;
====Functions====&lt;br /&gt;
* New [[ACL]] functions&lt;br /&gt;
:* Added [[aclObjectGetGroups]] ([https://github.com/multitheftauto/mtasa-blue/commit/cf46bd8487bdb2d0cafdab1f43936357f670fe10 cf46bd8] by '''Tracer''')&lt;br /&gt;
&lt;br /&gt;
* New '''acl-account''' functions&lt;br /&gt;
:* Added [[getAccountType]] ([https://github.com/multitheftauto/mtasa-blue/commit/545f54b6ae0bfc721abba12402ad3787ed9ae811 545f54b] by '''Tracer''')&lt;br /&gt;
:* Added [[setAccountSerial]] ([https://github.com/multitheftauto/mtasa-blue/commit/a0c2e410f225ebd245a7c5b8031812cf94360097 a0c2e41] by '''camargo2019''')&lt;br /&gt;
&lt;br /&gt;
* New [[vehicle]] functions&lt;br /&gt;
:* Added new vehicle respawn functions ([https://github.com/multitheftauto/mtasa-blue/commit/1ff7137fd4477626d7ef4abfb1c696872cdf0eab 1ff7137], [https://github.com/multitheftauto/mtasa-blue/commit/d93287de761e568400b3b555a277e4ead6546ca3 d93287d] by '''Tracer''')&lt;br /&gt;
::* [[isVehicleRespawnable]]&lt;br /&gt;
::* [[getVehicleRespawnDelay]]&lt;br /&gt;
::* [[getVehicleIdleRespawnDelay]]&lt;br /&gt;
&lt;br /&gt;
* Added [[createBuilding]] to server-side also ([https://github.com/multitheftauto/mtasa-blue/commit/6e221298f4998c576ebf5a783cd0761b89117a7a 6e22129] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
* Security improvements for element-data system ([https://github.com/multitheftauto/mtasa-blue/commit/750d09adb9fd35f4c1b7786966b7ca292e35c200 750d09a] by '''TheNormalnij''')&lt;br /&gt;
:* Added [[onPlayerChangesProtectedData]] event&lt;br /&gt;
:* Added '''elementdata_whitelisted''' tag to the '''mtaserver.conf'''&lt;br /&gt;
:* Added '''clientChangesPolicy''' argument to the [[setElementData]].&lt;br /&gt;
&lt;br /&gt;
* Added new [[Server_mtaserver.conf|mta_server.conf]] tags:&lt;br /&gt;
&amp;lt;!--:* Added object specific contact radius and limit contact check. This can be set in the [[server_mtaserver.conf#object_contact_sync_radius|mtaserver.conf]]([https://github.com/multitheftauto/mtasa-blue/commit/6085796cafd1008ed4a74eae614d651c6c734741 6085796] by '''MegadreamsBE''')--&amp;gt;&lt;br /&gt;
:* Added [[Server_mtaserver.conf#vehicle_contact_sync_radius#vehicle_contact_sync_radius|vehicle_contact_sync_radius]] tag ([https://github.com/multitheftauto/mtasa-blue/commit/e3338c2fbbdb500c4ce28dc0677ceadef1f1ca4c e3338c2] by '''MegadreamsBE''')&lt;br /&gt;
:* Added [[Server_mtaserver.conf#vehicle_contact_sync_radius#check_duplicate_serials|check_duplicate_serials]] tag ([https://github.com/multitheftauto/mtasa-blue/commit/e094942b75117a49cae8c35d6508f37d0cf511fe e094942] by '''Nico834''')&lt;br /&gt;
:* Added [[Server_mtaserver.conf#vehicle_contact_sync_radius#elementdata_whitelisted|elementdata_whitelisted]] tag [https://github.com/multitheftauto/mtasa-blue/commit/750d09adb9fd35f4c1b7786966b7ca292e35c200 750d09a] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
====Events====&lt;br /&gt;
* Added [[onExplosion]] event ([https://github.com/multitheftauto/mtasa-blue/commit/9edffc4997579583407e8c2910264b344cf626a3 9edffc4] by '''botder''')&lt;br /&gt;
* Added [[onPlayerProjectileCreation]] and [[onPlayerDetonateSatchels]] events ([https://github.com/multitheftauto/mtasa-blue/commit/bc404021f66228fb00f1f136a606425da6075daa bc40402] by '''Zangomangu''')&lt;br /&gt;
* Added [[onPlayerTriggerEventThreshold]] event ([https://github.com/multitheftauto/mtasa-blue/commit/eae47fe2f432d9053c425fd515ea27f963c254ec eae47fe] by '''Lpsd''')&lt;br /&gt;
* Added [[onResourceStateChange]] ([https://github.com/multitheftauto/mtasa-blue/commit/cfe9cd9d0006580e7e70dc9e93672e3d1d3b9836 cfe9cd9] by '''Tracer''')&lt;br /&gt;
* Added [[onPlayerTeamChange]] ([https://github.com/multitheftauto/mtasa-blue/commit/c4e18c618db299ea05f5395c798f2a7d6515f5ea c4e18c6] by '''esmail9900''')&lt;br /&gt;
* Added [[onAccountCreate]] and [[onAccountRemove]] ([https://github.com/multitheftauto/mtasa-blue/commit/545f54b6ae0bfc721abba12402ad3787ed9ae811 545f54b] by '''Tracer''')&lt;br /&gt;
* Added [[onPlayerTriggerInvalidEvent]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b4122d35f725e4d258b408253c93e7cbd2ec783 5b4122d] by '''Lpsd''')&lt;br /&gt;
* Added [[onPlayerChangesWorldSpecialProperty]] event ([https://github.com/multitheftauto/mtasa-blue/commit/bbf511d4c5a94fc42d4ead201446fcef8ae430ec bbf511d] by '''Nico834''')&lt;br /&gt;
* Added [[onPlayerChangesProtectedData]] event ([https://github.com/multitheftauto/mtasa-blue/commit/750d09adb9fd35f4c1b7786966b7ca292e35c200 750d09a] by '''TheNormalnij''')&lt;br /&gt;
* Added [[onShutdown]] ([https://github.com/multitheftauto/mtasa-blue/commit/aa20c7d279ac92f1f98c54e79fda7fe00de64e50 aa20c7d] by '''FileEX''')&lt;br /&gt;
* Added [[onPedWeaponReload]] and [[onPlayerWeaponReload]] ([https://github.com/multitheftauto/mtasa-blue/commit/e71f4828b46bb69b9622a11d0f700a79f986ee9b e71f482] by '''Nico834''')&lt;br /&gt;
* Added [[onPlayerTeleport]] ([https://github.com/multitheftauto/mtasa-blue/commit/4000ea4edb37d2d2caeb60a5977f7a38c8a22f06 a38e6ac] by '''imfelipedev''')&lt;br /&gt;
* Added [[onAccountNameChange]] ([https://github.com/multitheftauto/mtasa-blue/commit/078d46b13164c940f3a713039e1a1be6d52c6c76 078d46b] by '''Davis22d''')&lt;br /&gt;
&lt;br /&gt;
== 77 Changes and Bug Fixes ==&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Fixed random toggle of world special properties ([https://github.com/multitheftauto/mtasa-blue/commit/bf95b1d16e31f36899350e2acac4bb8adfad5cdd bf95b1d] by '''samr46''')&lt;br /&gt;
* Many debugscript fixes&lt;br /&gt;
:* Fixed [[onClientDebugMessage]]/[[onDebugMessage]] recognizing level 4 as 0 ([https://github.com/multitheftauto/mtasa-blue/commit/783971efbdfcae622dbc03fd7647c337c2a3a306 783971e] by '''Tracer''')&lt;br /&gt;
:* Fixed outputDebugString level 4 colors ([https://github.com/multitheftauto/mtasa-blue/commit/5d4d7df3b8ff703cf954f3af394c811c489dcb18 5d4d7df] by '''MegadreamsBE''')&lt;br /&gt;
:* Fixed [[outputDebugString]] level 4 not being logged ([https://github.com/multitheftauto/mtasa-blue/commit/1951a5e62d35b2cf4ec292d294f8c818b8463418 1951a5e] by '''MegadreamsBE''')&lt;br /&gt;
:* Fixed outputDebugString with level 4 not showing ([https://github.com/multitheftauto/mtasa-blue/commit/b459973f8ad00aff79042a338a70700a21b426dc b459973] by '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
* Ped sync improvements ([https://github.com/multitheftauto/mtasa-blue/commit/f5b599c9f45777f924f7980cadb2d3cc6431d8b8 f5b599c] by '''tederis''')&lt;br /&gt;
* Fixed &amp;quot;Using setElementHealth on a dead ped makes it invincible&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/836888379dc3e434752ad20c10a8d7d33ffc65a2 8368883] by '''FileEX''')&lt;br /&gt;
* Fixed setting player model resets their current weapon slot ([https://github.com/multitheftauto/mtasa-blue/commit/f7ce562b645cb05a18658df62d093b753b881bb9 f7ce562] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where ''&amp;quot;arrow&amp;quot;'' and ''&amp;quot;checkpoint&amp;quot;'' markers ignored the alpha color ([https://github.com/multitheftauto/mtasa-blue/commit/7988852cf3af9e78f662d76544dc00db408b5c87 7988852] by '''FileEX''')&lt;br /&gt;
* Fixed the goggle effect resetting after changing skin ([https://github.com/multitheftauto/mtasa-blue/commit/1dd291409f791891b54ccf6b1d1cebe08cff13c0 1dd2914] by '''Proxy-99''')&lt;br /&gt;
* Fixed satchels detaching after changing skin ([https://github.com/multitheftauto/mtasa-blue/commit/d93dbf2ca598bf3508364bc7c6337d82c3d9ccb2 d93dbf2] by '''FileEX''')&lt;br /&gt;
* Added '''resourceName''' global variable and added current resource as default argument for [[getResourceName]] ([https://github.com/multitheftauto/mtasa-blue/commit/49fb6c68a27ad85e5abcd563f4c4f8c568305fdb 49fb6c6] by '''Nico834''')&lt;br /&gt;
* Added new parameters '''animGroup''' &amp;amp; '''animID''' for wasted events [[onPlayerWasted]], [[onPedWasted]], [[onClientPlayerWasted]] ([https://github.com/multitheftauto/mtasa-blue/commit/ecd6ed98ca129e7f45bda14384a503bee09495a7 ecd6ed9] by '''Nico834''' and '''G-Moris''')&lt;br /&gt;
* Added optional '''ignoreAlphaLimits''' argument for [[createMarker]] to maintain backward compatibility after adding the ability to change alpha for arrow and checkpoint markers ([https://github.com/multitheftauto/mtasa-blue/commit/121048cb9a14c28dcefca9bf2d4e955ef920a087 121048c] by '''FileEX''')&lt;br /&gt;
* Added optional '''property''' argument for [[getVehicleHandling]] ([https://github.com/multitheftauto/mtasa-blue/commit/a08e38d6507fdc1c051c2b84727c83dd9c418649 a08e38d] by '''XJMLN''')&lt;br /&gt;
* Fixed health value issues ([https://github.com/multitheftauto/mtasa-blue/commit/612f9a6715059baa43182e891258d9c3ceb19591 612f9a6] by '''Tracer''')&lt;br /&gt;
* Fixed [[getTimerDetails]] negative remaining duration ([https://github.com/multitheftauto/mtasa-blue/commit/1c6cab5a94c8c6ff5cf9b1fc0c9bc04808c922f8 1c6cab5] by '''jvstns''')&lt;br /&gt;
* Fixed changing [[setElementCollisionsEnabled]] doesn't update contact element ([https://github.com/multitheftauto/mtasa-blue/commit/71c683f547aac34e876601d24c881227fe3ca05f 71c683f] by '''FileEX''')&lt;br /&gt;
* Removed ability to skip [[addDebugHook]] ([https://github.com/multitheftauto/mtasa-blue/commit/2fecd74fdd453efdcbdddfd8f3fa3c092640cf9f 2fecd74] by '''PlatinMTA''')&lt;br /&gt;
* Fixed hydraulics stopping working after using [[setVehicleHandling]] ([https://github.com/multitheftauto/mtasa-blue/commit/f96836397a075585d4d112eb7d0240f1abf361d4 f968363] by '''FileEX''')&lt;br /&gt;
* Fixed helicopter rotor unaffected by vehicle alpha ([https://github.com/multitheftauto/mtasa-blue/commit/55d39225254c0b9961c1423b0d5695beff20072b 55d3922] by '''FileEX''')&lt;br /&gt;
* Add '''spawnFlyingComponent &amp;amp; breakGlass''' arguments for [[setVehiclePanelState]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b69d700c848e36b2f427bbc6ba5b2c905592783 5b69d70] by '''FileEX''')&lt;br /&gt;
* Fixed armor synchronization ([https://github.com/multitheftauto/mtasa-blue/commit/583e675da976fbf90f45804ad834d8fe33c779a1 583e675] by '''Nico834''')&lt;br /&gt;
* Fixed jetpack disappearing after changing position and coming back after changing skin ([https://github.com/multitheftauto/mtasa-blue/commit/de26a9e98519350f0486290ce886595068c02470 de26a9e] by '''FileEX''')&lt;br /&gt;
* Added support for '''ZLIB''' compression to [[encodeString]] &amp;amp; [[decodeString]]. ([https://github.com/multitheftauto/mtasa-blue/commit/6230161f8d0c83b60aec3f4afa5be88dd213b88b 6230161] by '''samr46''')&lt;br /&gt;
* Fixed a bug where hex color codes were included in the chat message length. ([https://github.com/multitheftauto/mtasa-blue/commit/9a0b1d59233f7001e991262b4df9d1c17850dc08 9a0b1d5] by '''Shady.lua''')&lt;br /&gt;
&lt;br /&gt;
=== Client ===&lt;br /&gt;
* Update d3dcompiler_47.dll from CEF ([https://github.com/multitheftauto/mtasa-blue/commit/75a1a298113721343090a06d60394f63f64df9ca 75a1a29] and [https://github.com/multitheftauto/mtasa-blue/commit/6d8fd8cc2fe7377318583f70abf58dcdb7d09cb0 6d8fd8c] by '''patrikjuvonen''')&lt;br /&gt;
* Updated translations from Crowdin ([https://github.com/multitheftauto/mtasa-blue/commit/29baf29a0143706eb08ef76c4743a452a7f83600 29baf29] by '''patrikjuvonen''')&lt;br /&gt;
:* Added Azerbaijani to client languages&lt;br /&gt;
* Resolved cursor being invisible with main menu open in certain scenarios ([https://github.com/multitheftauto/mtasa-blue/commit/bb1f675e6fee0ca3967f05afb5d2592dec9459b2 bb1f675] by '''Lpsd''')&lt;br /&gt;
* Partially fixed screen flickering on high memory usage ([https://github.com/multitheftauto/mtasa-blue/commit/1a886460a9fab1041cfba38078ae544b0fa51240 1a88646] by '''Zangomangu''')&lt;br /&gt;
* Added ''texture hit info'' parameter to [[processLineOfSight]] ([https://github.com/multitheftauto/mtasa-blue/commit/86f3344d1371a9783c2c7b755b895160a03ff6cd 86f3344] by '''Pirulax''')&lt;br /&gt;
* Fixed CStreamingSA::GetUnusedStreamHandle ([https://github.com/multitheftauto/mtasa-blue/commit/38624a4c2d18f4b60064d49069d3bcd81fbb4385 38624a4] by '''tederis''')&lt;br /&gt;
* IMG count extension ([https://github.com/multitheftauto/mtasa-blue/commit/1a60f6094b6660d29cabae780e6fbea5f5f1abf2 1a60f60] by '''tederis''')&lt;br /&gt;
* Fixed a desync state after aborted carjacking ([https://github.com/multitheftauto/mtasa-blue/commit/3f510fcdc7722cdfcb2e09ea43990b56aa43162b 3f510fc] by '''Zangomangu''')&lt;br /&gt;
* Allowed allocating clump models ([https://github.com/multitheftauto/mtasa-blue/commit/428561f1ebab49b8370ef0f022510cd67e98ab59 428561f] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash in CEF init ([https://github.com/multitheftauto/mtasa-blue/commit/c782826c955dfbdbaa67852a245e1c601d6b9f2c c782826] by '''TheNormalnij''')&lt;br /&gt;
* Fixed &amp;quot;Changing vehicle model from doorless or &amp;quot;doorful&amp;quot; causes doors to fall off&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/d6659dae263e2883d9e479ca271f0e9c8e622f95 d6659da] by '''FileEX''')&lt;br /&gt;
* Fixed &amp;quot;Wheel visibility when using setVehicleWheelStates&amp;quot;  ([https://github.com/multitheftauto/mtasa-blue/commit/51c9257a427957642932a216bd76cb7de59fea1b 51c9257] by '''FileEX''')&lt;br /&gt;
* Added new world special property ''burnflippedcars'' ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
* Streaming buffer restore and fixes ([https://github.com/multitheftauto/mtasa-blue/commit/6c86ebbf0801c45d5e0bcbb9d9f2e8fd55525b15 6c86ebb] by '''Pirulax''')&lt;br /&gt;
* Fixed Unicode file path passed in CClientIMG ([https://github.com/multitheftauto/mtasa-blue/commit/c57f07bfad8b02953dbe7b2b6e9b9de08ba88226 c57f07b] by '''TheNormalnij''')&lt;br /&gt;
* Added new world special property ''fireballdestruct'' ([https://github.com/multitheftauto/mtasa-blue/commit/219ad73d600140724eefcf5ca4040ac417cdee12 219ad73] by '''samr46''')&lt;br /&gt;
* Fixed &amp;quot;Hide question box when hiding main menu&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/4beff0447f093c66594a5f32ad5e52c7d7188ce9 4beff04] by '''XJMLN''')&lt;br /&gt;
* Fixed engineFreeModel regression ([https://github.com/multitheftauto/mtasa-blue/commit/b52500e92fb2591c092a6e66121471f098a2e044 b52500e] by '''TheNormalnij''')&lt;br /&gt;
* Fixed assert when model info is missing ([https://github.com/multitheftauto/mtasa-blue/commit/d431e5e16120b63beafbfe69110da601d12a76bb d431e5e] by '''TheNormalnij''')&lt;br /&gt;
* Fixed engineFreeModel crashes ([https://github.com/multitheftauto/mtasa-blue/commit/c289c22fb9a13730b7fd793752d84adbf2b928ee c289c22] by '''TheNormalnij''')&lt;br /&gt;
* Filtered URLs in requestBrowserDomains with incorrect symbols ([https://github.com/multitheftauto/mtasa-blue/commit/74bbb068acc6757ff0e04d0c63b999236e51ce63 74bbb06] by '''TheNormalnij''')&lt;br /&gt;
* Fixed issues with ped shaders ([https://github.com/multitheftauto/mtasa-blue/commit/3bc1e6d98ab13a9e7db95cc616b4645dc761889b 3bc1e6d] by '''Merlin''')&lt;br /&gt;
* Fixed 3D primitives disappearing ([https://github.com/multitheftauto/mtasa-blue/commit/04a1e2ba9157e4a1a91297f91554b72a87bf0ed4 04a1e2b] by '''tederis''')&lt;br /&gt;
* Fixed [[svgSetSize]] issues ([https://github.com/multitheftauto/mtasa-blue/commit/721c2b6d0f0c4ab016be079f1d4e28dec0123a6d 721c2b6] by '''Nico834''')&lt;br /&gt;
* Fixed the marker flickering issue during water cannon effects ([https://github.com/multitheftauto/mtasa-blue/commit/e83f700ee24904c0411b4dad3e695b3c3e30d9e4 e83f700] by '''Merlin''')&lt;br /&gt;
* Fixed buildings removal ([https://github.com/multitheftauto/mtasa-blue/commit/1b40db7cb5b63966ee97d0cbe79190360e1d32a0 1b40db7] by '''tederis''')&lt;br /&gt;
* Fixed crashes caused by [[createBuilding]] with [[engineRequestModel]] ([https://github.com/multitheftauto/mtasa-blue/commit/6245a68f3d97fc222d78fbc66b67f422a13710bf 6245a68] by '''TheNormalnij''')&lt;br /&gt;
* Fixed wrong getModelMatrix result for buildings ([https://github.com/multitheftauto/mtasa-blue/commit/f691946bc2d3dac75bd27d31886cd6b66d55811d f691946] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crashes for ''timed-object'' in [[engineRequestModel]] ([https://github.com/multitheftauto/mtasa-blue/commit/229389a4bd1c4c02010ba27ce26a428b41b68560 229389a] by '''TheNormalnij''')&lt;br /&gt;
* Fixed incorrect colors for 3D draws ([https://github.com/multitheftauto/mtasa-blue/commit/1f2c6e75fb71b01f0053f151e766a232ed33692b 1f2c6e7] by '''Nico834''')&lt;br /&gt;
* Add missing definition GuiGridList::getColumnWidth ([https://github.com/multitheftauto/mtasa-blue/commit/b34b1d5362291bcf00c7a0a0b694f60e1dccb363 b34b1d5] by '''Lpsd''')&lt;br /&gt;
* Fixed [[resetPedVoice]] not working at all ([https://github.com/multitheftauto/mtasa-blue/commit/3d8bd504f009fc2aa66e1dc9d35427a889ccd6aa 3d8bd50] by '''Tracer''')&lt;br /&gt;
* Added LOD support for buildings ([https://github.com/multitheftauto/mtasa-blue/commit/77ab3e64a3c6dacdcee02a223b67aec6c5b97ec2 77ab3e6] by '''TheNormalnij''')&lt;br /&gt;
* Added render stages for 3D primitives (new ''stage'' parameter) ([https://github.com/multitheftauto/mtasa-blue/commit/841447684c2d1992656555f81d73da52b2ce5c4f 8414476] by '''tederis''')&lt;br /&gt;
* Added disable option for [[engineSetModelPhysicalPropertiesGroup]] ([https://github.com/multitheftauto/mtasa-blue/commit/b6216cad058582b0feb34e98e94531d4acbf7c5b b6216ca] by '''TheNormalnij''')&lt;br /&gt;
* Fixed return correct value for stuntDistance parameter ([https://github.com/multitheftauto/mtasa-blue/commit/1f464d61c8c5f1400faa5472ccb67d2436d52903 1f464d6] by '''XJMLN''')&lt;br /&gt;
* Fixed [[engineRestoreModelPhysicalPropertiesGroup]] restores incorrect group ([https://github.com/multitheftauto/mtasa-blue/commit/291dfb4bc9bd72307a4ba4b42ffcbfc03ded4e38 291dfb4] by '''TheNormalnij''')&lt;br /&gt;
* Fixed OGG sound files can't be played as RAW data ([https://github.com/multitheftauto/mtasa-blue/commit/2764b7983c4e1bde20b894ebcfef5f230b149030 2764b79] by '''FileEX''')&lt;br /&gt;
* Implement [[getElementBoundingBox]] for buildings ([https://github.com/multitheftauto/mtasa-blue/commit/7b228daea3e0dc22d808abcf0eb568d99efcf63d 7b228da] by '''TheNormalnij''')&lt;br /&gt;
* Fixed streaming size check after [[engineAddImage]] ([https://github.com/multitheftauto/mtasa-blue/commit/5cdc04d6d61f40e89a5da3d27ae9575f4a419a08 5cdc04d] by '''TheNormalnij''')&lt;br /&gt;
* Fixed [[removeWorldModel]] crash ([https://github.com/multitheftauto/mtasa-blue/commit/ae98b04753b54208961759b295bef44f0ffafe43 ae98b04] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash when using [[extinguishFire]] in [[onClientVehicleDamage]] event ([https://github.com/multitheftauto/mtasa-blue/commit/d6ae4e9e24b0b7de704a3cbeec25dfd661b4a3fc d6ae4e9] by '''FileEX''')&lt;br /&gt;
* Fixed weapon models being invisible when using the jetpack with [[setJetpackWeaponEnabled]] ([https://github.com/multitheftauto/mtasa-blue/commit/a68c2c4232c28c6ba5595a814b89be976c4fa9c3 a68c2c4] by '''FileEX''')&lt;br /&gt;
* Fixed animations validation to avoid crashes ([https://github.com/multitheftauto/mtasa-blue/commit/27a24b551d86c6fbf9ee308603f24b011e941399 27a24b5] by '''G-Moris''')&lt;br /&gt;
* Fixed a bug where the &amp;quot;attacker&amp;quot; parameter is always nil in the [[onClientObjectBreak]] event if the object is glass ([https://github.com/multitheftauto/mtasa-blue/commit/dca5e2065af4a0195526541f9a8285db0401616e dca5e20] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where the [[onClientObjectBreak]] event was not triggered if the glass was broken by an explosion ([https://github.com/multitheftauto/mtasa-blue/commit/dca5e2065af4a0195526541f9a8285db0401616e dca5e20] by '''FileEX''')&lt;br /&gt;
* Fixed a bug that prevented players from switching weapons with an active jetpack ([https://github.com/multitheftauto/mtasa-blue/commit/180fbc0b5fdba95450e7a519f78f7588849349bf 180fbc0] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where hitElement in the [[onClientVehicleCollision]] event was always nil for projectiles ([https://github.com/multitheftauto/mtasa-blue/commit/43cc7b3e34eb4680120eb8ebf40d31d845850df2 43cc7b3] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where hydra flares did not work with [[createProjectile]] ([https://github.com/multitheftauto/mtasa-blue/commit/2bdac16d1d868f396786fbfdcfa2595004e1fff5 2bdac16] by '''FileEX''')&lt;br /&gt;
* Fixed inconsistent extra component names ([https://github.com/multitheftauto/mtasa-blue/commit/d4f884935626c638dca0f7f45c71cfb22c4e2d72 d4f8849] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where after changing the key in the bind settings, only the key for the &amp;quot;down&amp;quot; status changed, while the &amp;quot;up&amp;quot; key remained unchanged.([https://github.com/multitheftauto/mtasa-blue/commit/3ebefc37951e24cbfb25035d99045d67571b5324 3ebefc3] by '''FileEX''')&lt;br /&gt;
* Maked frame graph scale accordingly to resolution ([https://github.com/multitheftauto/mtasa-blue/commit/e431474c676a253004a26d86fc9e1a6100d329d4 e431474] by '''ffsPLASMA''')&lt;br /&gt;
* Fixed old [[setElementModel]] memory leak ([https://github.com/multitheftauto/mtasa-blue/commit/4e7afa2586c6992a75ac5312378c1096d87148ae 4e7afa2] by '''tederis''')&lt;br /&gt;
* Fixed [[getObjectProperty]] returns invalid ''air_ressistance'' property ([https://github.com/multitheftauto/mtasa-blue/commit/b51e1116283e9ec453881d3c48229b96c6198d5a b51e111] by '''FileEX''')&lt;br /&gt;
* Fixed missing states in [[getPedControlState]] ([https://github.com/multitheftauto/mtasa-blue/commit/3333a115f1a14f00378161681aeba609b4e993c0 3333a11] by '''FileEX''')&lt;br /&gt;
* Fixed for randomly bright objects after weapon change  ([https://github.com/multitheftauto/mtasa-blue/commit/9b9120c73ec97bf1b2f24703889a62fc19326f1f 9b9120c] by '''FileEX''')&lt;br /&gt;
* Fixed some small problems with Device Selection Dialog ([https://github.com/multitheftauto/mtasa-blue/commit/6f90880bee4d9169d4eda5f6afc63f4ed1bf652f 6f90880] by '''forkerer''')&lt;br /&gt;
* Allow dynamic models to be created as buildings ([https://github.com/multitheftauto/mtasa-blue/commit/642438ec1302daba50b6f6069844e96cbaa31818 642438e] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash when disconnecting from server after creating projectiles ([https://github.com/multitheftauto/mtasa-blue/commit/9ab6104d9c1ec246fde29ae6bf303ae5848bbbe1 9ab6104] by '''TheNormalnij''')&lt;br /&gt;
* Allow client peds to enter/exit client vehicles ([https://github.com/multitheftauto/mtasa-blue/pull/3678 #3678], [https://github.com/multitheftauto/mtasa-blue/commit/67beec77b06897552dc2c756c15283bfdc19b143 67beec7] by '''gownosatana''' and '''Tracer''')&lt;br /&gt;
* Use immersive dark mode on game window ([https://github.com/multitheftauto/mtasa-blue/commit/fd9520498919ae191c718c49b2a5c742bbbf8239 fd95204] by '''FileEX''')&lt;br /&gt;
* Added damageable objects support for [[engineRequestModel]] ([https://github.com/multitheftauto/mtasa-blue/commit/21593b9239765343ad5a4975c9f8424e571a036d 21593b9] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash with [[setElementHealth]] in [[onClientPedDamage]] event ([https://github.com/multitheftauto/mtasa-blue/commit/2d3397df56827f7c218689873f8b4741ea9af44e 2d3397d] by '''FileEX''')&lt;br /&gt;
* Fixed [[setPedControlState]] is aborted when ped created/player join ([https://github.com/multitheftauto/mtasa-blue/commit/8117ebcb95d3e3c35c400ee073a6ebab81e3f9fb 8117ebc] by '''FileEX''')&lt;br /&gt;
* Added '''buildings''' support to [[engineApplyShaderToWorldTexture]] ([https://github.com/multitheftauto/mtasa-blue/commit/fe1dd063170aef6a866bc241c305278a73200fdd fe1dd06] by '''TheNormalnij''')&lt;br /&gt;
* Fixed unintended behavior for ped control states ([https://github.com/multitheftauto/mtasa-blue/commit/a38e6acaf5c0fd83b5627660439f36d380cd26e6 a38e6ac] by '''Nico834''')&lt;br /&gt;
* Fixed SVG colors bug ([https://github.com/multitheftauto/mtasa-blue/commit/04f297b7b1aecb3753c8fbfa19fa9627abf422b4 04f297b] by '''TheNormalnij''')&lt;br /&gt;
* Fixed &amp;quot;CEF Launcher&amp;quot; process remaining after closing MTA ([https://github.com/multitheftauto/mtasa-blue/commit/a6c00278a5329e3b2b870b298d78565b14a7bed2 a6c0027] by '''botder''')&lt;br /&gt;
* Removed ''login'' cmd from chat history ([https://github.com/multitheftauto/mtasa-blue/commit/4639aea8a5544bfa4460bfcc8bba1d5b032e931a 4639aea] by '''PlatinMTA''')&lt;br /&gt;
* Fixed in-game updater dialog incorrectly showing 0% progress ([https://github.com/multitheftauto/mtasa-blue/commit/40d9ac11a9864d4f26c9eb1979e3a30ec0624061 40d9ac1] by '''Dutchman101''')&lt;br /&gt;
* Fixed invalid references counter to TXD after [[engineSetModelTXDID]] (top 1 crash according to players crash stats) ([https://github.com/multitheftauto/mtasa-blue/commit/1b7e9e82997fb4ac2eec5722d9134299902a16e6 1b7e9e8] by '''TheNormalnij''')&lt;br /&gt;
* Fixed server cache memory leak on connecting to another server ([https://github.com/multitheftauto/mtasa-blue/commit/e3476592fc46dc28f9da98f525797ae94ebf3ec3 e347659] by '''Lpsd''')&lt;br /&gt;
* Added the ability to set CPU affinity (CPU 0) in the '''advanced''' tab in the settings ([https://github.com/multitheftauto/mtasa-blue/commit/d04c92b24e7b85f6015fa93192ddda06e9023c85 d04c92b] by '''FileEX''')&lt;br /&gt;
* Fixed crash in ''CClientDisplayManager'' (top 2 crash according to players crash stats) ([https://github.com/multitheftauto/mtasa-blue/commit/0df0a4b40f7aea7c16473d0844a03fcece888420 0df0a4b] by '''Lpsd''')&lt;br /&gt;
* Set main menu FPS limit to current display refresh rate ([https://github.com/multitheftauto/mtasa-blue/commit/acbcc8e03ba8ac677a9c2c8182fb6f24868cae46 acbcc8e] by '''samr46''')&lt;br /&gt;
* [[setSoundEffectParameter]] and [[getSoundEffectParameters]] can be now used also on players! ([https://github.com/multitheftauto/mtasa-blue/commit/20851ecf7d69cc42fc00a62446a87d7e99c1e19d 20851ec] by '''tederis''')&lt;br /&gt;
* Fixed elements sometimes being visible from other dimensions in the current dimension ([https://github.com/multitheftauto/mtasa-blue/commit/9af03b3263a5a320e2f92140f6caa6c94b9fe9a5 9af03b3], [https://github.com/multitheftauto/mtasa-blue/commit/1dff560099459bc1b8248ef50643886158b0d731 1dff560] by '''FileEX''' &amp;amp; '''tederis''')&lt;br /&gt;
* Fixed bug &amp;quot;Copying text from CEF Browser shows Chinese characters in console&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/892beb0457b461d5afd5d91e86763181bdb972d3 892beb0] by '''ColombuxMaximus''')&lt;br /&gt;
* Fixed a bug where hidden vehicle components became visible after changing the variant or handling ([https://github.com/multitheftauto/mtasa-blue/commit/1d81347ee7e2614cd94e4b1807947d2c98b3305f 1d81347] by '''ColombuxMaximus''')&lt;br /&gt;
* Fixed persian characters in main menu &amp;amp; CEGUI ([https://github.com/multitheftauto/mtasa-blue/commit/efb2edfa853aa9a95f39ed9a843c3230b2e627cf efb2edf] by '''tzwer''')&lt;br /&gt;
* Added new movement states to [[getPedMoveState]] and fixed incorrect returning of &amp;quot;fall&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/c43c1b98b8ec0b7253d98c65b405ead482a765d8 c43c1b9], [https://github.com/multitheftauto/mtasa-blue/commit/797331fadbca4367f6cfd43633e48af44a99a115 797331f] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where friendly fire did not prevent fire damage ([https://github.com/multitheftauto/mtasa-blue/commit/9c4397707dd2a94d8a6124d6b502d39793f0d2ba 9c43977] by '''FileEX''')&lt;br /&gt;
* Fixed [[engineReplaceModel]] memory leak &amp;amp; potential crash ([https://github.com/multitheftauto/mtasa-blue/commit/1dbbfd025c5ff791f31e1ef4f255514198f88d0c 1dbbfd0] by '''FileEX''')&lt;br /&gt;
* Fixed '''ALT + F4''' not working ([https://github.com/multitheftauto/mtasa-blue/commit/93963a98f24fdb5e8374baaddaa6d99260be967e 93963a9] by '''lopezloo''')&lt;br /&gt;
* Fixed [[setPedOnFire]] doesn't cancel '''TASK_SIMPLE_PLAYER_ON_FIRE''' ([https://github.com/multitheftauto/mtasa-blue/commit/2a2f31bccd9d90adfc2b03f1f63248b9d016c725 2a2f31b] by '''FileEX''')&lt;br /&gt;
* Fixed crash related to buildings ([https://github.com/multitheftauto/mtasa-blue/commit/4bcded5c89caffd005b266021d3c1bbd83a554cb 4bcded5] by '''tederis''')&lt;br /&gt;
* Fixed client freeze in some locations on the map ([https://github.com/multitheftauto/mtasa-blue/commit/3a376e479201b30b27488a5a674d7d816397e79a 3a376e4] by '''tederis''')&lt;br /&gt;
* Added disconnect warning when using quick connect while connected to server ([https://github.com/multitheftauto/mtasa-blue/commit/be395665c0f5094793b923e9f4fb94056ccff961 be39566] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
=== Server ===&lt;br /&gt;
* Fixed bullet sync check in CBulletsyncPacket by verifying total ammo instead of clip ammo ([https://github.com/multitheftauto/mtasa-blue/commit/4430abcd1234567890abcdef1234567890abcdef 4430abc] by '''shadylua''')&lt;br /&gt;
* Check deprecated account name length on [[banPlayer]] to fix all players getting kicked ([https://github.com/multitheftauto/mtasa-blue/commit/b5e2332ca5857f3e984467ca0cb8163ec998ea06 b5e2332] by '''patrikjuvonen''')&lt;br /&gt;
* Fixed a crash in CHandlingManager ([https://github.com/multitheftauto/mtasa-blue/commit/b6867a0d2ed0b4ab12a4461c3f1ca7d667bdedbc b6867a0] by '''Olya-Marinova''')&lt;br /&gt;
* Removed min-version lua function from old MTA versions ([https://github.com/multitheftauto/mtasa-blue/commit/222b2720c93f29977fffb722f8d42ea3fb5f790d 222b272] by '''Olya-Marinova''')&lt;br /&gt;
* Disallow loadstring by default ([https://github.com/multitheftauto/mtasa-blue/commit/89e2d375d12deb026ee91fedc5e1ced04dc9a723 89e2d37] by '''srslyyyy''')&lt;br /&gt;
* Added valid values for 'donotbroadcastlan' setting ([https://github.com/multitheftauto/mtasa-blue/commit/f8d4422ad75c0d7f21894f9f868aa37ec6993a35 f8d4422] by '''Dark-Dragon''')&lt;br /&gt;
* Fixed &amp;quot;ped revives when syncer changes&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/af604ae7dfec742661206fb809f149140ce3a960 af604ae] by '''Zangomangu''')&lt;br /&gt;
* Fixed files not unloading after renaming ([https://github.com/multitheftauto/mtasa-blue/commit/2846e2794af1d9d441b7b988f49af521bd765fb0 2846e27] by '''W3lac3''')&lt;br /&gt;
* Added ability to limit client triggered events via [[triggerServerEvent]] ([https://github.com/multitheftauto/mtasa-blue/commit/eae47fe2f432d9053c425fd515ea27f963c254ec eae47fe] by '''Lpsd''')&lt;br /&gt;
* Added FileExists check to CMainConfig::AddMissingSettings ([https://github.com/multitheftauto/mtasa-blue/commit/1ebaa28e0381fb114b946f2f5a4d4bc5834ebd03 1ebaa28] by '''Lpsd''')&lt;br /&gt;
* Added server side weapon related checks ([https://github.com/multitheftauto/mtasa-blue/commit/86448ea52c7ee13e554a907c424aa3c891e51e31 86448ea] by '''NanoBob''')&lt;br /&gt;
* Added [[dbConnect]] option for MySQL ''&amp;quot;use_ssl=0&amp;quot;'' ([https://github.com/multitheftauto/mtasa-blue/commit/e6476767a9b6848467f0d123830dd2f90bd4442d e647676] by '''Lpsd''')&lt;br /&gt;
* Added ''content'' parameter to [[onPlayerPrivateMessage]] event ([https://github.com/multitheftauto/mtasa-blue/commit/79f8ed6a374d62e5cf1ec707b2ba25e3a959f509 79f8ed6] by '''FileEX''')&lt;br /&gt;
* Fix ability to move server-side vehicles that are far away from the player. New parameter can be set in the [[Server_mtaserver.conf#vehicle_contact_sync_radius|mtaserver.conf]] ([https://github.com/multitheftauto/mtasa-blue/commit/e3338c2fbbdb500c4ce28dc0677ceadef1f1ca4c e3338c2] by '''MegadreamsBE''')&lt;br /&gt;
* Added ''sync'' parameter for vehicles ([https://github.com/multitheftauto/mtasa-blue/commit/f88d31306d3c7fadfbc1542c85922612fd00b131 f88d313] by '''znvjder''')&lt;br /&gt;
* Fixed server-side pickup collision size ([https://github.com/multitheftauto/mtasa-blue/commit/49d97513e1eb2e0c96c5aa5a1d542d14131edd76 49d9751] by '''Proxy-99''') &lt;br /&gt;
* Fixed ''CSimBulletsyncPacket'' crash ([https://github.com/multitheftauto/mtasa-blue/commit/ee8bc92907a112a5584844329dbb07cc82326ad1 ee8bc92] by '''G-Moris''')&lt;br /&gt;
* Fixed onVehicleExit doesn't trigger if pulled out ([https://github.com/multitheftauto/mtasa-blue/commit/af4f7facca73bb68238437e6eff3504bd6f1cfe0 af4f7fa] by '''Proxy-99''')&lt;br /&gt;
* Fixed arguments in [[setPedAnimation]] being ignored when nil was passed ([https://github.com/multitheftauto/mtasa-blue/commit/f6f544e6b54054a06497fdf94cd077b862af8055 f6f544e] by '''FileEX''')&lt;br /&gt;
* Fixed Sirens not removed correctly ([https://github.com/multitheftauto/mtasa-blue/commit/9e419620069ec8ad5828c50295c1901685166cf9 9e41962] by '''Proxy-99''')&lt;br /&gt;
* Fixed a bug where [[setPedWeaponSlot]] did not update data in [[getPedWeapon]] and [[getPedWeaponSlot]] ([https://github.com/multitheftauto/mtasa-blue/commit/9615523faf84f584179412fb8e0cc04f9f4ee48f 9615523] by '''FileEX''')&lt;br /&gt;
* Added '''player''' parameter to [[onVehicleExplode]] ([https://github.com/multitheftauto/mtasa-blue/commit/1ec1f5be69d3ef99bd2e26fd3d008a7cecd0a5ad 1ec1f5b] by '''FileEX''')&lt;br /&gt;
* Excluded '''meta.xml''' from glob patterns for security reasons ([https://github.com/multitheftauto/mtasa-blue/commit/78f6d669adc97c51a825250dd4dbf1a4a4a0ff15 78f6d66] by '''FileEX''')&lt;br /&gt;
* Fixed the bug where changing a vehicle to one with a different number of seats caused passengers to experience network trouble ([https://github.com/multitheftauto/mtasa-blue/commit/1fcd732ca9031060602c8e2425e40ce602d35253 1fcd732] by '''FileEX''')&lt;br /&gt;
* Glob patterns added to meta.xml for HTML files ([https://github.com/multitheftauto/mtasa-blue/commit/7e6b4d02ec113b7ce3a6fd9937a6e8ad0a1ad9cb 7e6b4d0] by '''FileEX''')&lt;br /&gt;
* Fixed console not maintaining position &amp;amp; size when GUI skin changed ([https://github.com/multitheftauto/mtasa-blue/commit/30d8e6dbfe75db47cf396aa909f43c24c4dbe127] by '''NanoBob''')&lt;br /&gt;
* Added '''includeCustom''' argument for [[getValidPedModels]] clientside ([https://github.com/multitheftauto/mtasa-blue/commit/889567a7a0ecb8a8b8d938826d2395ef9f43a76b] by '''Fernando-A-Rocha''')&lt;br /&gt;
* Fixed '''min_mta_version''' tag for server ([https://github.com/multitheftauto/mtasa-blue/commit/8c0a01bac62ecc3e9510133dee9f8d6700065f03 8c0a01b] by '''Fernando-A-Rocha''')&lt;br /&gt;
* Allowed user to pass multiple resource names to start/stop/restart ([https://github.com/multitheftauto/mtasa-blue/commit/6f5fb9c65ee93a5c1692b0d3516a483dcea48f08 6f5fb9c] by '''botder''')&lt;br /&gt;
* Added sync peds/players animations for new players ([https://github.com/multitheftauto/mtasa-blue/commit/b32eafc70816ece8ad995d98d380d8f6e9950475 b32eafc] by '''FileEX''')&lt;br /&gt;
* Optimized processing big files by server ([https://github.com/multitheftauto/mtasa-blue/commit/cb90339aad461d3ee8c1008f2da10934afc38a4c cb90339] by '''AlexTMjugador''')&lt;br /&gt;
* Separate icon for ''mta-server.exe'' ([https://github.com/multitheftauto/mtasa-blue/commit/6cb9d3edf9686749e524f136985cefb53772898e 6cb9d3e] by '''Nico834''')&lt;br /&gt;
* Fixed a bug that caused warnings in debugscript when using depracated function names as variable names ([https://github.com/multitheftauto/mtasa-blue/commit/f23e39521b7e35ad5389e467360fbc525c099887 f23e395] by '''YelehaUwU''')&lt;br /&gt;
* [[onVehicleExplode]] can now be cancelled! ([https://github.com/multitheftauto/mtasa-blue/commit/fcb5b038981066f561f3792c2ae3d97d76d9d0fe fcb5b03] by '''Nico834''')&lt;br /&gt;
* Added '''eventName''' parameter to [[onPlayerTriggerEventThreshold]] ([https://github.com/multitheftauto/mtasa-blue/commit/76d7764c7ec408b77eb7b12379e88882e014527f 76d7764] by '''ColombuxMaximus''')&lt;br /&gt;
&lt;br /&gt;
=== More Technical Changes and Bug Fixes ===&lt;br /&gt;
&amp;lt;section show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
:* Updated CLuaFunctionParser.h ([https://github.com/multitheftauto/mtasa-blue/commit/55647f4023c78a846870f7c96069fab411cff5c5 55647f4] by '''Xenius97''')&lt;br /&gt;
:* Fixed build after above update ([https://github.com/multitheftauto/mtasa-blue/commit/9dcc651d42ae78b7b04257e7612c5b594cb0fffd 9dcc651] by '''Pirulax''')&lt;br /&gt;
:* Fixed std::unordered_map&amp;lt;std::string, std::string&amp;gt; parsing ([https://github.com/multitheftauto/mtasa-blue/commit/005592417b42de63c3d8ba9c572a81cdc8f96164 0055924] by '''tederis''')&lt;br /&gt;
:* Addendum to [https://github.com/multitheftauto/mtasa-blue/pull/3251 #3251] ([https://github.com/multitheftauto/mtasa-blue/commit/9544a34a28d3b4e766d7d07a44d63a8fe45dc506 9544a34] by '''Lpsd''')&lt;br /&gt;
:* Fixes for [https://github.com/multitheftauto/mtasa-blue/pull/3251 #3251] ([https://github.com/multitheftauto/mtasa-blue/commit/07013d24766a6259f4115bd0349a86f790dbf5d0 07013d2] by '''Lpsd''')&lt;br /&gt;
:* Fixed SetStreamingBufferSize possibly accessing memory out-of-bounds ([https://github.com/multitheftauto/mtasa-blue/commit/e08b84fbfe6ad0431605b31c2ba5a50a8f116dc9 e08b84f] by '''Pirulax''')&lt;br /&gt;
:* Added a check to verify itemList validity ([https://github.com/multitheftauto/mtasa-blue/commit/668073787fa6b952d0f1520e8ccae0999dbdba13 6680737] by '''R4ven47''')&lt;br /&gt;
:* Various code clean ups and refactors&lt;br /&gt;
::* Removed COffsetsMP and EU addresses ([https://github.com/multitheftauto/mtasa-blue/commit/52b0115a2d9157b7a153b5f24316ff6fd053e79b 52b0115] by '''Merlin''')&lt;br /&gt;
::* Removed COffsets and EU addresses ([https://github.com/multitheftauto/mtasa-blue/commit/959141de324126245d2b5ebf029c924302ff64e9 959141d] by '''Merlin''')&lt;br /&gt;
::* Clean ups ''multiplayer_sa'' code ([https://github.com/multitheftauto/mtasa-blue/commit/38982043978dd1ec72230569a6d534792e7c18bd 3898204] by '''CrosRoad95''')&lt;br /&gt;
::* Removed old easter-egg &amp;amp; debug code ([https://github.com/multitheftauto/mtasa-blue/commit/b26f80c3d72d628d63807529b408be4b61a5be60 b26f80c], [https://github.com/multitheftauto/mtasa-blue/commit/530212f34fc44e95599ca5e39e608583ecdbb5cc 530212f] by '''botder''' and '''Merlin''')&lt;br /&gt;
::* Refactored entity hierarchy &amp;lt;!-- Fixed accepting possible malicious packets --&amp;gt; ([https://github.com/multitheftauto/mtasa-blue/commit/fdaced046a9421a39de87b81eaf0f7de7c234c4b fdaced0] by '''Tracer''')&lt;br /&gt;
::* Removed unused symbol from ''CConsole'' class ([https://github.com/multitheftauto/mtasa-blue/commit/4fe9084a2e5c5eeed4b0a9a30a07607c812e923b 4fe9084] by '''Nico834''')&lt;br /&gt;
::* Refactored ''CLuaBlipDefs'' ([https://github.com/multitheftauto/mtasa-blue/commit/d05d09be8b9bd1327e37631411fa1e3b16c4dbb7 d05d09b], [https://github.com/multitheftauto/mtasa-blue/commit/c278c12debfd346377354017992543fc7cf6397b c278c12] by '''FileEX''')&lt;br /&gt;
::* Refactored ''CLuaTeamDefs'' ([https://github.com/multitheftauto/mtasa-blue/commit/74ffa1d0138ab3d848b0e081ca265f18ae6c7bd8 74ffa1d], [https://github.com/multitheftauto/mtasa-blue/commit/f37bbada1381370eeadabd4f4dde2a024ec48f5f f37bbad] by '''Nico834''')&lt;br /&gt;
::* Removed dead ''CAnimManagerSA'' code ([https://github.com/multitheftauto/mtasa-blue/commit/d18d7d35fb50fdeea3f70ad688a5857b29867185 d18d7d3] by '''G-Moris''')&lt;br /&gt;
::* Refactored class hierarchy and removed VTBL hacks ([https://github.com/multitheftauto/mtasa-blue/commit/61d1caffb5bfa9c620c08d43280150906dd172d5 61d1caf] by '''TheNormalnij''')&lt;br /&gt;
::* Refactored ''CWeaponSA'' and ''CPedSA'' classes ([https://github.com/multitheftauto/mtasa-blue/commit/a3b7c8519d0d167c66e70c8c7ed5d2f810b7ae39 a3b7c85], [https://github.com/multitheftauto/mtasa-blue/commit/2526a7dd6cde545e600792dcac3ab1b8ece0edec 2526a7d] by '''FileEX''')&lt;br /&gt;
::* Cleaning up client Common.h and moving enums to separate files ([https://github.com/multitheftauto/mtasa-blue/commit/1e56571479217f787b6444d48770f8aa69f14387 1e56571] by '''FileEX''')&lt;br /&gt;
:* Addd Comments to Frame Rate Fixes in CMultiplayerSA_FrameRateFixes.cpp ([https://github.com/multitheftauto/mtasa-blue/commit/e4e6d1b5a9609cb093a191db405c61339d4280d2 e4e6d1b] by '''Merlin''')&lt;br /&gt;
:* Fixed build after CEF update ([https://github.com/multitheftauto/mtasa-blue/commit/9980252446a6869609b1afa1ae1168282a99cb17 9980252] by '''TheNormalnij''')&lt;br /&gt;
:* Bump chromedriver from 114.0.2 to 119.0.1 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/5d8d3756d98b0272687b87c30adca2961eee86c8 5d8d375])&lt;br /&gt;
:* Bump axios from 1.4.0 to 1.6.1 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/ba018013085058905aa789c4fa3f39c4ed32fc69 ba01801])&lt;br /&gt;
:* Fixed file lock after img:destroy ([https://github.com/multitheftauto/mtasa-blue/commit/c2ccfd2c648a2d3f33ead2169262c30533f79bac c2ccfd2] by '''TheNormalnij''')&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
:* Bump follow-redirects from 1.15.2 to 1.15.6 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/437dbcd8024c5217c22ef0e38719f93f33f47ce5 437dbcd])&lt;br /&gt;
:* Fix permission check in File.create method ([https://github.com/multitheftauto/mtasa-blue/commit/92144a4d7383af09dfa05b7bcd3db09fa487e6fd 92144a4] by '''theSarrum''')&lt;br /&gt;
:* mbedTLS fix for cURL 8.8.0 ([https://github.com/multitheftauto/mtasa-blue/commit/4f7e0d87ec04e44d2e47f5b869c2d7c765817c0f 4f7e0d8] by '''Lpsd''')&lt;br /&gt;
:* Discord RPC Tweaks ([https://github.com/multitheftauto/mtasa-blue/commit/8ef351eabe46fd50da096247d8b6fc74508cb911 8ef351e] by '''theSarrum''')&lt;br /&gt;
:* Fixed small overhead in argument parser for strings ([https://github.com/multitheftauto/mtasa-blue/commit/d20582d770dfd2a1677d9981005b3b6d28fb8e4e d20582d] by '''TheNormalnij''')&lt;br /&gt;
:* Bump ws from 8.13.0 to 8.17.1 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/cc172fcae7654ead0d3530a4819c71f76205a175 cc172fc])&lt;br /&gt;
:* Generic exception type for argument parser instead of std::invalid_argument ([https://github.com/multitheftauto/mtasa-blue/commit/2043acfdb210a8f1158501e2fbb431b625bbf74d 2043acf] by '''tederis''')&lt;br /&gt;
:* Added comments for hooks in CMultiplayerSA_CrashFixHacks.cpp ([https://github.com/multitheftauto/mtasa-blue/commit/0327cb1bef9b234451f8a22ece9c6c70fdc9adb0 0327cb1] by '''FileEX''')&lt;br /&gt;
:* Optimization handling ([https://github.com/multitheftauto/mtasa-blue/commit/e3a8bd96d4eccb30e439ba8bd4a2029d01586154 e3a8bd9], [https://github.com/multitheftauto/mtasa-blue/commit/5ac6c8adad9c9ffd4a1c299c7cd548713e485bd6 5ac6c8a] by '''G-Moris''')&lt;br /&gt;
:* Added ability to use varargs in ArgumentParser functions ([https://github.com/multitheftauto/mtasa-blue/commit/8c2f95a5ffade0e7fb212b62282e69d7f433d36f 8c2f95a] by '''Tracer''')&lt;br /&gt;
:* Fixed google-breakpad in newer GCC versions ([https://github.com/multitheftauto/mtasa-blue/commit/5508c7e4058ad9d29cacc9964f8e84df2c60d14f 5508c7e] by '''Tracer''')&lt;br /&gt;
:* Validate serial on player join ([https://github.com/multitheftauto/mtasa-blue/commit/84437e49e6ebca758e1e87d93e7846f9aa99a673 84437e4] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Extract TXD class ([https://github.com/multitheftauto/mtasa-blue/commit/733683d70dc037fdcbb256fb17d86e93b fedd239] by '''TheNormalnij''')&lt;br /&gt;
:* Fixed a bug with desynchronization of the values of some fields of the ''CTickRateSettings'' structure ([https://github.com/multitheftauto/mtasa-blue/commit/af5b6968e0a28dbde7d92f3828dead0f1a936eec af5b696], [https://github.com/multitheftauto/mtasa-blue/commit/514a3b36d09906f09bb32e900c39dc09b1c29d10 514a3b3] by '''nweb''')&lt;br /&gt;
:* Fixed ''MinClientReqCheck'' and improve resource upgrade ([https://github.com/multitheftauto/mtasa-blue/commit/f0954109c0644c551ae3ec1df4474d1857e4bed8 f095410] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Refactored and improved player map (F11) ([https://github.com/multitheftauto/mtasa-blue/commit/2c5cf3226a573637b91d8b255d57113b7043dc28 2c5cf32] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Fixed ''CVector'' optional arguments ([https://github.com/multitheftauto/mtasa-blue/commit/6a70cf7def14db86980a499d0fdf4c63565915e1 6a70cf7] by '''Tracer''')&lt;br /&gt;
:* Fixed memory overwriting by ''EnumToString'' &amp;amp; ''StringToEnum'' ([https://github.com/multitheftauto/mtasa-blue/commit/3ab068ba213abca718ace47ac3bb8df9e4b1c3fc 3ab068b] by '''FileEX''')&lt;br /&gt;
:* Allow using ''std::variant'' with several pointers ([https://github.com/multitheftauto/mtasa-blue/commit/9d776c8bfc2680fc28857fc0a5dc4a4e40d4c3bf 9d776c8] by '''tederis''')&lt;br /&gt;
:* Fixed argument parser not distinguishing arrays from maps ([https://github.com/multitheftauto/mtasa-blue/commit/d4388a2452f4427bd56c3d93b80d4ea74c05b6e5 d4388a2] by '''FileEX''')&lt;br /&gt;
:* Fixed crash with nested arrays/maps in new argument parser ([https://github.com/multitheftauto/mtasa-blue/commit/ca877d33471fabbe970cf03d9d6d9b3413b6daa1 ca877d3] by '''tederis''')&lt;br /&gt;
&lt;br /&gt;
== 13 Vendor Updates ==&lt;br /&gt;
=== Client ===&lt;br /&gt;
* Updated libpng to 1.6.50 ([https://github.com/multitheftauto/mtasa-blue/commit/c24b39d41fd768337c3d336a944588d53dfaba44] by '''Nico834''')&lt;br /&gt;
* Updatee CEF to 127.3.5+g114ea2a+chromium-127.0.6533.120 ([https://github.com/multitheftauto/mtasa-blue/commit/bca4dff8dc490328000d7653a9166704d859b7e5 bca4dff] by '''Dutchman101''')&lt;br /&gt;
* Updated Unifont to 15.1.05 ([https://github.com/multitheftauto/mtasa-blue/commit/02115a5c00e2480bbb3b829b655869e7436de955 02115a5] by '''Dutchman101''')&lt;br /&gt;
&lt;br /&gt;
=== Server ===&lt;br /&gt;
* Updated cURL to 8.14.1 ([https://github.com/multitheftauto/mtasa-blue/commit/7c27c20da7503c68234cde0b726f10a3dcdf85e3] by '''Nico834''')&lt;br /&gt;
* Updated MySQL to 8.4.0 &amp;amp; OpenSSL to 3.3.1 ([https://github.com/multitheftauto/mtasa-blue/commit/a44d673bb8731506418fdbaa6690b339a98d82c1 a44d673] by '''botder''')&lt;br /&gt;
* Updated SQLite to 3.46.0 ([https://github.com/multitheftauto/mtasa-blue/commit/30e31af2ca1ae96e03386670a9df6db70336b968 30e31af] by '''Dutchman101''')&lt;br /&gt;
&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Updated mbedTLS to 3.6.4 ([https://github.com/multitheftauto/mtasa-blue/commit/45955dad5471f49e2784e37cbafd1b92196abe96] by '''Nico834''')&lt;br /&gt;
* Updated 7-Zip Standalone plugins to 24.07 (24.7.0.0) ([https://github.com/multitheftauto/mtasa-blue/commit/9b979b2d5c7f4b885046a85d9895e58416563890 9b979b2] by '''Dutchman101''')&lt;br /&gt;
* Updated freetype to freetype-37cefe3 (freetype/freetype@37cefe3) ([https://github.com/multitheftauto/mtasa-blue/commit/89e022cb8586aba5bdacd7b56c7d45c9b7b95f97 89e022c] by '''Dutchman101''')&lt;br /&gt;
* Updated nvapi from r550 to r555 ([https://github.com/multitheftauto/mtasa-blue/commit/5fdcada80a18af530381b04f54c3c69b6988f479 5fdcada] by '''Dutchman101''')&lt;br /&gt;
* Updated unrar to 7.0.9 ([https://github.com/multitheftauto/mtasa-blue/commit/ab9461be5777427261bc3a330acb4c0f5cdc2c8b ab9461b] by '''Dutchman101''')&lt;br /&gt;
* Updated FreeType to 2.13.2 ([https://github.com/multitheftauto/mtasa-blue/commit/a783e994264d4e954489e31459505c53759ca7f1 a783e99] by '''Dutchman101''')&lt;br /&gt;
* Updated zlib from 1.2.13 to 1.3 ([https://github.com/multitheftauto/mtasa-blue/commit/0f37ac0b18845e9f035d0ca45bbb41b9cd1aa979 0f37ac0] by '''Dutchman101''')&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
=== 46+ Changes and Bug Fixes ===&lt;br /&gt;
&lt;br /&gt;
'''admin'''&lt;br /&gt;
:* Removed execute code functionality for safety reasons ([https://github.com/multitheftauto/mtasa-resources/commit/507a04937524997410e450a6d4292974fa801bf8 507a049] by '''srslyyyy''')&lt;br /&gt;
:* Updated skins.xml ([https://github.com/multitheftauto/mtasa-resources/commit/b5306484a789cc59b05f4182505ac07df3d90e07 b530648] by '''Shady.lua''')&lt;br /&gt;
:* Fixed warnings ([https://github.com/multitheftauto/mtasa-resources/commit/d7b02022fa8168fc300dd562118100265cf0688b d7b0202] by '''jlillis''')&lt;br /&gt;
:* Making the admin window focused ([https://github.com/multitheftauto/mtasa-resources/commit/33f7cc938d243687fa36fa300ec588b2d057d02c 33f7cc9] by '''Proxy-99''')&lt;br /&gt;
:* Resource settings button is only displayed if there are settings ([https://github.com/multitheftauto/mtasa-resources/commit/0224ef52c699f27bd6e0e6364fbc81ecd0ec345f 0224ef5] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed nil index error and removed invalid characters causing syntax errors ([https://github.com/multitheftauto/mtasa-resources/commit/79857393ddb42f52ee05cf5758d5fdc8c2ff845c 7985739] by '''rad3sh''')&lt;br /&gt;
:* Allow disabling/enabling default reporting system ([https://github.com/multitheftauto/mtasa-resources/commit/0dbb83df7d3e9a20a2c897612db778bf4e395c92 0dbb83d] by '''Viude''')&lt;br /&gt;
:* Updated clientcheckban setting to ban serial instead of IP ([https://github.com/multitheftauto/mtasa-resources/commit/fa5beb96e10d9f30d9565ca212fe901f88e413a5 fa5beb9] by '''Viude''')&lt;br /&gt;
:* Fixed that double clicking on a resource without setting opened the GUI settings window ([https://github.com/multitheftauto/mtasa-resources/commit/82d5b835b503594101a99041498501e19a433a79 82d5b83] by '''T-MaxWiese-T''')&lt;br /&gt;
&lt;br /&gt;
'''admin2'''&lt;br /&gt;
:* Forward-ported permissions widget from admin1 and minor fixes ([https://github.com/multitheftauto/mtasa-resources/commit/25dcc4c655de26de0a2d0eb1b55ef7f3b3f6725e 25dcc4c] by '''Dark-Dragon''')&lt;br /&gt;
:* Fixed /report message viewer widget and minor fixes ([https://github.com/multitheftauto/mtasa-resources/commit/6dbdf2cf90d0e447879bea86942e01caf949b8f5 6dbdf2c] by '''Dark-Dragon''')&lt;br /&gt;
:* Refactored bans functionality ([https://github.com/multitheftauto/mtasa-resources/commit/d8c35b0a38a295d119054c4328a892c4e26be358 d8c35b0] by '''jlillis''')&lt;br /&gt;
:* Fixed messagebox not showing ([https://github.com/multitheftauto/mtasa-resources/commit/5afe0247e6ca44c5754a2d9a6a0af7bc8b57f967 5afe024] by '''FileEX''')&lt;br /&gt;
:* Added missing glitches and world properties ([https://github.com/multitheftauto/mtasa-resources/commit/6856aa075c8e5674379c2a89f355d8b167ab6fdb 6856aa0] by '''FileEX''')&lt;br /&gt;
:* Added content for &amp;quot;Users&amp;quot; sub-tab in the &amp;quot;Rights&amp;quot; tab ([https://github.com/multitheftauto/mtasa-resources/commit/3f8ecca953cc3dfa84e4d1b38b6b4c41f323688b 3f8ecca] by '''FileEX''')&lt;br /&gt;
:* Removed execute code functionality for safety reasons ([https://github.com/multitheftauto/mtasa-resources/commit/c4bc73a2b088b98116ece27065cc7f5a1dced15b c4bc73a] by '''jlillis''')&lt;br /&gt;
:* Replaced checkboxes with a gridlist for glitches and special world properties ([https://github.com/multitheftauto/mtasa-resources/commit/1dcb2953757c6741c93b9c63db33c032183047bc 1dcb295] by '''FileEX''')&lt;br /&gt;
:* Added ability to change server configuration settings ([https://github.com/multitheftauto/mtasa-resources/commit/118d58e383f631f111fe3f2463480182235c71d1 118d58e] by '''FileEX''')&lt;br /&gt;
:* Added content for &amp;quot;Resources&amp;quot; sub-tab in the &amp;quot;Rights&amp;quot; tab ([https://github.com/multitheftauto/mtasa-resources/commit/f16577e24ca9125eac5f2e96621077ad0d213b69 f16577e] by '''FileEX''')&lt;br /&gt;
:* Making the admin window focused ([https://github.com/multitheftauto/mtasa-resources/commit/33f7cc938d243687fa36fa300ec588b2d057d02c 33f7cc9] by '''Proxy-99''')&lt;br /&gt;
:* Fixed panel bind bug after reconnect ([https://github.com/multitheftauto/mtasa-resources/commit/c96bdd5297cf180f947596c1eded8929b4982e6c c96bdd5] by '''ricksterhd123''')&lt;br /&gt;
&lt;br /&gt;
'''chatmanager'''&lt;br /&gt;
:* Added a new resource for chat handling and management ([https://github.com/multitheftauto/mtasa-resources/commit/4e45cb75a8780b0c191031091a4fcd2d76442aa7 4e45cb7] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''defaultstats'''&lt;br /&gt;
:* Don't re-apply stats on every respawn ([https://github.com/multitheftauto/mtasa-resources/commit/9fde199ec5025052468df0255bf5c5011ef29718 9fde199] by '''Dutchman101''')&lt;br /&gt;
:* Fixed issue where defaultstats did not set player stats correctly ([https://github.com/multitheftauto/mtasa-resources/commit/567d10c552305dae3f57d5c422a34c25f22fdc12 567d10c] by '''MittellBuurman''')&lt;br /&gt;
&lt;br /&gt;
'''editor'''&lt;br /&gt;
:* Various fixes for local spawned or invalid elements ([https://github.com/multitheftauto/mtasa-resources/commit/4e3c57941cd789cff8d9ce240e99edca871a345d 4e3c579] by '''chris1384''')&lt;br /&gt;
:* Various bug fixes and improvements ([https://github.com/multitheftauto/mtasa-resources/commit/4674fa9c6dbff7a1073fb949cac44588c65df3fb 4674fa9] by '''IIYAMA12''')&lt;br /&gt;
:* Fixed rotation issues ([https://github.com/multitheftauto/mtasa-resources/commit/679c01b93132050548a86dba25ead7feaf9d5a1f 679c01b] by '''Nico834''')&lt;br /&gt;
:* Toggleable rotation mechanic and improve threshold ([https://github.com/multitheftauto/mtasa-resources/commit/83e2c79cbd959aa54c55d4220a5b4d38747e8353 83e2c79] by '''chris1384''')&lt;br /&gt;
:* Added missing objects and collisions ([https://github.com/multitheftauto/mtasa-resources/commit/4e83755d51345c0dc8e2e0f2ddf61588bf854641 4e83755] by '''THEGizmoOfficial''')&lt;br /&gt;
&lt;br /&gt;
'''edf'''&lt;br /&gt;
:* Fixed massive lag after stopping ''editor'' resource ([https://github.com/multitheftauto/mtasa-resources/commit/4674fa9c6dbff7a1073fb949cac44588c65df3fb 4674fa9] by '''IIYAMA12''')&lt;br /&gt;
&lt;br /&gt;
'''editor_main'''&lt;br /&gt;
:* Improvements ([https://github.com/multitheftauto/mtasa-resources/commit/5bf553f85cb9c53027814fe666268cb24ed66b2e 5bf553f], [https://github.com/multitheftauto/mtasa-resources/commit/e9b75fd615922c7d70f4e435a05fa933dcb9d2a5 e9b75fd] by '''q8X''')&lt;br /&gt;
:* Add xmlns namespace when saving map ([https://github.com/multitheftauto/mtasa-resources/commit/23fa3f38f71c2f3d28780df1b3ce163ab2eaae84 23fa3f3] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''editor_gui'''&lt;br /&gt;
:* Fixed test panel issues ([https://github.com/multitheftauto/mtasa-resources/commit/e558c846e8b0589997f342f431b36fdc371da000 e558c84] by '''chris1384''')&lt;br /&gt;
&lt;br /&gt;
'''fallout'''&lt;br /&gt;
:* Refactor &amp;amp; many improvements ([https://github.com/multitheftauto/mtasa-resources/commit/c733b69a735d004235ba61b1201ac1412acc6482 c733b69] by '''IIYAMA12''')&lt;br /&gt;
&lt;br /&gt;
'''freeroam'''&lt;br /&gt;
:* Updated skins.xml ([https://github.com/multitheftauto/mtasa-resources/commit/cacbe40a805402dec3a62180b987d4b777817ea6 cacbe40] by '''Shady.lua''')&lt;br /&gt;
:* Added Walk styles ([https://github.com/multitheftauto/mtasa-resources/commit/4a18d7585a2fa45eaed18d4b4796744a235a23c5 4a18d75] by '''Shady.lua''')&lt;br /&gt;
:* Security improvements ([https://github.com/multitheftauto/mtasa-resources/commit/2ec92132036d0dc073279dda3c88d71f578d651f 2ec9213] by '''IIYAMA12''')&lt;br /&gt;
:* Fixed freezetime flickering ([https://github.com/multitheftauto/mtasa-resources/commit/b40f27be0274b641c2cddd4c75a6f86f73ea4941 b40f27b], [https://github.com/multitheftauto/mtasa-resources/commit/817aa1ea9130fbccb1a23b7410309af2f8a21ddc 817aa1e] by '''ricksterhd123''' and '''jlillis''')&lt;br /&gt;
:* Fixed map key bind interferes with race editor help ([https://github.com/multitheftauto/mtasa-resources/commit/e62bc5471433b347b16c15709d469209cf202390 e62bc54] by '''MittellBuurman''')&lt;br /&gt;
&lt;br /&gt;
'''hedit'''&lt;br /&gt;
:* Added German localization [[File:Flag_de.png|x14px]] ([https://github.com/multitheftauto/mtasa-resources/pull/568/commits/c58df8666fbccfb0be73f27c52aa680dae2f0c1a bc33634] by '''Shady.lua''')&lt;br /&gt;
:* Added Brazilian Portuguese localization [[File:Flag_br.png|x14px]] ([https://github.com/multitheftauto/mtasa-resources/commit/d1b85d7dda45293ce497cf03f21eea2f59100b89 d1b85d7] by '''ricksterhd123''')&lt;br /&gt;
:* Added Hungarian localization [[File:Flag_hu.png|x18px]] ([https://github.com/multitheftauto/mtasa-resources/commit/53050dd0bf73a164969480c9277fc3c6b0601b7e 53050dd] by '''Nico834''')&lt;br /&gt;
:* Updated Turkish localization [[File:Tr.gif]] ([https://github.com/multitheftauto/mtasa-resources/commit/3044d00a796488870556b19b088ac505c332952c 3044d00] by '''mahlukat5''')&lt;br /&gt;
:* Updated Spanish localization [[File:Flag_es.png|x18px]] ([https://github.com/multitheftauto/mtasa-resources/commit/b74c2393cc15e403d4588ebb671659c16cc36269 b74c239] by '''kxndrick0''')&lt;br /&gt;
&lt;br /&gt;
'''internetradio'''&lt;br /&gt;
:* Fixed that the GUI window of the resource &amp;quot;internetradio&amp;quot; collides with the GUI window of the resource &amp;quot;helpmanager&amp;quot; ([https://github.com/multitheftauto/mtasa-resources/commit/313f3dde6b7cdb389f11f1a62a6d3e8c093c159f 313f3dd] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Improvements ([https://github.com/multitheftauto/mtasa-resources/commit/a3c9e17cf6b85374b5f9b5881937aee97da94745 a3c9e17] by '''srslyyyy''')&lt;br /&gt;
:* Added attaching to vehicles ([https://github.com/multitheftauto/mtasa-resources/commit/3dd5cbd32f092337707277fbecc5ee54988e07fc 3dd5cbd] by '''ds1-e''')&lt;br /&gt;
:* Added admin commands ([https://github.com/multitheftauto/mtasa-resources/commit/5c160212e190f74461d65fac1668cda07a2d0b11 https://github.com/multitheftauto/mtasa-resources/commit/5c160212e190f74461d65fac1668cda07a2d0b11] by '''ds1-e''')&lt;br /&gt;
:* Added ability to show speaker owner ([https://github.com/multitheftauto/mtasa-resources/commit/6189fc1eefce29c8467c5a1093eaa8bfd8ed97f0 6189fc1] by '''ds1-e''')&lt;br /&gt;
:* Fixed playSound3D and track name showing in other dimensions ([https://github.com/multitheftauto/mtasa-resources/commit/d4c04db009cdd68913fdb47bbc73acd91e63f981 d4c04db] by '''mateo-14'''&lt;br /&gt;
&lt;br /&gt;
'''ip2c'''&lt;br /&gt;
:* Added missing fetchRemote aclrequest ([https://github.com/multitheftauto/mtasa-resources/commit/e1364c3ebcc956dbf7f61e2d89741837776edec2 e1364c3] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Added backed up file and .gitignore to ignore the real one (auto-updated) ([https://github.com/multitheftauto/mtasa-resources/commit/e182291a53c3c76a2cf45834ba313aa9d18c16f4 e182291] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''ipb'''&lt;br /&gt;
:* Replaced the onClientResource start event with the onPlayerResourceStart event ([https://github.com/multitheftauto/mtasa-resources/commit/cca3a05adf7fc940b913453a5fad5d5f3c8e3518 cca3a05] by '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
'''parachute'''&lt;br /&gt;
:* Fixed warnings about min_mta_version ([https://github.com/multitheftauto/mtasa-resources/commit/b4119cca4665d63a3043f14c1624ce9c96700b96 b4119cc] by '''NetroX1993''')&lt;br /&gt;
&lt;br /&gt;
'''playerblips'''&lt;br /&gt;
:* Fixed that the resource &amp;quot;playercolors&amp;quot; should be activated for teams ([https://github.com/multitheftauto/mtasa-resources/commit/2cd28db5fa891f361c5af07a491532378a820b83 2cd28db] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Real-time update of settings ([https://github.com/multitheftauto/mtasa-resources/commit/9505b181fe7fc2bab53142746f73bc64a8fd984d 9505b18] by '''Nico834''')&lt;br /&gt;
:* Improved debug messages ([https://github.com/multitheftauto/mtasa-resources/commit/4084e5d369907d3ededd1b2eb19c916983680154 4084e5d] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed that when a player changed or joined teams the color of the blip was not updated ([https://github.com/multitheftauto/mtasa-resources/commit/ff80005f114a3d010624f7d54510ffde47dddb00 ff80005] by '''T-MaxWiese-T''')&lt;br /&gt;
&lt;br /&gt;
'''playercolors'''&lt;br /&gt;
:* Player nametag color should revert to team color when the resource is stopped ([https://github.com/multitheftauto/mtasa-resources/commit/d45d2d0cd963186639d76ab1cb27ef6a042cd0bd d45d2d0] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed chat messages sent twice ([https://github.com/multitheftauto/mtasa-resources/commit/0547cf72514a7dc7efc987f47903c35b310a3b22 0547cf7] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''performancebrowser'''&lt;br /&gt;
:* Fixed player names not being reinitialized on change ([https://github.com/multitheftauto/mtasa-resources/commit/3e0166dc7fa9c11c596a7958b02423b6aeff8410 3e0166d] by '''YelehaUwU''')&lt;br /&gt;
&lt;br /&gt;
'''runcode'''&lt;br /&gt;
:* Added aclrequest for loadstring function ([https://github.com/multitheftauto/mtasa-resources/commit/c40b8095f054b6e87b46e1d53d9b6ec77cf943c7 c40b809] by '''IIYAMA12 ''')&lt;br /&gt;
&lt;br /&gt;
'''scoreboard'''&lt;br /&gt;
:* Replaced drawing arrow from path to texture ([https://github.com/multitheftauto/mtasa-resources/commit/128f26952810804df6acb233ca9476853caa1286 128f269] by '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
'''speedometer'''&lt;br /&gt;
:* Display at resource start ([https://github.com/multitheftauto/mtasa-resources/commit/31a5ac4013c3633647178e695474da6632eb38b8 31a5ac4] by '''Nico834''')&lt;br /&gt;
:* Preventing pointer overflow ([https://github.com/multitheftauto/mtasa-resources/commit/8689cdc247a3fd16125524aac04eb054c398084c 8689cdc] by '''Nico834''')&lt;br /&gt;
&lt;br /&gt;
'''superman'''&lt;br /&gt;
:* Fixes and improvements ([https://github.com/multitheftauto/mtasa-resources/commit/2b3bc102225b2f1c3144cffe290175e9a2c71728 2b3bc10], [https://github.com/multitheftauto/mtasa-resources/commit/e1c06c3c2581c16a6e05401381263a47dd6ac5f0 e1c06c3], [https://github.com/multitheftauto/mtasa-resources/commit/1e4319d180be0f482d42f2f32fbf2c1e5cd440cc 1e4319d] by '''ds1-e''')&lt;br /&gt;
&lt;br /&gt;
'''votemanager'''&lt;br /&gt;
:* Fixed lint error ([https://github.com/multitheftauto/mtasa-resources/commit/c8630075317123e510645464a3bf56ebb244573b c863007] by '''Dark-Dragon''')&lt;br /&gt;
&lt;br /&gt;
'''mapfixes'''&lt;br /&gt;
:* A new resource has been added that fixes many holes and bugs in the default map ([https://github.com/multitheftauto/mtasa-resources/commit/23f6bd94370440af5ed79a47bda1ff0caf92fa8e 23f6bd9] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''gps'''&lt;br /&gt;
:* Added export functions for custom logic ([https://github.com/multitheftauto/mtasa-resources/commit/537d92d11b357cf9e795a7bb3ec87c13fa62c7bc 537d92d] by '''T-MaxWiese-T''')&lt;br /&gt;
&lt;br /&gt;
'''deathmatch'''&lt;br /&gt;
:* Improvements and update ([https://github.com/multitheftauto/mtasa-resources/commit/a01ec8a86e636ca61f25a03d4ee30bd898754cbd a01ec8a], [https://github.com/multitheftauto/mtasa-resources/commit/b94ffddfd5b230544d54e5eca8c9c5d87dc69128 b94ffdd] by '''jlillis'''&lt;br /&gt;
&lt;br /&gt;
'''race'''&lt;br /&gt;
:* Fixed automatic nextid assignment breaking ([https://github.com/multitheftauto/mtasa-resources/commit/2c695a9e793825a8cafd2ee3be490d2d8e9ad318 2c695a9] by '''lotsofs''')&lt;br /&gt;
&lt;br /&gt;
'''voice_local'''&lt;br /&gt;
:* Improvements ([https://github.com/multitheftauto/mtasa-resources/commit/53cf63d83169018e0de9f45ecb565958855d717d 53cf63d] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''Others / Uncategorized'''&lt;br /&gt;
:* Refactor of resources meta.xml ([https://github.com/multitheftauto/mtasa-resources/commit/6713b07a459739c06112ac3e608776f3f0696144 6713b07] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
== Extra information ==&lt;br /&gt;
''More detailed information available on our GitHub repositories:&lt;br /&gt;
* [https://github.com/multitheftauto/mtasa-blue MTA:SA Blue]&lt;br /&gt;
* [https://github.com/multitheftauto/mtasa-resources MTA:SA Official Resources]&lt;br /&gt;
&lt;br /&gt;
[[Category:Changelog]]&lt;br /&gt;
[[Category:Incomplete]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Template:Useful_Functions&amp;diff=82425</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=82425"/>
		<updated>2025-09-03T00:39:42Z</updated>

		<summary type="html">&lt;p&gt;O22: /* Data functions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
=== Table functions ===&lt;br /&gt;
*[[addTableChangeHandler]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function monitors the changes of a table.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[pairsByKeys]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function sort pairs table.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[rangeToTable]] &amp;lt;span style=&amp;quot;color:gray; 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-size:smaller;&amp;quot;&amp;gt;» This function protects a table and makes it read-only.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[setTableToSql]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function is used to save the table in the database (sql).&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[Sort_Functions]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» These functions are able to sort your tables by a key.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getKeyFromValueInTable]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[getTableFromSql]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This functionality is used to obtain saved tables using the function ([https://wiki.multitheftauto.com/wiki/SetTableToSql SetTableToSql ]).&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isValueInTable]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns true if the value exists in the table, false if the value does not exist in the table.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[table.compare]] &amp;lt;span style=&amp;quot;color:gray; 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.copy]] &amp;lt;span style=&amp;quot;color:gray; 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.deepmerge]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function deep merges two tables. Every nested table will be correspondingly merged.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[table.element]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns a new table with only userdata content.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[table.flip]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns the table from the last value to the first value, such as reflection.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[table.getRandomRows]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns random rows from table.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[table.map]] &amp;lt;span style=&amp;quot;color:gray; 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-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-size:smaller;&amp;quot;&amp;gt;» This function retrieves a random value from a table.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[table.removeValue]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function removes a specified value from a table.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[table.size]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns the absolute size of a table.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== ACL functions ===&lt;br /&gt;
*[[aclGroupClone]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function clone a group to another group with/without ACLs and/or objects.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[renameAclGroup]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[getPlayersInACLGroup]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns all players in an ACL group.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isPlayerInACL]] &amp;lt;span style=&amp;quot;color:gray; 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;
&lt;br /&gt;
=== Account functions ===&lt;br /&gt;
*[[getPlayerFromAccountName]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function is used to obtain a player by the name of his account.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isPlayerAccount]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function checks if the account is a valid player account (account exists and is not a guest account)&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-size:smaller;&amp;quot;&amp;gt;» This function allows you to create a cinematic camera flight.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[sCamera]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» The function creates a speed camera in-game, fines speeding vehicles, and notifies the driver and take money from player based on vehicle speed.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Colshape functions ===&lt;br /&gt;
*[[createGarageColShape]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function creates a collision shape from the specified garage.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Cursor functions ===&lt;br /&gt;
*[[getCursorMovedOn]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[setCursorCenteredOnRectangle]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This functions will center the cursor inside a rectangle.&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-size:smaller;&amp;quot;&amp;gt;» This function draws an animated 2D window on the screen.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawBorderedRectangle]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This is a function that will create a bordered rectangle.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawBorderedText]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This is a function that will create a bordered text.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawDashedLine]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function draws a line with dashes.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawEditbox]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function draws a edit box across the screen - rendered for one frame. This should be used in conjunction with '''onClientRender''' in order to display continuously.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawGifImage]] &amp;lt;span style=&amp;quot;color:gray; 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-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-size:smaller;&amp;quot;&amp;gt;» This function draws an image on any element.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawLinedRectangle]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[dxDrawLoading]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function draws a loading bar on the screen.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawOctagon3D]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function creates a 3D Octagon&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawPolygon]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function draws a custom polygon on the screen.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawProgressBar]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function simulates a progress bar drawed using DirectDraw.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawRectangle3D]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function draws a 3D rectangle in GTA world.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawRectangleOnPlayer]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function draws a 3D rectangle above the player.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawRing]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function draws a ring with dx lines.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawRombo]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function creates a Rhombus.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawSprite]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function draw a sprite in the 3D world.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawTextOnElement]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function draws a text on any element.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawTextOnRectangle]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» Esta funcion crea un rectangle con un texto dentro.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxDrawTriangle]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[dxDrawBordered3DLine]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;»This function creates a bordered area with 3D dx lines.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxFade]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function fade-in or fade-out any dxDraw by gradually changing its alpha value.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dxGetFontSizeFromHeight]] &amp;lt;span style=&amp;quot;color:gray; 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-size:smaller;&amp;quot;&amp;gt;» This function calculates the height of a font.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[wordWrap]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function breaks a long string into a table of separate lines limited to a specific length in pixels, for drawing separately.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[CreateRectangle3D]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This is a function that will create a 3d rectangle on the player screen.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getScreenStartPositionFromBox]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function helps with getting the correct position for your dx-effects.&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-size:smaller;&amp;quot;&amp;gt;» This function allows you attach an effect to an element.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[setScreenFlash]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function will make the screen flash(like a screenshot).&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Element functions === &lt;br /&gt;
*[[autoAttach]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function attaches one element into another at the same position and rotation they are.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[attachElementToBone]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to attach an element to ped bone accurately using new bone functions.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getElementDirectionCardialPoint]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns the direction of the element according to the ''wind rose''.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getElementSpeed]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[getElementUsingData]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns table elements that contains the elements data with the given key and value.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getElementZoneFullName]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to retrieve the zone full name of a element.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getElementsInDimension]] &amp;lt;span style=&amp;quot;color:gray; 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-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;
*[[getNearestElement]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns the nearest element (of a specific type) to a player.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getPositionInFrontOfElement]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns position in provided distance away from element, including element's rotation.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isElementInAir]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function checks if an element is in air or not.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isElementInPhotograph]] &amp;lt;span style=&amp;quot;color:gray; 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-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-size:smaller;&amp;quot;&amp;gt;» This function checks if an element is moving.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isElementPlayer]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function checks whether the element is a player or not.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isElementWithinAColShape]] &amp;lt;span style=&amp;quot;color:gray; 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-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-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;
*[[getElementResourceName]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns the name of the resource that created an element.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Events ===&lt;br /&gt;
*[[onClientPlayerTimeChange]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This code implements an event that is triggered when the player's real time change.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[onPlayerZoneChange]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This code implements an event that is triggered when the player enters a new area on the map.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[onVehicleWeaponFire]] &amp;lt;span style=&amp;quot;color:gray; 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-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;
*[[unbindControlKeys]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[getBoundControls]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[isCommandHandlerAdded]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to check if a command is added or not in the respective resource.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Data functions === &lt;br /&gt;
*[[levenshtein]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function can be used to calculate the Levenshtein distance between two strings.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[gregorianToJalali]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function converts gregorian date to jalali/shamsi date.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[byte2human]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function converts an integer (number of bytes) into a human-readable unit.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[capitalize]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function capitalizes a given string.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[convertDate]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function converts date to another look.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[convertServerTickToTimeStamp]] &amp;lt;span style=&amp;quot;color:gray; 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-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;
*[[findRotation3D]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function takes two sets of XYZ coordinates. It returns the 3D direction from point A to point B.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[findRotation]] &amp;lt;span style=&amp;quot;color:gray; 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-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;
*[[formatNumber]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function formats large numbers by adding commas.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[generateRandomASCIIString]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[generateString]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function generates a random string with any characters.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getAge]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function calculates the age of a given birthday.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getDistanceBetweenElements]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» Returns the distance between two elements.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getDistanceBetweenPointAndSegment2D]] &amp;lt;span style=&amp;quot;color:gray; 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-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;
*[[getElementRelatedAngle]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns the related angle between one element to another. This is useful to check which side an element is to another.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getFreeDimension]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function get free dimension.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getOffsetFromXYZ]] &amp;lt;span style=&amp;quot;color:gray; 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-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;
*[[getRealMonth]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns the current month name&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-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-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;
*[[getServerAveragePing]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function gets average players ping.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[gradientString]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function transforms a string in a new coloured gradient string.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[hex2rgb]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function convert hex to rgb.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[hexColorToRGB]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function convert hex string/number to RGBA values.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isLeapYear]] &amp;lt;span style=&amp;quot;color:gray; 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-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-size:smaller;&amp;quot;&amp;gt;» This function is used to remove hexadecimal numbers (colors, for example) from strings.&lt;br /&gt;
*[[RGBToHex]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[RGBToHSV]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function convert RGB to HSV color space.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[RGBToDecimal]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function convert RGB to Decimal color.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[secondsToTimeDesc]] &amp;lt;span style=&amp;quot;color:gray; 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-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-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;
*[[string.insert]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function inserts a string within another string at a given position.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[splitMultiple]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function improves the split function so that multiple characters can be used as the split at character.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[switch]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[tocolor2rgba]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function convert tocolor to rgba.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[toHex]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[var dump]] &amp;lt;span style=&amp;quot;color:gray; 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-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;
*[[fixPersianString]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns a fixed sorted bilingual RTL for strings consisting of Farsi/Arabic and English.&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-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;
*[[isMouseOnGUICloseButton]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to check whether the mouse cursor/pointer is within a gui-window's native close button.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isMouseOnGuiElement]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to check whether or not your mouse is over a specific gui element, this is especially useful if the gui element has a parent. &amp;lt;/span&amp;gt;&lt;br /&gt;
*[[guiMoveElement]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function moves guiElement by/like using moveObject.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[guiSetStaticImageMovable]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to move a static image like a gui window.&amp;lt;/span&amp;gt;&lt;br /&gt;
=====Comboboxes=====&lt;br /&gt;
*[[guiComboBoxAdjustHeight]] &amp;lt;span style=&amp;quot;color:gray; 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;
&lt;br /&gt;
=====Gridlists=====&lt;br /&gt;
*[[convertGridListToText]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function converts grid list contents to text.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getGridListRowIndexFromText]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[guiGridListAddPlayers]] &amp;lt;span style=&amp;quot;color:gray; 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-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;
*[[guiGridListGetColumnIDFromTitle]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function gets a gridlist's column ID from the column title.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[guiGridListGetSelectedText]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[guiGridListSetColumnNonSortable]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function makes a gridlist column become non-sortable.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=====Labels=====&lt;br /&gt;
*[[guiLabelAddEffect]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function add an effects to the gui-label like (shadow, outline).&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Marker functions ===&lt;br /&gt;
*[[createMarkerAttachedTo]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function creates a marker that is attached to an element.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Math functions ===&lt;br /&gt;
*[[reMap]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» Re-maps a number from one range to another.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[math.clamp]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns the number between range of numbers or it's minimum or maximum.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[math.getBezierPoint]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» Get N-th order bezier point.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[math.hypot]] &amp;lt;span style=&amp;quot;color:gray; 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.isPointInPolygon]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» Check if point is inside polygon or not.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[math.lerp]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» Get val between two integer.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[math.percent]] &amp;lt;span style=&amp;quot;color:gray; 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.polygonArea]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» Compute area of any polygon.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[math.randomDiff]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» Generates a pseudo-random integer that's always different from the last random number generated.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[math.rotVecToEulerAngle]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» Rotation Vector To Euler Angle&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[math.round]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[mathNumber]] &amp;lt;span style=&amp;quot;color:gray; 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.percentProgress|math.percentProgress]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» Returns a percentage progress from two specific values.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[math.average]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns the simple arithmetic mean of multiple numbers.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[math.absin]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns a formula representing the just positive half of a sine wave.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Map functions ===&lt;br /&gt;
*[[assignLod]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function lets you conveniently generate and apply a LOD model to a mapping object.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getWorldPositionFromMapPosition]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function converts an F11 map position to world position.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Ped functions ===&lt;br /&gt;
*[[getAlivePlayersInTeam]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[getGuestPlayers]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[getOnlineAdmins]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[getPedEyesPosition]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to get peds eyes position.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getPedGender]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to get peds their gender.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getPedMaxHealth]] &amp;lt;span style=&amp;quot;color:gray; 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-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;
*[[getPedWeaponSkill]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns a ped's corresponding weapon skill level name.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getPedHitBone]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function gets the approximate number of the bone where the ped is hit.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getPlayerFromNamePart]] &amp;lt;span style=&amp;quot;color:gray; 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-size:smaller;&amp;quot;&amp;gt;» This function returns a player from their serial.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getPlayersByData]] &amp;lt;span style=&amp;quot;color:gray; 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-size:smaller;&amp;quot;&amp;gt;» This function returns a table of all players in photograph.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getPlayersInVehicles]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns a table of the players insides vehicles from a specified dimension.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getPlayerNameFromID]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function will get the player name from the ID element data.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isPedAiming]]&amp;lt;span style=&amp;quot;color:gray; 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;
*[[isPedAimingNearPed]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[isPedDiving]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This feature checks that pedestrian is diving in the water.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isPedDrivingVehicle]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[isPedNearbyWall]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function checks if player/ped is nearby a objects like buildings or walls.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isPlayerInTeam]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[setPedAttack]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function will make a ped attack a specified target.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[setPedFollow]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function will make a ped follow a specified target.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isPedFalling]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function checks if the player/ped is falling from a high place.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Player functions ===&lt;br /&gt;
*[[countPlayersInRange]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns the number of players that are within a certain range of the specified coordinates.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getPlayerPreviousAndNextWeapon]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns the player previous and next weapon.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getPlayersInRange]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function make a table of players within certain range.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isPlayerActuallyInVehicle]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function checks if a player is actually in a vehicle instead of just in the process of entering.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isPlayerHitByVehicle]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function cancels event when a element is hit by a vehicle.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[toggleAllVehicleControls]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function toggles all vehicle controls for a player on or off based on the provided boolean value.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Resource functions ===&lt;br /&gt;
*[[getResourceScripts]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns a table of the resource scripts.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getResourceSettings]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns a table of the resource settings.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getResourceSize]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns the size of a specified resource in kB(kilobyte)&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[refreshResource]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function refreshes your resource if you changed any of the files&lt;br /&gt;
*[[setResourcePriority]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function set resource download priority group.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Sound functions ===&lt;br /&gt;
*[[isSoundFinished]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function checks if a sound element has finished.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[stopSoundSlowly]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function stop your sound element slowly.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Browser functions ===&lt;br /&gt;
*[[playVideo]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function plays a video on the screen.&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-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-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 functions ===&lt;br /&gt;
*[[findEmptyCarSeat]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function finds you the first empty seat in a vehicle.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getNearestVehicle]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function gets the nearest vehicle to the specified player in a specified distance.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getRandomVehicle]] &amp;lt;span style=&amp;quot;color:gray; 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-size:smaller;&amp;quot;&amp;gt;» This function returns a table of all valid vehicle models.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getVehiclesCountByType]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[getVehicleTurnVelocityCenterOfMass]]&amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function gets a vehicle's turn velocity relative to the vehicle's center or mass.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isVehicleDoubleExhaust]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function checks is exhaust vehicle double.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isVehicleEmpty]] &amp;lt;span style=&amp;quot;color:gray; 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-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-size:smaller;&amp;quot;&amp;gt;» This function checks whether vehicle is on roof.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isVehicleOnFire]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function checks if the vehicle is on fire or not.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isVehicleReversing]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function checks if a specified vehicle is moving backwards.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isVehicleUpgraded]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function checks is vehicle upgraded by upgrade ID.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[setVehicleGravityPoint]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[setVehicleTurnVelocityCenterOfMass]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function sets a vehicle's turn velocity relative to the vehicle's center or mass.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[setVehicleHandlingFromText]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function sets a vehicle's handling from text.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[setVehicleWheelModel]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function changes the wheel model of the informed vehicle.&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-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;
=== Object functions ===&lt;br /&gt;
*[[getDynamicDoorObjectOpenRatio]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function tells you how open a dynamic door is in a range from 0 to 1.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isElementObject]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function tells you if an element is an object or no.&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-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;
=== Engine functions ===&lt;br /&gt;
*[[engineGetCOLsFromLibrary]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function gets the collision data from the col library.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[engineLoadIMGContainer]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function loads the IMG container.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Utility ===&lt;br /&gt;
*[[animate]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to use interpolateBetween without render event and easily used.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[callClientFunction]] &amp;lt;span style=&amp;quot;color:gray; 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-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;
*[[check]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[checkPassiveTimer]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function allows you to use passive timers in your conditions. For example you want to prevent players repeatedly using a command.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[coroutine.resume]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[compact]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function create table containing variables and their values.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[createDirectory]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function creates a directory in the resource's file system.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getBanBySerial]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns the ban if the serial is banned.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[getBanFromName]] &amp;lt;span style=&amp;quot;color:gray; 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-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;
*[[getSkinNameFromID]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function returns the name of the skin from the given id.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[IfElse]] &amp;lt;span style=&amp;quot;color:gray; 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;
*[[isLastExecuteInTimer]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function check if the execute is the last execute in the timer.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isMouseInCircle]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function checks if a cursor position is in circular area or not.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isMouseInPosition]] &amp;lt;span style=&amp;quot;color:gray; 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-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;
*[[PlotTrajectoryAtTime]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» Calculate projectile/water trajectory.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[preprocessor]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function allow you to use gcc macros.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[vector3:compare]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This method checks whether two vectors match, with optional precision.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[svgCreateRoundedRectangle]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function creates a rectangle with rounded edges.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[debounce]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function is removing unwanted input noise.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[listAllFiles]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function lists all files and subdirectories within a given directory and its subdirectories.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[dumpdelete]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function recursively deletes elements inside a table, destroying elements like vehicles, peds, or killing timers.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[isEventHandlerAdded]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function checks whether a specific event handler has already been added to an element.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===String functions===&lt;br /&gt;
*[[string.endsWith]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function checks if a string ends with other string.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[string.startsWith]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function checks if a string starts with other string.&amp;lt;/span&amp;gt;&lt;br /&gt;
*[[string.repetition]] &amp;lt;span style=&amp;quot;color:gray; font-size:smaller;&amp;quot;&amp;gt;» This function repeats a substring n times.&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Useful Functions]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=GetServerAveragePing&amp;diff=82424</id>
		<title>GetServerAveragePing</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=GetServerAveragePing&amp;diff=82424"/>
		<updated>2025-09-03T00:31:40Z</updated>

		<summary type="html">&lt;p&gt;O22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Useful Function}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
This function gets average players ping.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;int getAveragePing( )&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns the average players ping as integer.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Returns '''0''' if no players are online.&lt;br /&gt;
&lt;br /&gt;
==Code==&lt;br /&gt;
&amp;lt;section name=&amp;quot;Shared&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function getAveragePing()&lt;br /&gt;
    local players = getElementsByType(&amp;quot;player&amp;quot;)&lt;br /&gt;
    if #players == 0 then&lt;br /&gt;
        return 0&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
    local totalPing = 0&lt;br /&gt;
    for _, player in ipairs(players) do&lt;br /&gt;
        totalPing = totalPing + getPlayerPing(player)&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
    return math.floor(totalPing / #players)&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
The example shows how to use function.&lt;br /&gt;
&amp;lt;section name=&amp;quot;Shared&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
addCommandHandler(&amp;quot;avgping&amp;quot;, function()&lt;br /&gt;
    local avg = getAveragePing()&lt;br /&gt;
    if avg &amp;gt; 0 then&lt;br /&gt;
        print(&amp;quot;Average Ping: &amp;quot; .. avg .. &amp;quot; ms&amp;quot;)&lt;br /&gt;
    else&lt;br /&gt;
        print(&amp;quot;No players online.&amp;quot;)&lt;br /&gt;
    end&lt;br /&gt;
end)&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;
Author: [https://wiki.multitheftauto.com/wiki/User:O22 omar-o22]&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Useful_Functions}}&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=GetServerAveragePing&amp;diff=82423</id>
		<title>GetServerAveragePing</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=GetServerAveragePing&amp;diff=82423"/>
		<updated>2025-09-03T00:31:08Z</updated>

		<summary type="html">&lt;p&gt;O22: Created page with &amp;quot;{{Useful Function}} __NOTOC__ This function gets average players ping.  ==Syntax== &amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;int getAveragePing( )&amp;lt;/syntaxhighlight&amp;gt;  ===Returns=== Returns the average players ping as integer. &amp;lt;br&amp;gt; Returns '''0''' if no players are online.  ==Code== &amp;lt;section name=&amp;quot;Shared&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt; &amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt; function getAveragePing()     local players = getElementsByType(&amp;quot;player&amp;quot;)     if #players == 0 then         return 0     end...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Useful Function}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
This function gets average players ping.&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;int getAveragePing( )&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns the average players ping as integer.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Returns '''0''' if no players are online.&lt;br /&gt;
&lt;br /&gt;
==Code==&lt;br /&gt;
&amp;lt;section name=&amp;quot;Shared&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function getAveragePing()&lt;br /&gt;
    local players = getElementsByType(&amp;quot;player&amp;quot;)&lt;br /&gt;
    if #players == 0 then&lt;br /&gt;
        return 0&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
    local totalPing = 0&lt;br /&gt;
    for _, player in ipairs(players) do&lt;br /&gt;
        totalPing = totalPing + getPlayerPing(player)&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
    return math.floor(totalPing / #players)&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
The example shows how to use function.&lt;br /&gt;
&amp;lt;section name=&amp;quot;Shared&amp;quot; class=&amp;quot;both&amp;quot; show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
addCommandHandler(&amp;quot;avgping&amp;quot;, function()&lt;br /&gt;
    local avg = getAveragePing()&lt;br /&gt;
    if avg &amp;gt; 0 then&lt;br /&gt;
        print(&amp;quot;Average Ping: &amp;quot; .. avg .. &amp;quot; ms&amp;quot;)&lt;br /&gt;
    else&lt;br /&gt;
        print(&amp;quot;No players online.&amp;quot;)&lt;br /&gt;
    end&lt;br /&gt;
end)&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;
Author - omar-o22&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Useful_Functions}}&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=User:O22&amp;diff=82422</id>
		<title>User:O22</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=User:O22&amp;diff=82422"/>
		<updated>2025-09-02T14:46:07Z</updated>

		<summary type="html">&lt;p&gt;O22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MTA Developer}}&lt;br /&gt;
&amp;lt;pageclass class=&amp;quot;&amp;quot;&amp;gt;&amp;lt;/pageclass&amp;gt;&lt;br /&gt;
== Me ==&lt;br /&gt;
• Omar ('''o22''')&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
• [https://forum.multitheftauto.com/profile/87689-o22/ Forum]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
• [https://github.com/omar-o22 GitHub]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
• [https://discord.com/users/720883035318255636 Discord]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
• [https://wiki.multitheftauto.com/wiki/Special:Contributions/O22 Contributions — Wiki]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
• [https://github.com/multitheftauto/mtasa-blue/pulls?q=is%3Apr+author%3Aomar-o22 Contributions — mtasa-blue]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
• [https://github.com/multitheftauto/mtasa-resources/pulls?q=is%3Apr+author%3Aomar-o22 Contributions — mtasa-resources]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Changes_in_1.7&amp;diff=82420</id>
		<title>Changes in 1.7</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Changes_in_1.7&amp;diff=82420"/>
		<updated>2025-08-26T22:18:11Z</updated>

		<summary type="html">&lt;p&gt;O22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pageclass class=&amp;quot;#4286f4&amp;quot; subcaption=&amp;quot;Next release&amp;quot;&amp;gt;&amp;lt;/pageclass&amp;gt;&lt;br /&gt;
{{Changelogs}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
'''This changelog is partial and needs updating. It is updated progressively to keep the page always up to date.'''&lt;br /&gt;
&lt;br /&gt;
* GitHub commit log: https://github.com/multitheftauto/mtasa-blue/compare/1.6.0...master&lt;br /&gt;
* GitHub milestone: https://github.com/multitheftauto/mtasa-blue/milestone/10&lt;br /&gt;
* Resources GitHub commit log: https://github.com/multitheftauto/mtasa-resources/compare/1.6.0...master&lt;br /&gt;
* Release announcement on forums: TBA&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Important notice to Windows 7 and 8.x users ==&lt;br /&gt;
If you are using Windows 7 or 8.x, please upgrade your system to Windows 10 or 11 as soon as possible. Windows 7 and 8.x are no longer supported by Microsoft (since January 2020 and January 2023 respectively) and most software (including Google Chrome and Steam) which means you are running an insecure system. Multi Theft Auto will also eventually drop Windows 7 and 8.x support sometime in the future, so it would be a good idea to start looking at upgrade options right now. Thank you!&lt;br /&gt;
&lt;br /&gt;
'''CEF in MTA is no longer updated for Windows 7 or 8.x. This is because CEF no longer supports those versions of Windows. This is bad for security, so please upgrade to Windows 10+ and MTA to 1.6+'''&lt;br /&gt;
&lt;br /&gt;
== 4 Deprecations ==&lt;br /&gt;
These changes will take effect in this version and scripts may need to be manually upgraded when updating:&lt;br /&gt;
* Changed [[base64Encode]] and [[base64Decode]] to throw a warning on use, please upgrade to [[encodeString]] and [[decodeString]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/30a83b0af164fb6920a2a60e089d08a6f5622f7d 30a83b0] by '''Nico834''')&lt;br /&gt;
* Changed [[setHelicopterRotorSpeed]] and [[getHelicopterRotorSpeed]] to throw a warning on use, please upgrade to [[setVehicleRotorSpeed]] and [[getVehicleRotorSpeed]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/82000c34830b51ace2d14e39f3b487feb1aac1da 82000c3] by '''FileEX''')&lt;br /&gt;
* Changes [[setPedOnFire]] and [[isPedOnFire]] to throw a warning on use, please upgrade to [[setElementOnFire]] and [[isElementOnFire]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/7ad96e2e78fe41f8924d3f105b1683f7363c6fcb 7ad96e2] by '''FileEX''')&lt;br /&gt;
* Changes [[removeAllGameBuildings]] and [[restoreAllGameBuildings]] to throw a warning on use, please upgrade to [[removeGameWorld]] and [[restoreGameWorld]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/d7adae68791ce237704acc06bf794b5fbda96f95#diff-93c130ddb85da32121129a437ac5b28ba16fa17f6e3506e4cddfb7bc3d8eb9fbR180 d7adae6] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
== Notable Changes ==&lt;br /&gt;
* Support for Discord Rich Presence ([https://github.com/multitheftauto/mtasa-blue/commit/fdaa3aca3e233c7aba69d0fd5f85e78288a4401a fdaa3ac], [https://github.com/multitheftauto/mtasa-blue/commit/ef26810df4542283fee8edcc165bc9be22f2ca98 ef26810], [https://github.com/multitheftauto/mtasa-blue/commit/acfbd40df1ff1432ea1d6663c005d43fce22899c acfbd40] by '''znjvder''', '''tederis''', '''patrikjuvonen''' and '''Deihim007''')&lt;br /&gt;
* Added support for [[Building]]'s ([https://github.com/multitheftauto/mtasa-blue/commit/81242edb9295efbf4bf8b198b12d577a0877aec2 81242ed], [https://github.com/multitheftauto/mtasa-blue/commit/eb6b18a5d49a7f0f34bdbf42b15f933e42876cf8 eb6b18a] by '''TheNormalnij''')&lt;br /&gt;
* Added the ability to generate a nickname ([https://github.com/multitheftauto/mtasa-blue/commit/12c50eee66898771244074a3a44818dab36a7ac3 12c50ee] by '''Nico834''')&lt;br /&gt;
* Added ''meta.xml'' loading files pattern ([https://github.com/multitheftauto/mtasa-blue/commit/90e2737d0a5eb12f34d2fd3c1f270bedf34cda35 90e2737] by '''W3lac3''')&lt;br /&gt;
* Added world properties (time cycle and weather related features) with new functions: [[setWorldProperty]], [[getWorldProperty]], [[resetWorldProperty]] ([https://github.com/multitheftauto/mtasa-blue/commit/a75f1e9a03e74f7c9d4ae9e5aef8433af84d5ea2 a75f1e9] by '''Samr46''')&lt;br /&gt;
* Added file-system related functions (list files and folders in directories) ([https://github.com/multitheftauto/mtasa-blue/commit/74781c6295b5b6dc81cd95d4cfab7900d88d7524 74781c6] by '''Tracer''')&lt;br /&gt;
* Added the ability to change the color and size of the target arrow in the checkpoint marker ([https://github.com/multitheftauto/mtasa-blue/commit/071378ec4326408a9520c79c96befca995d097f6 071378e] by '''FileEX''')&lt;br /&gt;
* Added the ability to change the alpha of checkpoint and arrow marker ([https://github.com/multitheftauto/mtasa-blue/commit/7988852cf3af9e78f662d76544dc00db408b5c87 7988852] by '''FileEX''')&lt;br /&gt;
* Fixed weapon issues when using the jetpack ([https://github.com/multitheftauto/mtasa-blue/commit/180fbc0b5fdba95450e7a519f78f7588849349bf 180fbc0], [https://github.com/multitheftauto/mtasa-blue/commit/a68c2c4232c28c6ba5595a814b89be976c4fa9c3 a68c2c4] by '''FileEX''')&lt;br /&gt;
* Fixed vehicle windows not being visible from the inside when the lights are on ([https://github.com/multitheftauto/mtasa-blue/commit/934c1d6cfef19902cc391c896bbe2f80ba5a4f70 934c1d6] by '''FileEX''')&lt;br /&gt;
* Fixed old [[setElementModel]] memory leak ([https://github.com/multitheftauto/mtasa-blue/commit/4e7afa2586c6992a75ac5312378c1096d87148ae 4e7afa2] by '''tederis''')&lt;br /&gt;
* Enabled WebGL (GPU Acceleration) in CEF ([https://github.com/multitheftauto/mtasa-blue/commit/026301168d2cd8239650a4f0aa33ff0be6d752dc 0263011] by '''TFP-dev''')&lt;br /&gt;
* Refactored '''Quick Connect button''' ([https://github.com/multitheftauto/mtasa-blue/commit/5b59e2236b30ec696ac1c05f8bb4e509ec06c0f7 5b59e22] by '''Fernando-A-Rocha''')&lt;br /&gt;
* Added setting to save camera photos in documents folder ([https://github.com/multitheftauto/mtasa-blue/commit/3419b9b7a20e3d1893d673a2a07ee1a0efda1bd5 3419b9b] by '''ffsPLASMA''')&lt;br /&gt;
* Added HUD customization ([https://github.com/multitheftauto/mtasa-blue/commit/5ea0e0fb23b21750207b23191db92562cf9b822c 5ea0e0f] by '''FileEX''')&lt;br /&gt;
* Added sync peds/players animations for new players ([https://github.com/multitheftauto/mtasa-blue/commit/b32eafc70816ece8ad995d98d380d8f6e9950475 b32eafc] by '''FileEX''')&lt;br /&gt;
* From now on, animation progress is preserved even after a restream; the animation will not start from the beginning. ([https://github.com/multitheftauto/mtasa-blue/commit/ad0d6bfdd7bf56b78f7c8c1b9a60597ef9b6dca3 ad0d6bf] by '''FileEX''')&lt;br /&gt;
* Added ability to replace CJ clothing models ([https://github.com/multitheftauto/mtasa-blue/commit/6b823653ecf68e181de91392d5d8931488f90f20 6b82365] by '''W3lac3''')&lt;br /&gt;
* New MTA splash window ([https://github.com/multitheftauto/mtasa-blue/commit/215173eeb1e015c0381ce94f95429c36ab1b4430 215173e] by '''botder''')&lt;br /&gt;
* Fixed multiple damage instances in certain areas during explosions ([https://github.com/multitheftauto/mtasa-blue/commit/3bce4080ec66a993096f9e7fb039cc7d5d0d8175 3bce408] by '''FileEX''')&lt;br /&gt;
* From now on, before disconnecting from the server using the main menu, you will be asked to confirm if you really want to do it ([https://github.com/multitheftauto/mtasa-blue/commit/6aa763fb79701c57402fccca9ae6c0f396fb8f3c 6aa763f] by '''tonievalue''')&lt;br /&gt;
&lt;br /&gt;
== Statistics ==&lt;br /&gt;
&amp;lt;section show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
These are some statistics since the [[Changes in 1.6.0|previous release]].&lt;br /&gt;
* This is the '''28&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt;''' 1.x.x release&lt;br /&gt;
* '''{{date difference|2023|06|16}}''' days&lt;br /&gt;
* '''39''' new functions&lt;br /&gt;
* '''12''' new events&lt;br /&gt;
* '''4''' deprecations&lt;br /&gt;
* '''50+''' bug fixes and changes&lt;br /&gt;
* '''734''' commits ([https://github.com/multitheftauto/mtasa-blue/compare/1.6.0...master mtasa-blue])  ([https://github.com/multitheftauto/mtasa-resources/compare/1.6.0...master mtasa-resources])&lt;br /&gt;
* '''78''' new open GitHub issues ([https://github.com/multitheftauto/mtasa-blue/issues?q=is%3Aopen+is%3Aissue+created%3A2023-06-16..2024-10-01 see list])&lt;br /&gt;
* '''29''' resolved GitHub issues ([https://github.com/multitheftauto/mtasa-blue/issues?q=is%3Aclosed+is%3Aissue+milestone%3A%221.6.1%22 see list])&lt;br /&gt;
* '''28''' closed GitHub issues ([https://github.com/multitheftauto/mtasa-blue/issues?q=is%3Aclosed+is%3Aissue+closed%3A2023-06-16..2024-10-01+no%3Amilestone+-label%3Ainvalid see list])&lt;br /&gt;
* '''30''' new open GitHub pull requests ([https://github.com/multitheftauto/mtasa-blue/pulls?q=is%3Aopen+is%3Apr+created%3A2023-06-16..2024-10-01 see list])&lt;br /&gt;
* '''81''' merged GitHub pull requests ([https://github.com/multitheftauto/mtasa-blue/pulls?q=is%3Apr+is%3Amerged+milestone%3A%221.6.1%22 see list])&lt;br /&gt;
* '''26''' closed GitHub pull requests ([https://github.com/multitheftauto/mtasa-blue/pulls?q=is%3Apr+is%3Aunmerged+closed%3A2023-06-16..2024-10-01 see list])&lt;br /&gt;
* '''2+''' contributors of which '''0+''' are new ([https://github.com/multitheftauto/mtasa-blue/graphs/contributors?from=2023-06-16&amp;amp;to=2024-10-01&amp;amp;type=c see list])&lt;br /&gt;
* '''100+''' total contributors ([https://github.com/multitheftauto/mtasa-blue/graphs/contributors see list])&lt;br /&gt;
* '''3''' vendor updates&lt;br /&gt;
&lt;br /&gt;
&amp;lt;sub&amp;gt;'''Note:''' Last update to these statistics was made {{date difference human friendly|2024|04|04}}.&amp;lt;/sub&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 86 New Features ==&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Added new ''special world properties'' to [[setWorldSpecialPropertyEnabled]] function&lt;br /&gt;
:* Added '''fireballdestruct''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
:* Added '''roadsignstext''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/4a746eca1b5a546a19344a76573a5108ff9d79e6 4a746ec] by '''FileEX''')&lt;br /&gt;
:* Added '''extendedwatercannons''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/13a53959f52c978b416c00b428938f82818b2312 13a5395] by '''FileEX''')&lt;br /&gt;
:* Added '''tunnelweatherblend''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/9a0790ec7fab1efb7817eead371744fcd47da5c5 9a0790e] by ''''gta191977649''')&lt;br /&gt;
:* Added '''ignorefirestate''' special world proeprty ([https://github.com/multitheftauto/mtasa-blue/commit/46f3580fbd8ea5cf48c14cf8fee0bd6eb6691854 46f3580] by '''FileEX''')&lt;br /&gt;
:* Added '''flyingcomponents''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/5ee641436821ae8a59484ac721a4ec929d5cc152 5ee6414] by '''FileEX''')&lt;br /&gt;
:* Added '''vehicleburnexplosions''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/88d303c0bbcc0ed4fee958df2d16ace562ce0108 88d303c] by '''samr46''')&lt;br /&gt;
:* Added '''vehicle_engine_autostart''' special world property ([https://github.com/multitheftauto/mtasa-blue/commit/8b3f3440f8bc485f90d466a3fe6f3e5819de9c2f 8b3f344] by '''samr46''')&lt;br /&gt;
&lt;br /&gt;
* Added new ''glitches'' to [[setGlitchEnabled]] function&lt;br /&gt;
:* Added '''vehicle_rapid_stop''' glitch ([https://github.com/multitheftauto/mtasa-blue/commit/3f5801e65d8a51d112b686485d4a2491151c3311 3f5801e], [https://github.com/multitheftauto/mtasa-blue/commit/ef792d6af62443f97014621334c7188dddb4ef29 ef792d6] by '''samr46''' and '''Merlin''')&lt;br /&gt;
&lt;br /&gt;
* New '''file''' functions&lt;br /&gt;
:* Added [[fileGetContents]] ([https://github.com/multitheftauto/mtasa-blue/commit/22930d854ce67d84a4a3b65a61b98a9ffd3f9e38 22930d8] by '''botder''')&lt;br /&gt;
:* Added [[fileGetHash]] ([https://github.com/multitheftauto/mtasa-blue/commit/94f944f508b99b5d7e84fbb0be07a483e10517a9 94f944f] by '''botder''')&lt;br /&gt;
&lt;br /&gt;
* New and updated [[object]] functions&lt;br /&gt;
:* '''[Updated]''' Added [[isObjectMoving]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/7c939adb892c08836462a78cd9b987884cdb49ee 7c939ad] by '''FileEX''')&lt;br /&gt;
:* '''[Updated]''' Added [[breakObject]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/aa1a7853f46fc796a94f38b7df2a5293fb941ba2 aa1a785] by '''FileEX''')&lt;br /&gt;
:* '''[Updated]''' Added [[respawnObject]] and [[toggleObjectRespawn]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/9d65bb673c4df16def27e97a4af74d3b0c7eedc9 9d65bb6] by '''FileEX''')&lt;br /&gt;
:* '''[New]''' Added [[isObjectRespawnable]] ([https://github.com/multitheftauto/mtasa-blue/commit/9d65bb673c4df16def27e97a4af74d3b0c7eedc9 9d65bb6] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New '''file-path''' functions&lt;br /&gt;
:* Added [[pathListDir]], [[pathIsFile]] and [[pathIsDirectory]] ([https://github.com/multitheftauto/mtasa-blue/commit/74781c6295b5b6dc81cd95d4cfab7900d88d7524 74781c6] by '''Tracer''')&lt;br /&gt;
&lt;br /&gt;
* New [[marker]] functions&lt;br /&gt;
:* Added [[setMarkerTargetArrowProperties]] and [[getMarkerTargetArrowProperties]] ([https://github.com/multitheftauto/mtasa-blue/commit/071378ec4326408a9520c79c96befca995d097f6 071378e] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[timer]] functions&lt;br /&gt;
:* Added [[setTimerPaused]] and [[isTimerPaused]] ([https://github.com/multitheftauto/mtasa-blue/commit/69aa420f21fde3ac56e3d3bbc62ef0f060295c0a 69aa420] by '''jvstns''')&lt;br /&gt;
&lt;br /&gt;
* New and updated '''world''' functions&lt;br /&gt;
:* '''[New]''' Added [[resetWorldProperties]] ([https://github.com/multitheftauto/mtasa-blue/commit/6df889e78328b80f8e4bdc02f8761472cf87c54c 6df889e] by '''FileEX''')&lt;br /&gt;
:* '''[Updated]''' Added [[isWorldSpecialPropertyEnabled]] and [[setWorldSpecialPropertyEnabled]] also to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
&lt;br /&gt;
* New and updated [[vehicle]] functions&lt;br /&gt;
:* '''[New]''' Added [[spawnVehicleFlyingComponent]] ([https://github.com/multitheftauto/mtasa-blue/commit/9f54cfcd7a584f413db731052ebed921acfc71ea 9f54cfc] by '''FileEX''')&lt;br /&gt;
:* '''[Upated]''' Added [[setVehicleNitroActivated]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/e9e5819c394987de2b9a5d581c4df9fd47057d9d#diff-49b4b89bf4463f38e70a325131b4da66457d783b1401dde0ffbad723624f8612R130 e9e5819] by '''Proxy-99''')&lt;br /&gt;
:* '''[Updated]''' Added [[addVehicleSirens]] and [[removeVehicleSirens]] to client-side ([https://github.com/multitheftauto/mtasa-blue/commit/682cdca3c37248a9e725b461ba322db413653f25 682cdca] by '''Proxy-99''')&lt;br /&gt;
&lt;br /&gt;
* Updated [[player]] functions&lt;br /&gt;
:* Added [[getPlayerScriptDebugLevel]] to client-side ([https://github.com/multitheftauto/mtasa-blue/commit/8403da54ecfd20d6b9740fb79d90ac936d316112 8403da5] by '''Nico834''')&lt;br /&gt;
&lt;br /&gt;
* Updated [[ped]] functions&lt;br /&gt;
:* Added [[isPedReloadingWeapon]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/e71f4828b46bb69b9622a11d0f700a79f986ee9b e71f482] by '''Nico834''')&lt;br /&gt;
&lt;br /&gt;
* New [[element]] functions&lt;br /&gt;
:* Added [[setElementOnFire]] and [[isElementOnFire]] ([https://github.com/multitheftauto/mtasa-blue/commit/7ad96e2e78fe41f8924d3f105b1683f7363c6fcb 7ad96e2] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
=== Client ===&lt;br /&gt;
====Functions====&lt;br /&gt;
* New '''engine''' functions &lt;br /&gt;
:* Added '''streaming''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/7ffc31243c1dbca8ed5e7b0f8c05da239aa918bd 7ffc312], [https://github.com/multitheftauto/mtasa-blue/commit/6c86ebbf0801c45d5e0bcbb9d9f2e8fd55525b15 6c86ebb], [https://github.com/multitheftauto/mtasa-blue/commit/3c44dc5dcde0a5f98ff470ce9bc64443d47de807 3c44dc5] by '''Pirulax''')&lt;br /&gt;
::* [[engineStreamingSetMemorySize]]&lt;br /&gt;
::* [[engineStreamingGetMemorySize]]&lt;br /&gt;
::* [[engineStreamingRestoreMemorySize]]&lt;br /&gt;
::* [[engineStreamingSetBufferSize]]&lt;br /&gt;
::* [[engineStreamingGetBufferSize]]&lt;br /&gt;
::* [[engineStreamingRestoreBufferSize]]&lt;br /&gt;
::* [[engineStreamingSetModelCacheLimits]]&lt;br /&gt;
:* Added '''model-streaming''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/008eaa7e36ae74bbab7c5bc9861d8f0f890eb945 008eaa7] by '''TheNormalnij''')&lt;br /&gt;
::* [[engineStreamingRequestModel]]&lt;br /&gt;
::* [[engineStreamingReleaseModel]]&lt;br /&gt;
::* [[engineStreamingGetModelLoadState]]&lt;br /&gt;
:* Added new '''TXD''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/3e9a3735a8022a0acabaa3041c8a3f8d91e547b7 3e9a373] by '''TheNormalnij''')&lt;br /&gt;
::* [[engineSetModelTXDID]]&lt;br /&gt;
::* [[engineResetModelTXDID]]&lt;br /&gt;
:* Added '''pools''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/bdf12215d1f6e73d87f5cb0881049aa224b46b65 bdf1221] by '''TheNormalnij''')&lt;br /&gt;
::* [[engineGetPoolCapacity]]&lt;br /&gt;
::* [[engineSetPoolCapacity]]&lt;br /&gt;
::* [[engineGetPoolDefaultCapacity]]&lt;br /&gt;
::* [[engineGetPoolUsedCapacity]]&lt;br /&gt;
:* Added [[enginePreloadWorldArea]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b72fb9d3c9e6813cdf56e53d1a1e72958abd3cf 5b72fb9] by '''MegadreamsBE''')&lt;br /&gt;
&lt;br /&gt;
* New functions for '''Discord RPC''' ([https://github.com/multitheftauto/mtasa-blue/commit/fdaa3aca3e233c7aba69d0fd5f85e78288a4401a fdaa3ac], [https://github.com/multitheftauto/mtasa-blue/commit/ef26810df4542283fee8edcc165bc9be22f2ca98 ef26810], [https://github.com/multitheftauto/mtasa-blue/commit/acfbd40df1ff1432ea1d6663c005d43fce22899c acfbd40] by '''znjvder''', '''tederis''', '''patrikjuvonen''' and '''Deihim007''')&lt;br /&gt;
:* [[setDiscordApplicationID]]&lt;br /&gt;
:* [[setDiscordRichPresenceDetails]]&lt;br /&gt;
:* [[setDiscordRichPresenceState]]&lt;br /&gt;
:* [[setDiscordRichPresenceAsset]]&lt;br /&gt;
:* [[setDiscordRichPresenceSmallAsset]]&lt;br /&gt;
:* [[setDiscordRichPresenceButton]]&lt;br /&gt;
:* [[resetDiscordRichPresenceData]]&lt;br /&gt;
:* [[isDiscordRichPresenceConnected]]&lt;br /&gt;
:* [[setDiscordRichPresencePartySize]]&lt;br /&gt;
:* [[setDiscordRichPresenceStartTime]]&lt;br /&gt;
:* [[setDiscordRichPresenceEndTime]]&lt;br /&gt;
:* [[getDiscordRichPresenceUserID]]&lt;br /&gt;
&lt;br /&gt;
* New [[building]] functions ([https://github.com/multitheftauto/mtasa-blue/commit/81242edb9295efbf4bf8b198b12d577a0877aec2 81242ed], [https://github.com/multitheftauto/mtasa-blue/commit/eb6b18a5d49a7f0f34bdbf42b15f933e42876cf8 eb6b18a] by '''TheNormalnij''')&lt;br /&gt;
:* [[createBuilding]]&lt;br /&gt;
:* '''[Deprecated]''' [[removeAllGameBuildings]] &lt;br /&gt;
:* '''[Deprecated]''' [[restoreAllGameBuildings]] &lt;br /&gt;
&lt;br /&gt;
* New '''world''' functions&lt;br /&gt;
:* Added [[processLineAgainstMesh]] ([https://github.com/multitheftauto/mtasa-blue/commit/acb80a3945d0d5e0230b8a41394a3fe3e70b8d0b acb80a3] by '''Pirulax''')&lt;br /&gt;
:* Added '''volumetric shadows''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/6c93a49c4c2381f4ce84df195d98d36372a47d37 6c93a49] by '''Proxy-99''')&lt;br /&gt;
:::* [[setVolumetricShadowsEnabled]]&lt;br /&gt;
:::* [[isVolumetricShadowsEnabled]]&lt;br /&gt;
:::* [[resetVolumetricShadows]]&lt;br /&gt;
:* Added [[testSphereAgainstWorld]] ([https://github.com/multitheftauto/mtasa-blue/commit/aa90aa5f31e59df455af33b49e3eee5e4f107bfd aa90aa5] by '''FileEX''')&lt;br /&gt;
:* Added [[removeGameWorld]] and [[restoreGameWorld]] ([https://github.com/multitheftauto/mtasa-blue/commit/d7adae68791ce237704acc06bf794b5fbda96f95 d7adae6] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
* New '''drawing''' functions&lt;br /&gt;
:* Added [[dxDrawModel3D]] ([https://github.com/multitheftauto/mtasa-blue/commit/f886a359dd4a680c080da7f132db0527116b5d7a f886a35], [https://github.com/multitheftauto/mtasa-blue/commit/04ef14bbf2182b356155f28d4ed972b0f293632f 04ef14b] by '''CrosRoad95''' and '''tederis''')&lt;br /&gt;
&lt;br /&gt;
* New '''effects/fx''' functions&lt;br /&gt;
:* Added [[fxCreateParticle]] ([https://github.com/multitheftauto/mtasa-blue/commit/8f2730d2e260c3319cb51101c6aedb45e22bbd89 8f2730d] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[ped]] functions&lt;br /&gt;
:* Added [[resetPedVoice]] ([https://github.com/multitheftauto/mtasa-blue/commit/18986a4542db5eb72f6d0dfffb80cb8bb6eb1442 18986a4] by '''Tracer''')&lt;br /&gt;
:* Added new animation features ([https://github.com/multitheftauto/mtasa-blue/commit/aa0591c6f7b529a27b4ed8667e1dc70e68bd9386 aa0591c] by '''Tracer''')&lt;br /&gt;
::* [[getPedAnimationProgress]]&lt;br /&gt;
::* [[getPedAnimationSpeed]]&lt;br /&gt;
::* [[getPedAnimationLength]]&lt;br /&gt;
:* Added [[killPedTask]] ([https://github.com/multitheftauto/mtasa-blue/commit/e4a502bc7619dc3913c70d169f6105ecfb0633ff e4a502b] by '''Proxy-99''')&lt;br /&gt;
:* Added ped shadow features ([https://github.com/multitheftauto/mtasa-blue/commit/26d18288730fd3a7a854152da60c9acd18ab6c6f 26d1828] by '''Proxy-99''')&lt;br /&gt;
::* [[setDynamicPedShadowsEnabled]]&lt;br /&gt;
::* [[isDynamicPedShadowsEnabled]]&lt;br /&gt;
::* [[resetDynamicPedShadows]]&lt;br /&gt;
:* Added [[playPedVoiceLine]] ([https://github.com/multitheftauto/mtasa-blue/commit/7067ac1a73bb0b8c5a1f37794504a00e9703332e 7067ac1] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[player]] functions&lt;br /&gt;
:* Added [[isPlayerCrosshairVisible]] ([https://github.com/multitheftauto/mtasa-blue/commit/03e851a2f5ff2d917ba3c7a1c7577fdb5b8d2a6f 03e851a], [https://github.com/multitheftauto/mtasa-blue/commit/5f21c32fb0725140d6d03476e08de330d429b55a 5f21c32] by '''FileEX''')&lt;br /&gt;
:* New '''HUD''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/5ea0e0fb23b21750207b23191db92562cf9b822c 5ea0e0f] by '''FileEX''')&lt;br /&gt;
::* [[setPlayerHudComponentProperty]]&lt;br /&gt;
::* [[getPlayerHudComponentProperty]]&lt;br /&gt;
::* [[resetPlayerHudComponentProperty]]&lt;br /&gt;
&lt;br /&gt;
* New [[vehicle]] functions&lt;br /&gt;
:* Added [[setVehicleWheelsRotation]] ([https://github.com/multitheftauto/mtasa-blue/commit/aeb113d269fffee7d9ac435ce87b51e905e9efa6 aeb113d] by '''gta191977649''')&lt;br /&gt;
:* Added [[getVehicleEntryPoints]] ([https://github.com/multitheftauto/mtasa-blue/commit/bf588c163cd5bc134771e3842a6585212f06307f bf588c1] by '''MegadreamsBE''')&lt;br /&gt;
:* Added [[setVehicleSmokeTrailEnabled]] and [[isVehicleSmokeTrailEnabled]] for planes ([https://github.com/multitheftauto/mtasa-blue/commit/a5dfc5223358127299511b618ab29da08ff23030 a5dfc52] by '''Proxy-99''')&lt;br /&gt;
:* Added [[setVehicleRotorState]] and [[getVehicleRotorState]] for planes and helicopters ([https://github.com/multitheftauto/mtasa-blue/commit/c7644f2773c37c4e3d40b00807f2e962daca83b6#diff-9a175949acc865a4deea435d73c2082716ab68c6811ef1a657783f3d420dc00fR165 c7644f2] by '''FileEX''')&lt;br /&gt;
:* Added '''vehicle audio''' functions: ([https://github.com/multitheftauto/mtasa-blue/commit/53ee579670ef4ecec28f44627ff99321bba48cbd 53ee579] by '''TheNormalnij''')&lt;br /&gt;
::* [[setVehicleModelAudioSetting]]&lt;br /&gt;
::* [[getVehicleModelAudioSettings]]&lt;br /&gt;
::* [[resetVehicleModelAudioSettings]]&lt;br /&gt;
::* [[setVehicleAudioSetting]]&lt;br /&gt;
::* [[getVehicleAudioSettings]]&lt;br /&gt;
::* [[resetVehicleAudioSettings]]&lt;br /&gt;
&lt;br /&gt;
* New '''camera''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/40ec398bb15e775d1552286eb86fe7aa0dffefa4 40ec398], [https://github.com/multitheftauto/mtasa-blue/commit/d9c2793de2a9f0782ec59cf0ef9907abf935d421 d9c2793] by '''Tracer''')&lt;br /&gt;
:* [[shakeCamera]]&lt;br /&gt;
:* [[resetShakeCamera]]&lt;br /&gt;
&lt;br /&gt;
* New '''game-time''' functions ([https://github.com/multitheftauto/mtasa-blue/commit/b8b7ce555e2f0f0dd74425ac7c91786374513bee b8b7ce5] by '''Proxy-99''')&lt;br /&gt;
:* [[setTimeFrozen]]&lt;br /&gt;
:* [[isTimeFrozen]]&lt;br /&gt;
:* [[resetTimeFrozen]]&lt;br /&gt;
&lt;br /&gt;
* New [[element]] functions&lt;br /&gt;
:* Added [[setElementBoneQuaternion]] and [[getElementBoneQuaternion]] ([https://github.com/multitheftauto/mtasa-blue/commit/10098b0984bf5d5955ea1764e28f616c8a60714f 10098b0] by '''gownosatana''')&lt;br /&gt;
:* Added [[setElementLighting]] ([https://github.com/multitheftauto/mtasa-blue/commit/90fd98a6381991cfa926a9a65b9b934d0343e2b1 90fd98a] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* New [[browser]] functions&lt;br /&gt;
:* Added [[isBrowserGPUEnabled]] ([https://github.com/multitheftauto/mtasa-blue/commit/bfdfdb5f44726df85626e6e3e06c2a319c0c8962 bfdfdb5] by '''Lpsd''')&lt;br /&gt;
&lt;br /&gt;
* New '''weapons''' functions&lt;br /&gt;
:* Added [[setWeaponRenderEnabled]] &amp;amp; [[isWeaponRenderEnabled]] ([https://github.com/multitheftauto/mtasa-blue/commit/efed59b7dc7b076219f1c8a868ef8aa028582127 efed59b] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
====Events====&lt;br /&gt;
* Added [[onClientCoreCommand]] ([https://github.com/multitheftauto/mtasa-blue/commit/b2cf02943924c4972d2a695cdbfd7c9873fc3cbb b2cf029] by '''Pieter-Dewachter''')&lt;br /&gt;
&lt;br /&gt;
* Added [[onClientBrowserConsoleMessage]] ([https://github.com/multitheftauto/mtasa-blue/pull/3676 #3676], [https://github.com/multitheftauto/mtasa-blue/commit/d296a653c5ce2ecfd4f7150d74391b703b773baf d296a65] by '''gownosatana''' and '''Tracer''')&lt;br /&gt;
&lt;br /&gt;
=== Server ===&lt;br /&gt;
====Functions====&lt;br /&gt;
* New [[ACL]] functions&lt;br /&gt;
:* Added [[aclObjectGetGroups]] ([https://github.com/multitheftauto/mtasa-blue/commit/cf46bd8487bdb2d0cafdab1f43936357f670fe10 cf46bd8] by '''Tracer''')&lt;br /&gt;
&lt;br /&gt;
* New '''acl-account''' functions&lt;br /&gt;
:* Added [[getAccountType]] ([https://github.com/multitheftauto/mtasa-blue/commit/545f54b6ae0bfc721abba12402ad3787ed9ae811 545f54b] by '''Tracer''')&lt;br /&gt;
:* Added [[setAccountSerial]] ([https://github.com/multitheftauto/mtasa-blue/commit/a0c2e410f225ebd245a7c5b8031812cf94360097 a0c2e41] by '''camargo2019''')&lt;br /&gt;
&lt;br /&gt;
* New [[vehicle]] functions&lt;br /&gt;
:* Added new vehicle respawn functions ([https://github.com/multitheftauto/mtasa-blue/commit/1ff7137fd4477626d7ef4abfb1c696872cdf0eab 1ff7137], [https://github.com/multitheftauto/mtasa-blue/commit/d93287de761e568400b3b555a277e4ead6546ca3 d93287d] by '''Tracer''')&lt;br /&gt;
::* [[isVehicleRespawnable]]&lt;br /&gt;
::* [[getVehicleRespawnDelay]]&lt;br /&gt;
::* [[getVehicleIdleRespawnDelay]]&lt;br /&gt;
&lt;br /&gt;
* Added [[createBuilding]] to server-side also ([https://github.com/multitheftauto/mtasa-blue/commit/6e221298f4998c576ebf5a783cd0761b89117a7a 6e22129] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
* Security improvements for element-data system ([https://github.com/multitheftauto/mtasa-blue/commit/750d09adb9fd35f4c1b7786966b7ca292e35c200 750d09a] by '''TheNormalnij''')&lt;br /&gt;
:* Added [[onPlayerChangesProtectedData]] event&lt;br /&gt;
:* Added '''elementdata_whitelisted''' tag to the '''mtaserver.conf'''&lt;br /&gt;
:* Added '''clientChangesPolicy''' argument to the [[setElementData]].&lt;br /&gt;
&lt;br /&gt;
* Added new [[Server_mtaserver.conf|mta_server.conf]] tags:&lt;br /&gt;
&amp;lt;!--:* Added object specific contact radius and limit contact check. This can be set in the [[server_mtaserver.conf#object_contact_sync_radius|mtaserver.conf]]([https://github.com/multitheftauto/mtasa-blue/commit/6085796cafd1008ed4a74eae614d651c6c734741 6085796] by '''MegadreamsBE''')--&amp;gt;&lt;br /&gt;
:* Added [[Server_mtaserver.conf#vehicle_contact_sync_radius#vehicle_contact_sync_radius|vehicle_contact_sync_radius]] tag ([https://github.com/multitheftauto/mtasa-blue/commit/e3338c2fbbdb500c4ce28dc0677ceadef1f1ca4c e3338c2] by '''MegadreamsBE''')&lt;br /&gt;
:* Added [[Server_mtaserver.conf#vehicle_contact_sync_radius#check_duplicate_serials|check_duplicate_serials]] tag ([https://github.com/multitheftauto/mtasa-blue/commit/e094942b75117a49cae8c35d6508f37d0cf511fe e094942] by '''Nico834''')&lt;br /&gt;
:* Added [[Server_mtaserver.conf#vehicle_contact_sync_radius#elementdata_whitelisted|elementdata_whitelisted]] tag [https://github.com/multitheftauto/mtasa-blue/commit/750d09adb9fd35f4c1b7786966b7ca292e35c200 750d09a] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
====Events====&lt;br /&gt;
* Added [[onExplosion]] event ([https://github.com/multitheftauto/mtasa-blue/commit/9edffc4997579583407e8c2910264b344cf626a3 9edffc4] by '''botder''')&lt;br /&gt;
* Added [[onPlayerProjectileCreation]] and [[onPlayerDetonateSatchels]] events ([https://github.com/multitheftauto/mtasa-blue/commit/bc404021f66228fb00f1f136a606425da6075daa bc40402] by '''Zangomangu''')&lt;br /&gt;
* Added [[onPlayerTriggerEventThreshold]] event ([https://github.com/multitheftauto/mtasa-blue/commit/eae47fe2f432d9053c425fd515ea27f963c254ec eae47fe] by '''Lpsd''')&lt;br /&gt;
* Added [[onResourceStateChange]] ([https://github.com/multitheftauto/mtasa-blue/commit/cfe9cd9d0006580e7e70dc9e93672e3d1d3b9836 cfe9cd9] by '''Tracer''')&lt;br /&gt;
* Added [[onPlayerTeamChange]] ([https://github.com/multitheftauto/mtasa-blue/commit/c4e18c618db299ea05f5395c798f2a7d6515f5ea c4e18c6] by '''esmail9900''')&lt;br /&gt;
* Added [[onAccountCreate]] and [[onAccountRemove]] ([https://github.com/multitheftauto/mtasa-blue/commit/545f54b6ae0bfc721abba12402ad3787ed9ae811 545f54b] by '''Tracer''')&lt;br /&gt;
* Added [[onPlayerTriggerInvalidEvent]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b4122d35f725e4d258b408253c93e7cbd2ec783 5b4122d] by '''Lpsd''')&lt;br /&gt;
* Added [[onPlayerChangesWorldSpecialProperty]] event ([https://github.com/multitheftauto/mtasa-blue/commit/bbf511d4c5a94fc42d4ead201446fcef8ae430ec bbf511d] by '''Nico834''')&lt;br /&gt;
* Added [[onPlayerChangesProtectedData]] event ([https://github.com/multitheftauto/mtasa-blue/commit/750d09adb9fd35f4c1b7786966b7ca292e35c200 750d09a] by '''TheNormalnij''')&lt;br /&gt;
* Added [[onShutdown]] ([https://github.com/multitheftauto/mtasa-blue/commit/aa20c7d279ac92f1f98c54e79fda7fe00de64e50 aa20c7d] by '''FileEX''')&lt;br /&gt;
* Added [[onPedWeaponReload]] and [[onPlayerWeaponReload]] ([https://github.com/multitheftauto/mtasa-blue/commit/e71f4828b46bb69b9622a11d0f700a79f986ee9b e71f482] by '''Nico834''')&lt;br /&gt;
* Added [[onPlayerTeleport]] ([https://github.com/multitheftauto/mtasa-blue/commit/4000ea4edb37d2d2caeb60a5977f7a38c8a22f06 a38e6ac] by '''imfelipedev''')&lt;br /&gt;
* Added [[onAccountNameChange]] ([https://github.com/multitheftauto/mtasa-blue/commit/078d46b13164c940f3a713039e1a1be6d52c6c76 078d46b] by '''Davis22d''')&lt;br /&gt;
&lt;br /&gt;
== 77 Changes and Bug Fixes ==&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Fixed random toggle of world special properties ([https://github.com/multitheftauto/mtasa-blue/commit/bf95b1d16e31f36899350e2acac4bb8adfad5cdd bf95b1d] by '''samr46''')&lt;br /&gt;
* Many debugscript fixes&lt;br /&gt;
:* Fixed [[onClientDebugMessage]]/[[onDebugMessage]] recognizing level 4 as 0 ([https://github.com/multitheftauto/mtasa-blue/commit/783971efbdfcae622dbc03fd7647c337c2a3a306 783971e] by '''Tracer''')&lt;br /&gt;
:* Fixed outputDebugString level 4 colors ([https://github.com/multitheftauto/mtasa-blue/commit/5d4d7df3b8ff703cf954f3af394c811c489dcb18 5d4d7df] by '''MegadreamsBE''')&lt;br /&gt;
:* Fixed [[outputDebugString]] level 4 not being logged ([https://github.com/multitheftauto/mtasa-blue/commit/1951a5e62d35b2cf4ec292d294f8c818b8463418 1951a5e] by '''MegadreamsBE''')&lt;br /&gt;
:* Fixed outputDebugString with level 4 not showing ([https://github.com/multitheftauto/mtasa-blue/commit/b459973f8ad00aff79042a338a70700a21b426dc b459973] by '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
* Ped sync improvements ([https://github.com/multitheftauto/mtasa-blue/commit/f5b599c9f45777f924f7980cadb2d3cc6431d8b8 f5b599c] by '''tederis''')&lt;br /&gt;
* Fixed &amp;quot;Using setElementHealth on a dead ped makes it invincible&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/836888379dc3e434752ad20c10a8d7d33ffc65a2 8368883] by '''FileEX''')&lt;br /&gt;
* Fixed setting player model resets their current weapon slot ([https://github.com/multitheftauto/mtasa-blue/commit/f7ce562b645cb05a18658df62d093b753b881bb9 f7ce562] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where ''&amp;quot;arrow&amp;quot;'' and ''&amp;quot;checkpoint&amp;quot;'' markers ignored the alpha color ([https://github.com/multitheftauto/mtasa-blue/commit/7988852cf3af9e78f662d76544dc00db408b5c87 7988852] by '''FileEX''')&lt;br /&gt;
* Fixed the goggle effect resetting after changing skin ([https://github.com/multitheftauto/mtasa-blue/commit/1dd291409f791891b54ccf6b1d1cebe08cff13c0 1dd2914] by '''Proxy-99''')&lt;br /&gt;
* Fixed satchels detaching after changing skin ([https://github.com/multitheftauto/mtasa-blue/commit/d93dbf2ca598bf3508364bc7c6337d82c3d9ccb2 d93dbf2] by '''FileEX''')&lt;br /&gt;
* Added '''resourceName''' global variable and added current resource as default argument for [[getResourceName]] ([https://github.com/multitheftauto/mtasa-blue/commit/49fb6c68a27ad85e5abcd563f4c4f8c568305fdb 49fb6c6] by '''Nico834''')&lt;br /&gt;
* Added new parameters '''animGroup''' &amp;amp; '''animID''' for wasted events [[onPlayerWasted]], [[onPedWasted]], [[onClientPlayerWasted]] ([https://github.com/multitheftauto/mtasa-blue/commit/ecd6ed98ca129e7f45bda14384a503bee09495a7 ecd6ed9] by '''Nico834''' and '''G-Moris''')&lt;br /&gt;
* Added optional '''ignoreAlphaLimits''' argument for [[createMarker]] to maintain backward compatibility after adding the ability to change alpha for arrow and checkpoint markers ([https://github.com/multitheftauto/mtasa-blue/commit/121048cb9a14c28dcefca9bf2d4e955ef920a087 121048c] by '''FileEX''')&lt;br /&gt;
* Added optional '''property''' argument for [[getVehicleHandling]] ([https://github.com/multitheftauto/mtasa-blue/commit/a08e38d6507fdc1c051c2b84727c83dd9c418649 a08e38d] by '''XJMLN''')&lt;br /&gt;
* Fixed health value issues ([https://github.com/multitheftauto/mtasa-blue/commit/612f9a6715059baa43182e891258d9c3ceb19591 612f9a6] by '''Tracer''')&lt;br /&gt;
* Fixed [[getTimerDetails]] negative remaining duration ([https://github.com/multitheftauto/mtasa-blue/commit/1c6cab5a94c8c6ff5cf9b1fc0c9bc04808c922f8 1c6cab5] by '''jvstns''')&lt;br /&gt;
* Fixed changing [[setElementCollisionsEnabled]] doesn't update contact element ([https://github.com/multitheftauto/mtasa-blue/commit/71c683f547aac34e876601d24c881227fe3ca05f 71c683f] by '''FileEX''')&lt;br /&gt;
* Removed ability to skip [[addDebugHook]] ([https://github.com/multitheftauto/mtasa-blue/commit/2fecd74fdd453efdcbdddfd8f3fa3c092640cf9f 2fecd74] by '''PlatinMTA''')&lt;br /&gt;
* Fixed hydraulics stopping working after using [[setVehicleHandling]] ([https://github.com/multitheftauto/mtasa-blue/commit/f96836397a075585d4d112eb7d0240f1abf361d4 f968363] by '''FileEX''')&lt;br /&gt;
* Fixed helicopter rotor unaffected by vehicle alpha ([https://github.com/multitheftauto/mtasa-blue/commit/55d39225254c0b9961c1423b0d5695beff20072b 55d3922] by '''FileEX''')&lt;br /&gt;
* Add '''spawnFlyingComponent &amp;amp; breakGlass''' arguments for [[setVehiclePanelState]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b69d700c848e36b2f427bbc6ba5b2c905592783 5b69d70] by '''FileEX''')&lt;br /&gt;
* Fixed armor synchronization ([https://github.com/multitheftauto/mtasa-blue/commit/583e675da976fbf90f45804ad834d8fe33c779a1 583e675] by '''Nico834''')&lt;br /&gt;
* Fixed jetpack disappearing after changing position and coming back after changing skin ([https://github.com/multitheftauto/mtasa-blue/commit/de26a9e98519350f0486290ce886595068c02470 de26a9e] by '''FileEX''')&lt;br /&gt;
* Added support for '''ZLIB''' compression to [[encodeString]] &amp;amp; [[decodeString]]. ([https://github.com/multitheftauto/mtasa-blue/commit/6230161f8d0c83b60aec3f4afa5be88dd213b88b 6230161] by '''samr46''')&lt;br /&gt;
* Fixed a bug where hex color codes were included in the chat message length. ([https://github.com/multitheftauto/mtasa-blue/commit/9a0b1d59233f7001e991262b4df9d1c17850dc08 9a0b1d5] by '''Shady.lua''')&lt;br /&gt;
&lt;br /&gt;
=== Client ===&lt;br /&gt;
* Update d3dcompiler_47.dll from CEF ([https://github.com/multitheftauto/mtasa-blue/commit/75a1a298113721343090a06d60394f63f64df9ca 75a1a29] and [https://github.com/multitheftauto/mtasa-blue/commit/6d8fd8cc2fe7377318583f70abf58dcdb7d09cb0 6d8fd8c] by '''patrikjuvonen''')&lt;br /&gt;
* Updated translations from Crowdin ([https://github.com/multitheftauto/mtasa-blue/commit/29baf29a0143706eb08ef76c4743a452a7f83600 29baf29] by '''patrikjuvonen''')&lt;br /&gt;
:* Added Azerbaijani to client languages&lt;br /&gt;
* Resolved cursor being invisible with main menu open in certain scenarios ([https://github.com/multitheftauto/mtasa-blue/commit/bb1f675e6fee0ca3967f05afb5d2592dec9459b2 bb1f675] by '''Lpsd''')&lt;br /&gt;
* Partially fixed screen flickering on high memory usage ([https://github.com/multitheftauto/mtasa-blue/commit/1a886460a9fab1041cfba38078ae544b0fa51240 1a88646] by '''Zangomangu''')&lt;br /&gt;
* Added ''texture hit info'' parameter to [[processLineOfSight]] ([https://github.com/multitheftauto/mtasa-blue/commit/86f3344d1371a9783c2c7b755b895160a03ff6cd 86f3344] by '''Pirulax''')&lt;br /&gt;
* Fixed CStreamingSA::GetUnusedStreamHandle ([https://github.com/multitheftauto/mtasa-blue/commit/38624a4c2d18f4b60064d49069d3bcd81fbb4385 38624a4] by '''tederis''')&lt;br /&gt;
* IMG count extension ([https://github.com/multitheftauto/mtasa-blue/commit/1a60f6094b6660d29cabae780e6fbea5f5f1abf2 1a60f60] by '''tederis''')&lt;br /&gt;
* Fixed a desync state after aborted carjacking ([https://github.com/multitheftauto/mtasa-blue/commit/3f510fcdc7722cdfcb2e09ea43990b56aa43162b 3f510fc] by '''Zangomangu''')&lt;br /&gt;
* Allowed allocating clump models ([https://github.com/multitheftauto/mtasa-blue/commit/428561f1ebab49b8370ef0f022510cd67e98ab59 428561f] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash in CEF init ([https://github.com/multitheftauto/mtasa-blue/commit/c782826c955dfbdbaa67852a245e1c601d6b9f2c c782826] by '''TheNormalnij''')&lt;br /&gt;
* Fixed &amp;quot;Changing vehicle model from doorless or &amp;quot;doorful&amp;quot; causes doors to fall off&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/d6659dae263e2883d9e479ca271f0e9c8e622f95 d6659da] by '''FileEX''')&lt;br /&gt;
* Fixed &amp;quot;Wheel visibility when using setVehicleWheelStates&amp;quot;  ([https://github.com/multitheftauto/mtasa-blue/commit/51c9257a427957642932a216bd76cb7de59fea1b 51c9257] by '''FileEX''')&lt;br /&gt;
* Added new world special property ''burnflippedcars'' ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
* Streaming buffer restore and fixes ([https://github.com/multitheftauto/mtasa-blue/commit/6c86ebbf0801c45d5e0bcbb9d9f2e8fd55525b15 6c86ebb] by '''Pirulax''')&lt;br /&gt;
* Fixed Unicode file path passed in CClientIMG ([https://github.com/multitheftauto/mtasa-blue/commit/c57f07bfad8b02953dbe7b2b6e9b9de08ba88226 c57f07b] by '''TheNormalnij''')&lt;br /&gt;
* Added new world special property ''fireballdestruct'' ([https://github.com/multitheftauto/mtasa-blue/commit/219ad73d600140724eefcf5ca4040ac417cdee12 219ad73] by '''samr46''')&lt;br /&gt;
* Fixed &amp;quot;Hide question box when hiding main menu&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/4beff0447f093c66594a5f32ad5e52c7d7188ce9 4beff04] by '''XJMLN''')&lt;br /&gt;
* Fixed engineFreeModel regression ([https://github.com/multitheftauto/mtasa-blue/commit/b52500e92fb2591c092a6e66121471f098a2e044 b52500e] by '''TheNormalnij''')&lt;br /&gt;
* Fixed assert when model info is missing ([https://github.com/multitheftauto/mtasa-blue/commit/d431e5e16120b63beafbfe69110da601d12a76bb d431e5e] by '''TheNormalnij''')&lt;br /&gt;
* Fixed engineFreeModel crashes ([https://github.com/multitheftauto/mtasa-blue/commit/c289c22fb9a13730b7fd793752d84adbf2b928ee c289c22] by '''TheNormalnij''')&lt;br /&gt;
* Filtered URLs in requestBrowserDomains with incorrect symbols ([https://github.com/multitheftauto/mtasa-blue/commit/74bbb068acc6757ff0e04d0c63b999236e51ce63 74bbb06] by '''TheNormalnij''')&lt;br /&gt;
* Fixed issues with ped shaders ([https://github.com/multitheftauto/mtasa-blue/commit/3bc1e6d98ab13a9e7db95cc616b4645dc761889b 3bc1e6d] by '''Merlin''')&lt;br /&gt;
* Fixed 3D primitives disappearing ([https://github.com/multitheftauto/mtasa-blue/commit/04a1e2ba9157e4a1a91297f91554b72a87bf0ed4 04a1e2b] by '''tederis''')&lt;br /&gt;
* Fixed [[svgSetSize]] issues ([https://github.com/multitheftauto/mtasa-blue/commit/721c2b6d0f0c4ab016be079f1d4e28dec0123a6d 721c2b6] by '''Nico834''')&lt;br /&gt;
* Fixed the marker flickering issue during water cannon effects ([https://github.com/multitheftauto/mtasa-blue/commit/e83f700ee24904c0411b4dad3e695b3c3e30d9e4 e83f700] by '''Merlin''')&lt;br /&gt;
* Fixed buildings removal ([https://github.com/multitheftauto/mtasa-blue/commit/1b40db7cb5b63966ee97d0cbe79190360e1d32a0 1b40db7] by '''tederis''')&lt;br /&gt;
* Fixed crashes caused by [[createBuilding]] with [[engineRequestModel]] ([https://github.com/multitheftauto/mtasa-blue/commit/6245a68f3d97fc222d78fbc66b67f422a13710bf 6245a68] by '''TheNormalnij''')&lt;br /&gt;
* Fixed wrong getModelMatrix result for buildings ([https://github.com/multitheftauto/mtasa-blue/commit/f691946bc2d3dac75bd27d31886cd6b66d55811d f691946] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crashes for ''timed-object'' in [[engineRequestModel]] ([https://github.com/multitheftauto/mtasa-blue/commit/229389a4bd1c4c02010ba27ce26a428b41b68560 229389a] by '''TheNormalnij''')&lt;br /&gt;
* Fixed incorrect colors for 3D draws ([https://github.com/multitheftauto/mtasa-blue/commit/1f2c6e75fb71b01f0053f151e766a232ed33692b 1f2c6e7] by '''Nico834''')&lt;br /&gt;
* Add missing definition GuiGridList::getColumnWidth ([https://github.com/multitheftauto/mtasa-blue/commit/b34b1d5362291bcf00c7a0a0b694f60e1dccb363 b34b1d5] by '''Lpsd''')&lt;br /&gt;
* Fixed [[resetPedVoice]] not working at all ([https://github.com/multitheftauto/mtasa-blue/commit/3d8bd504f009fc2aa66e1dc9d35427a889ccd6aa 3d8bd50] by '''Tracer''')&lt;br /&gt;
* Added LOD support for buildings ([https://github.com/multitheftauto/mtasa-blue/commit/77ab3e64a3c6dacdcee02a223b67aec6c5b97ec2 77ab3e6] by '''TheNormalnij''')&lt;br /&gt;
* Added render stages for 3D primitives (new ''stage'' parameter) ([https://github.com/multitheftauto/mtasa-blue/commit/841447684c2d1992656555f81d73da52b2ce5c4f 8414476] by '''tederis''')&lt;br /&gt;
* Added disable option for [[engineSetModelPhysicalPropertiesGroup]] ([https://github.com/multitheftauto/mtasa-blue/commit/b6216cad058582b0feb34e98e94531d4acbf7c5b b6216ca] by '''TheNormalnij''')&lt;br /&gt;
* Fixed return correct value for stuntDistance parameter ([https://github.com/multitheftauto/mtasa-blue/commit/1f464d61c8c5f1400faa5472ccb67d2436d52903 1f464d6] by '''XJMLN''')&lt;br /&gt;
* Fixed [[engineRestoreModelPhysicalPropertiesGroup]] restores incorrect group ([https://github.com/multitheftauto/mtasa-blue/commit/291dfb4bc9bd72307a4ba4b42ffcbfc03ded4e38 291dfb4] by '''TheNormalnij''')&lt;br /&gt;
* Fixed OGG sound files can't be played as RAW data ([https://github.com/multitheftauto/mtasa-blue/commit/2764b7983c4e1bde20b894ebcfef5f230b149030 2764b79] by '''FileEX''')&lt;br /&gt;
* Implement [[getElementBoundingBox]] for buildings ([https://github.com/multitheftauto/mtasa-blue/commit/7b228daea3e0dc22d808abcf0eb568d99efcf63d 7b228da] by '''TheNormalnij''')&lt;br /&gt;
* Fixed streaming size check after [[engineAddImage]] ([https://github.com/multitheftauto/mtasa-blue/commit/5cdc04d6d61f40e89a5da3d27ae9575f4a419a08 5cdc04d] by '''TheNormalnij''')&lt;br /&gt;
* Fixed [[removeWorldModel]] crash ([https://github.com/multitheftauto/mtasa-blue/commit/ae98b04753b54208961759b295bef44f0ffafe43 ae98b04] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash when using [[extinguishFire]] in [[onClientVehicleDamage]] event ([https://github.com/multitheftauto/mtasa-blue/commit/d6ae4e9e24b0b7de704a3cbeec25dfd661b4a3fc d6ae4e9] by '''FileEX''')&lt;br /&gt;
* Fixed weapon models being invisible when using the jetpack with [[setJetpackWeaponEnabled]] ([https://github.com/multitheftauto/mtasa-blue/commit/a68c2c4232c28c6ba5595a814b89be976c4fa9c3 a68c2c4] by '''FileEX''')&lt;br /&gt;
* Fixed animations validation to avoid crashes ([https://github.com/multitheftauto/mtasa-blue/commit/27a24b551d86c6fbf9ee308603f24b011e941399 27a24b5] by '''G-Moris''')&lt;br /&gt;
* Fixed a bug where the &amp;quot;attacker&amp;quot; parameter is always nil in the [[onClientObjectBreak]] event if the object is glass ([https://github.com/multitheftauto/mtasa-blue/commit/dca5e2065af4a0195526541f9a8285db0401616e dca5e20] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where the [[onClientObjectBreak]] event was not triggered if the glass was broken by an explosion ([https://github.com/multitheftauto/mtasa-blue/commit/dca5e2065af4a0195526541f9a8285db0401616e dca5e20] by '''FileEX''')&lt;br /&gt;
* Fixed a bug that prevented players from switching weapons with an active jetpack ([https://github.com/multitheftauto/mtasa-blue/commit/180fbc0b5fdba95450e7a519f78f7588849349bf 180fbc0] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where hitElement in the [[onClientVehicleCollision]] event was always nil for projectiles ([https://github.com/multitheftauto/mtasa-blue/commit/43cc7b3e34eb4680120eb8ebf40d31d845850df2 43cc7b3] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where hydra flares did not work with [[createProjectile]] ([https://github.com/multitheftauto/mtasa-blue/commit/2bdac16d1d868f396786fbfdcfa2595004e1fff5 2bdac16] by '''FileEX''')&lt;br /&gt;
* Fixed inconsistent extra component names ([https://github.com/multitheftauto/mtasa-blue/commit/d4f884935626c638dca0f7f45c71cfb22c4e2d72 d4f8849] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where after changing the key in the bind settings, only the key for the &amp;quot;down&amp;quot; status changed, while the &amp;quot;up&amp;quot; key remained unchanged.([https://github.com/multitheftauto/mtasa-blue/commit/3ebefc37951e24cbfb25035d99045d67571b5324 3ebefc3] by '''FileEX''')&lt;br /&gt;
* Maked frame graph scale accordingly to resolution ([https://github.com/multitheftauto/mtasa-blue/commit/e431474c676a253004a26d86fc9e1a6100d329d4 e431474] by '''ffsPLASMA''')&lt;br /&gt;
* Fixed old [[setElementModel]] memory leak ([https://github.com/multitheftauto/mtasa-blue/commit/4e7afa2586c6992a75ac5312378c1096d87148ae 4e7afa2] by '''tederis''')&lt;br /&gt;
* Fixed [[getObjectProperty]] returns invalid ''air_ressistance'' property ([https://github.com/multitheftauto/mtasa-blue/commit/b51e1116283e9ec453881d3c48229b96c6198d5a b51e111] by '''FileEX''')&lt;br /&gt;
* Fixed missing states in [[getPedControlState]] ([https://github.com/multitheftauto/mtasa-blue/commit/3333a115f1a14f00378161681aeba609b4e993c0 3333a11] by '''FileEX''')&lt;br /&gt;
* Fixed for randomly bright objects after weapon change  ([https://github.com/multitheftauto/mtasa-blue/commit/9b9120c73ec97bf1b2f24703889a62fc19326f1f 9b9120c] by '''FileEX''')&lt;br /&gt;
* Fixed some small problems with Device Selection Dialog ([https://github.com/multitheftauto/mtasa-blue/commit/6f90880bee4d9169d4eda5f6afc63f4ed1bf652f 6f90880] by '''forkerer''')&lt;br /&gt;
* Allow dynamic models to be created as buildings ([https://github.com/multitheftauto/mtasa-blue/commit/642438ec1302daba50b6f6069844e96cbaa31818 642438e] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash when disconnecting from server after creating projectiles ([https://github.com/multitheftauto/mtasa-blue/commit/9ab6104d9c1ec246fde29ae6bf303ae5848bbbe1 9ab6104] by '''TheNormalnij''')&lt;br /&gt;
* Allow client peds to enter/exit client vehicles ([https://github.com/multitheftauto/mtasa-blue/pull/3678 #3678], [https://github.com/multitheftauto/mtasa-blue/commit/67beec77b06897552dc2c756c15283bfdc19b143 67beec7] by '''gownosatana''' and '''Tracer''')&lt;br /&gt;
* Use immersive dark mode on game window ([https://github.com/multitheftauto/mtasa-blue/commit/fd9520498919ae191c718c49b2a5c742bbbf8239 fd95204] by '''FileEX''')&lt;br /&gt;
* Added damageable objects support for [[engineRequestModel]] ([https://github.com/multitheftauto/mtasa-blue/commit/21593b9239765343ad5a4975c9f8424e571a036d 21593b9] by '''TheNormalnij''')&lt;br /&gt;
* Fixed crash with [[setElementHealth]] in [[onClientPedDamage]] event ([https://github.com/multitheftauto/mtasa-blue/commit/2d3397df56827f7c218689873f8b4741ea9af44e 2d3397d] by '''FileEX''')&lt;br /&gt;
* Fixed [[setPedControlState]] is aborted when ped created/player join ([https://github.com/multitheftauto/mtasa-blue/commit/8117ebcb95d3e3c35c400ee073a6ebab81e3f9fb 8117ebc] by '''FileEX''')&lt;br /&gt;
* Added '''buildings''' support to [[engineApplyShaderToWorldTexture]] ([https://github.com/multitheftauto/mtasa-blue/commit/fe1dd063170aef6a866bc241c305278a73200fdd fe1dd06] by '''TheNormalnij''')&lt;br /&gt;
* Fixed unintended behavior for ped control states ([https://github.com/multitheftauto/mtasa-blue/commit/a38e6acaf5c0fd83b5627660439f36d380cd26e6 a38e6ac] by '''Nico834''')&lt;br /&gt;
* Fixed SVG colors bug ([https://github.com/multitheftauto/mtasa-blue/commit/04f297b7b1aecb3753c8fbfa19fa9627abf422b4 04f297b] by '''TheNormalnij''')&lt;br /&gt;
* Fixed &amp;quot;CEF Launcher&amp;quot; process remaining after closing MTA ([https://github.com/multitheftauto/mtasa-blue/commit/a6c00278a5329e3b2b870b298d78565b14a7bed2 a6c0027] by '''botder''')&lt;br /&gt;
* Removed ''login'' cmd from chat history ([https://github.com/multitheftauto/mtasa-blue/commit/4639aea8a5544bfa4460bfcc8bba1d5b032e931a 4639aea] by '''PlatinMTA''')&lt;br /&gt;
* Fixed in-game updater dialog incorrectly showing 0% progress ([https://github.com/multitheftauto/mtasa-blue/commit/40d9ac11a9864d4f26c9eb1979e3a30ec0624061 40d9ac1] by '''Dutchman101''')&lt;br /&gt;
* Fixed invalid references counter to TXD after [[engineSetModelTXDID]] (top 1 crash according to players crash stats) ([https://github.com/multitheftauto/mtasa-blue/commit/1b7e9e82997fb4ac2eec5722d9134299902a16e6 1b7e9e8] by '''TheNormalnij''')&lt;br /&gt;
* Fixed server cache memory leak on connecting to another server ([https://github.com/multitheftauto/mtasa-blue/commit/e3476592fc46dc28f9da98f525797ae94ebf3ec3 e347659] by '''Lpsd''')&lt;br /&gt;
* Added the ability to set CPU affinity (CPU 0) in the '''advanced''' tab in the settings ([https://github.com/multitheftauto/mtasa-blue/commit/d04c92b24e7b85f6015fa93192ddda06e9023c85 d04c92b] by '''FileEX''')&lt;br /&gt;
* Fixed crash in ''CClientDisplayManager'' (top 2 crash according to players crash stats) ([https://github.com/multitheftauto/mtasa-blue/commit/0df0a4b40f7aea7c16473d0844a03fcece888420 0df0a4b] by '''Lpsd''')&lt;br /&gt;
* Set main menu FPS limit to current display refresh rate ([https://github.com/multitheftauto/mtasa-blue/commit/acbcc8e03ba8ac677a9c2c8182fb6f24868cae46 acbcc8e] by '''samr46''')&lt;br /&gt;
* [[setSoundEffectParameter]] and [[getSoundEffectParameters]] can be now used also on players! ([https://github.com/multitheftauto/mtasa-blue/commit/20851ecf7d69cc42fc00a62446a87d7e99c1e19d 20851ec] by '''tederis''')&lt;br /&gt;
* Fixed elements sometimes being visible from other dimensions in the current dimension ([https://github.com/multitheftauto/mtasa-blue/commit/9af03b3263a5a320e2f92140f6caa6c94b9fe9a5 9af03b3], [https://github.com/multitheftauto/mtasa-blue/commit/1dff560099459bc1b8248ef50643886158b0d731 1dff560] by '''FileEX''' &amp;amp; '''tederis''')&lt;br /&gt;
* Fixed bug &amp;quot;Copying text from CEF Browser shows Chinese characters in console&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/892beb0457b461d5afd5d91e86763181bdb972d3 892beb0] by '''ColombuxMaximus''')&lt;br /&gt;
* Fixed a bug where hidden vehicle components became visible after changing the variant or handling ([https://github.com/multitheftauto/mtasa-blue/commit/1d81347ee7e2614cd94e4b1807947d2c98b3305f 1d81347] by '''ColombuxMaximus''')&lt;br /&gt;
* Fixed persian characters in main menu &amp;amp; CEGUI ([https://github.com/multitheftauto/mtasa-blue/commit/efb2edfa853aa9a95f39ed9a843c3230b2e627cf efb2edf] by '''tzwer''')&lt;br /&gt;
* Added new movement states to [[getPedMoveState]] and fixed incorrect returning of &amp;quot;fall&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/c43c1b98b8ec0b7253d98c65b405ead482a765d8 c43c1b9], [https://github.com/multitheftauto/mtasa-blue/commit/797331fadbca4367f6cfd43633e48af44a99a115 797331f] by '''FileEX''')&lt;br /&gt;
* Fixed a bug where friendly fire did not prevent fire damage ([https://github.com/multitheftauto/mtasa-blue/commit/9c4397707dd2a94d8a6124d6b502d39793f0d2ba 9c43977] by '''FileEX''')&lt;br /&gt;
* Fixed [[engineReplaceModel]] memory leak &amp;amp; potential crash ([https://github.com/multitheftauto/mtasa-blue/commit/1dbbfd025c5ff791f31e1ef4f255514198f88d0c 1dbbfd0] by '''FileEX''')&lt;br /&gt;
* Fixed '''ALT + F4''' not working ([https://github.com/multitheftauto/mtasa-blue/commit/93963a98f24fdb5e8374baaddaa6d99260be967e 93963a9] by '''lopezloo''')&lt;br /&gt;
* Fixed [[setPedOnFire]] doesn't cancel '''TASK_SIMPLE_PLAYER_ON_FIRE''' ([https://github.com/multitheftauto/mtasa-blue/commit/2a2f31bccd9d90adfc2b03f1f63248b9d016c725 2a2f31b] by '''FileEX''')&lt;br /&gt;
* Fixed crash related to buildings ([https://github.com/multitheftauto/mtasa-blue/commit/4bcded5c89caffd005b266021d3c1bbd83a554cb 4bcded5] by '''tederis''')&lt;br /&gt;
* Fixed client freeze in some locations on the map ([https://github.com/multitheftauto/mtasa-blue/commit/3a376e479201b30b27488a5a674d7d816397e79a 3a376e4] by '''tederis''')&lt;br /&gt;
* Added disconnect warning when using quick connect while connected to server ([https://github.com/multitheftauto/mtasa-blue/commit/be395665c0f5094793b923e9f4fb94056ccff961 be39566] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
=== Server ===&lt;br /&gt;
* Check deprecated account name length on [[banPlayer]] to fix all players getting kicked ([https://github.com/multitheftauto/mtasa-blue/commit/b5e2332ca5857f3e984467ca0cb8163ec998ea06 b5e2332] by '''patrikjuvonen''')&lt;br /&gt;
* Fixed a crash in CHandlingManager ([https://github.com/multitheftauto/mtasa-blue/commit/b6867a0d2ed0b4ab12a4461c3f1ca7d667bdedbc b6867a0] by '''Olya-Marinova''')&lt;br /&gt;
* Removed min-version lua function from old MTA versions ([https://github.com/multitheftauto/mtasa-blue/commit/222b2720c93f29977fffb722f8d42ea3fb5f790d 222b272] by '''Olya-Marinova''')&lt;br /&gt;
* Disallow loadstring by default ([https://github.com/multitheftauto/mtasa-blue/commit/89e2d375d12deb026ee91fedc5e1ced04dc9a723 89e2d37] by '''srslyyyy''')&lt;br /&gt;
* Added valid values for 'donotbroadcastlan' setting ([https://github.com/multitheftauto/mtasa-blue/commit/f8d4422ad75c0d7f21894f9f868aa37ec6993a35 f8d4422] by '''Dark-Dragon''')&lt;br /&gt;
* Fixed &amp;quot;ped revives when syncer changes&amp;quot; ([https://github.com/multitheftauto/mtasa-blue/commit/af604ae7dfec742661206fb809f149140ce3a960 af604ae] by '''Zangomangu''')&lt;br /&gt;
* Fixed files not unloading after renaming ([https://github.com/multitheftauto/mtasa-blue/commit/2846e2794af1d9d441b7b988f49af521bd765fb0 2846e27] by '''W3lac3''')&lt;br /&gt;
* Added ability to limit client triggered events via [[triggerServerEvent]] ([https://github.com/multitheftauto/mtasa-blue/commit/eae47fe2f432d9053c425fd515ea27f963c254ec eae47fe] by '''Lpsd''')&lt;br /&gt;
* Added FileExists check to CMainConfig::AddMissingSettings ([https://github.com/multitheftauto/mtasa-blue/commit/1ebaa28e0381fb114b946f2f5a4d4bc5834ebd03 1ebaa28] by '''Lpsd''')&lt;br /&gt;
* Added server side weapon related checks ([https://github.com/multitheftauto/mtasa-blue/commit/86448ea52c7ee13e554a907c424aa3c891e51e31 86448ea] by '''NanoBob''')&lt;br /&gt;
* Added [[dbConnect]] option for MySQL ''&amp;quot;use_ssl=0&amp;quot;'' ([https://github.com/multitheftauto/mtasa-blue/commit/e6476767a9b6848467f0d123830dd2f90bd4442d e647676] by '''Lpsd''')&lt;br /&gt;
* Added ''content'' parameter to [[onPlayerPrivateMessage]] event ([https://github.com/multitheftauto/mtasa-blue/commit/79f8ed6a374d62e5cf1ec707b2ba25e3a959f509 79f8ed6] by '''FileEX''')&lt;br /&gt;
* Fix ability to move server-side vehicles that are far away from the player. New parameter can be set in the [[Server_mtaserver.conf#vehicle_contact_sync_radius|mtaserver.conf]] ([https://github.com/multitheftauto/mtasa-blue/commit/e3338c2fbbdb500c4ce28dc0677ceadef1f1ca4c e3338c2] by '''MegadreamsBE''')&lt;br /&gt;
* Added ''sync'' parameter for vehicles ([https://github.com/multitheftauto/mtasa-blue/commit/f88d31306d3c7fadfbc1542c85922612fd00b131 f88d313] by '''znvjder''')&lt;br /&gt;
* Fixed server-side pickup collision size ([https://github.com/multitheftauto/mtasa-blue/commit/49d97513e1eb2e0c96c5aa5a1d542d14131edd76 49d9751] by '''Proxy-99''') &lt;br /&gt;
* Fixed ''CSimBulletsyncPacket'' crash ([https://github.com/multitheftauto/mtasa-blue/commit/ee8bc92907a112a5584844329dbb07cc82326ad1 ee8bc92] by '''G-Moris''')&lt;br /&gt;
* Fixed onVehicleExit doesn't trigger if pulled out ([https://github.com/multitheftauto/mtasa-blue/commit/af4f7facca73bb68238437e6eff3504bd6f1cfe0 af4f7fa] by '''Proxy-99''')&lt;br /&gt;
* Fixed arguments in [[setPedAnimation]] being ignored when nil was passed ([https://github.com/multitheftauto/mtasa-blue/commit/f6f544e6b54054a06497fdf94cd077b862af8055 f6f544e] by '''FileEX''')&lt;br /&gt;
* Fixed Sirens not removed correctly ([https://github.com/multitheftauto/mtasa-blue/commit/9e419620069ec8ad5828c50295c1901685166cf9 9e41962] by '''Proxy-99''')&lt;br /&gt;
* Fixed a bug where [[setPedWeaponSlot]] did not update data in [[getPedWeapon]] and [[getPedWeaponSlot]] ([https://github.com/multitheftauto/mtasa-blue/commit/9615523faf84f584179412fb8e0cc04f9f4ee48f 9615523] by '''FileEX''')&lt;br /&gt;
* Added '''player''' parameter to [[onVehicleExplode]] ([https://github.com/multitheftauto/mtasa-blue/commit/1ec1f5be69d3ef99bd2e26fd3d008a7cecd0a5ad 1ec1f5b] by '''FileEX''')&lt;br /&gt;
* Excluded '''meta.xml''' from glob patterns for security reasons ([https://github.com/multitheftauto/mtasa-blue/commit/78f6d669adc97c51a825250dd4dbf1a4a4a0ff15 78f6d66] by '''FileEX''')&lt;br /&gt;
* Fixed the bug where changing a vehicle to one with a different number of seats caused passengers to experience network trouble ([https://github.com/multitheftauto/mtasa-blue/commit/1fcd732ca9031060602c8e2425e40ce602d35253 1fcd732] by '''FileEX''')&lt;br /&gt;
* Glob patterns added to meta.xml for HTML files ([https://github.com/multitheftauto/mtasa-blue/commit/7e6b4d02ec113b7ce3a6fd9937a6e8ad0a1ad9cb 7e6b4d0] by '''FileEX''')&lt;br /&gt;
* Fixed console not maintaining position &amp;amp; size when GUI skin changed ([https://github.com/multitheftauto/mtasa-blue/commit/30d8e6dbfe75db47cf396aa909f43c24c4dbe127] by '''NanoBob''')&lt;br /&gt;
* Added '''includeCustom''' argument for [[getValidPedModels]] clientside ([https://github.com/multitheftauto/mtasa-blue/commit/889567a7a0ecb8a8b8d938826d2395ef9f43a76b] by '''Fernando-A-Rocha''')&lt;br /&gt;
* Fixed '''min_mta_version''' tag for server ([https://github.com/multitheftauto/mtasa-blue/commit/8c0a01bac62ecc3e9510133dee9f8d6700065f03 8c0a01b] by '''Fernando-A-Rocha''')&lt;br /&gt;
* Allowed user to pass multiple resource names to start/stop/restart ([https://github.com/multitheftauto/mtasa-blue/commit/6f5fb9c65ee93a5c1692b0d3516a483dcea48f08 6f5fb9c] by '''botder''')&lt;br /&gt;
* Added sync peds/players animations for new players ([https://github.com/multitheftauto/mtasa-blue/commit/b32eafc70816ece8ad995d98d380d8f6e9950475 b32eafc] by '''FileEX''')&lt;br /&gt;
* Optimized processing big files by server ([https://github.com/multitheftauto/mtasa-blue/commit/cb90339aad461d3ee8c1008f2da10934afc38a4c cb90339] by '''AlexTMjugador''')&lt;br /&gt;
* Separate icon for ''mta-server.exe'' ([https://github.com/multitheftauto/mtasa-blue/commit/6cb9d3edf9686749e524f136985cefb53772898e 6cb9d3e] by '''Nico834''')&lt;br /&gt;
* Fixed a bug that caused warnings in debugscript when using depracated function names as variable names ([https://github.com/multitheftauto/mtasa-blue/commit/f23e39521b7e35ad5389e467360fbc525c099887 f23e395] by '''YelehaUwU''')&lt;br /&gt;
* [[onVehicleExplode]] can now be cancelled! ([https://github.com/multitheftauto/mtasa-blue/commit/fcb5b038981066f561f3792c2ae3d97d76d9d0fe fcb5b03] by '''Nico834''')&lt;br /&gt;
* Added '''eventName''' parameter to [[onPlayerTriggerEventThreshold]] ([https://github.com/multitheftauto/mtasa-blue/commit/76d7764c7ec408b77eb7b12379e88882e014527f 76d7764] by '''ColombuxMaximus''')&lt;br /&gt;
&lt;br /&gt;
=== More Technical Changes and Bug Fixes ===&lt;br /&gt;
&amp;lt;section show=&amp;quot;true&amp;quot;&amp;gt;&lt;br /&gt;
:* Updated CLuaFunctionParser.h ([https://github.com/multitheftauto/mtasa-blue/commit/55647f4023c78a846870f7c96069fab411cff5c5 55647f4] by '''Xenius97''')&lt;br /&gt;
:* Fixed build after above update ([https://github.com/multitheftauto/mtasa-blue/commit/9dcc651d42ae78b7b04257e7612c5b594cb0fffd 9dcc651] by '''Pirulax''')&lt;br /&gt;
:* Fixed std::unordered_map&amp;lt;std::string, std::string&amp;gt; parsing ([https://github.com/multitheftauto/mtasa-blue/commit/005592417b42de63c3d8ba9c572a81cdc8f96164 0055924] by '''tederis''')&lt;br /&gt;
:* Addendum to [https://github.com/multitheftauto/mtasa-blue/pull/3251 #3251] ([https://github.com/multitheftauto/mtasa-blue/commit/9544a34a28d3b4e766d7d07a44d63a8fe45dc506 9544a34] by '''Lpsd''')&lt;br /&gt;
:* Fixes for [https://github.com/multitheftauto/mtasa-blue/pull/3251 #3251] ([https://github.com/multitheftauto/mtasa-blue/commit/07013d24766a6259f4115bd0349a86f790dbf5d0 07013d2] by '''Lpsd''')&lt;br /&gt;
:* Fixed SetStreamingBufferSize possibly accessing memory out-of-bounds ([https://github.com/multitheftauto/mtasa-blue/commit/e08b84fbfe6ad0431605b31c2ba5a50a8f116dc9 e08b84f] by '''Pirulax''')&lt;br /&gt;
:* Added a check to verify itemList validity ([https://github.com/multitheftauto/mtasa-blue/commit/668073787fa6b952d0f1520e8ccae0999dbdba13 6680737] by '''R4ven47''')&lt;br /&gt;
:* Various code clean ups and refactors&lt;br /&gt;
::* Removed COffsetsMP and EU addresses ([https://github.com/multitheftauto/mtasa-blue/commit/52b0115a2d9157b7a153b5f24316ff6fd053e79b 52b0115] by '''Merlin''')&lt;br /&gt;
::* Removed COffsets and EU addresses ([https://github.com/multitheftauto/mtasa-blue/commit/959141de324126245d2b5ebf029c924302ff64e9 959141d] by '''Merlin''')&lt;br /&gt;
::* Clean ups ''multiplayer_sa'' code ([https://github.com/multitheftauto/mtasa-blue/commit/38982043978dd1ec72230569a6d534792e7c18bd 3898204] by '''CrosRoad95''')&lt;br /&gt;
::* Removed old easter-egg &amp;amp; debug code ([https://github.com/multitheftauto/mtasa-blue/commit/b26f80c3d72d628d63807529b408be4b61a5be60 b26f80c], [https://github.com/multitheftauto/mtasa-blue/commit/530212f34fc44e95599ca5e39e608583ecdbb5cc 530212f] by '''botder''' and '''Merlin''')&lt;br /&gt;
::* Refactored entity hierarchy &amp;lt;!-- Fixed accepting possible malicious packets --&amp;gt; ([https://github.com/multitheftauto/mtasa-blue/commit/fdaced046a9421a39de87b81eaf0f7de7c234c4b fdaced0] by '''Tracer''')&lt;br /&gt;
::* Removed unused symbol from ''CConsole'' class ([https://github.com/multitheftauto/mtasa-blue/commit/4fe9084a2e5c5eeed4b0a9a30a07607c812e923b 4fe9084] by '''Nico834''')&lt;br /&gt;
::* Refactored ''CLuaBlipDefs'' ([https://github.com/multitheftauto/mtasa-blue/commit/d05d09be8b9bd1327e37631411fa1e3b16c4dbb7 d05d09b], [https://github.com/multitheftauto/mtasa-blue/commit/c278c12debfd346377354017992543fc7cf6397b c278c12] by '''FileEX''')&lt;br /&gt;
::* Refactored ''CLuaTeamDefs'' ([https://github.com/multitheftauto/mtasa-blue/commit/74ffa1d0138ab3d848b0e081ca265f18ae6c7bd8 74ffa1d], [https://github.com/multitheftauto/mtasa-blue/commit/f37bbada1381370eeadabd4f4dde2a024ec48f5f f37bbad] by '''Nico834''')&lt;br /&gt;
::* Removed dead ''CAnimManagerSA'' code ([https://github.com/multitheftauto/mtasa-blue/commit/d18d7d35fb50fdeea3f70ad688a5857b29867185 d18d7d3] by '''G-Moris''')&lt;br /&gt;
::* Refactored class hierarchy and removed VTBL hacks ([https://github.com/multitheftauto/mtasa-blue/commit/61d1caffb5bfa9c620c08d43280150906dd172d5 61d1caf] by '''TheNormalnij''')&lt;br /&gt;
::* Refactored ''CWeaponSA'' and ''CPedSA'' classes ([https://github.com/multitheftauto/mtasa-blue/commit/a3b7c8519d0d167c66e70c8c7ed5d2f810b7ae39 a3b7c85], [https://github.com/multitheftauto/mtasa-blue/commit/2526a7dd6cde545e600792dcac3ab1b8ece0edec 2526a7d] by '''FileEX''')&lt;br /&gt;
::* Cleaning up client Common.h and moving enums to separate files ([https://github.com/multitheftauto/mtasa-blue/commit/1e56571479217f787b6444d48770f8aa69f14387 1e56571] by '''FileEX''')&lt;br /&gt;
:* Addd Comments to Frame Rate Fixes in CMultiplayerSA_FrameRateFixes.cpp ([https://github.com/multitheftauto/mtasa-blue/commit/e4e6d1b5a9609cb093a191db405c61339d4280d2 e4e6d1b] by '''Merlin''')&lt;br /&gt;
:* Fixed build after CEF update ([https://github.com/multitheftauto/mtasa-blue/commit/9980252446a6869609b1afa1ae1168282a99cb17 9980252] by '''TheNormalnij''')&lt;br /&gt;
:* Bump chromedriver from 114.0.2 to 119.0.1 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/5d8d3756d98b0272687b87c30adca2961eee86c8 5d8d375])&lt;br /&gt;
:* Bump axios from 1.4.0 to 1.6.1 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/ba018013085058905aa789c4fa3f39c4ed32fc69 ba01801])&lt;br /&gt;
:* Fixed file lock after img:destroy ([https://github.com/multitheftauto/mtasa-blue/commit/c2ccfd2c648a2d3f33ead2169262c30533f79bac c2ccfd2] by '''TheNormalnij''')&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
:* Bump follow-redirects from 1.15.2 to 1.15.6 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/437dbcd8024c5217c22ef0e38719f93f33f47ce5 437dbcd])&lt;br /&gt;
:* Fix permission check in File.create method ([https://github.com/multitheftauto/mtasa-blue/commit/92144a4d7383af09dfa05b7bcd3db09fa487e6fd 92144a4] by '''theSarrum''')&lt;br /&gt;
:* mbedTLS fix for cURL 8.8.0 ([https://github.com/multitheftauto/mtasa-blue/commit/4f7e0d87ec04e44d2e47f5b869c2d7c765817c0f 4f7e0d8] by '''Lpsd''')&lt;br /&gt;
:* Discord RPC Tweaks ([https://github.com/multitheftauto/mtasa-blue/commit/8ef351eabe46fd50da096247d8b6fc74508cb911 8ef351e] by '''theSarrum''')&lt;br /&gt;
:* Fixed small overhead in argument parser for strings ([https://github.com/multitheftauto/mtasa-blue/commit/d20582d770dfd2a1677d9981005b3b6d28fb8e4e d20582d] by '''TheNormalnij''')&lt;br /&gt;
:* Bump ws from 8.13.0 to 8.17.1 in /utils/localization/generate-images ([https://github.com/multitheftauto/mtasa-blue/commit/cc172fcae7654ead0d3530a4819c71f76205a175 cc172fc])&lt;br /&gt;
:* Generic exception type for argument parser instead of std::invalid_argument ([https://github.com/multitheftauto/mtasa-blue/commit/2043acfdb210a8f1158501e2fbb431b625bbf74d 2043acf] by '''tederis''')&lt;br /&gt;
:* Added comments for hooks in CMultiplayerSA_CrashFixHacks.cpp ([https://github.com/multitheftauto/mtasa-blue/commit/0327cb1bef9b234451f8a22ece9c6c70fdc9adb0 0327cb1] by '''FileEX''')&lt;br /&gt;
:* Optimization handling ([https://github.com/multitheftauto/mtasa-blue/commit/e3a8bd96d4eccb30e439ba8bd4a2029d01586154 e3a8bd9], [https://github.com/multitheftauto/mtasa-blue/commit/5ac6c8adad9c9ffd4a1c299c7cd548713e485bd6 5ac6c8a] by '''G-Moris''')&lt;br /&gt;
:* Added ability to use varargs in ArgumentParser functions ([https://github.com/multitheftauto/mtasa-blue/commit/8c2f95a5ffade0e7fb212b62282e69d7f433d36f 8c2f95a] by '''Tracer''')&lt;br /&gt;
:* Fixed google-breakpad in newer GCC versions ([https://github.com/multitheftauto/mtasa-blue/commit/5508c7e4058ad9d29cacc9964f8e84df2c60d14f 5508c7e] by '''Tracer''')&lt;br /&gt;
:* Validate serial on player join ([https://github.com/multitheftauto/mtasa-blue/commit/84437e49e6ebca758e1e87d93e7846f9aa99a673 84437e4] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Extract TXD class ([https://github.com/multitheftauto/mtasa-blue/commit/733683d70dc037fdcbb256fb17d86e93b fedd239] by '''TheNormalnij''')&lt;br /&gt;
:* Fixed a bug with desynchronization of the values of some fields of the ''CTickRateSettings'' structure ([https://github.com/multitheftauto/mtasa-blue/commit/af5b6968e0a28dbde7d92f3828dead0f1a936eec af5b696], [https://github.com/multitheftauto/mtasa-blue/commit/514a3b36d09906f09bb32e900c39dc09b1c29d10 514a3b3] by '''nweb''')&lt;br /&gt;
:* Fixed ''MinClientReqCheck'' and improve resource upgrade ([https://github.com/multitheftauto/mtasa-blue/commit/f0954109c0644c551ae3ec1df4474d1857e4bed8 f095410] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Refactored and improved player map (F11) ([https://github.com/multitheftauto/mtasa-blue/commit/2c5cf3226a573637b91d8b255d57113b7043dc28 2c5cf32] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Fixed ''CVector'' optional arguments ([https://github.com/multitheftauto/mtasa-blue/commit/6a70cf7def14db86980a499d0fdf4c63565915e1 6a70cf7] by '''Tracer''')&lt;br /&gt;
:* Fixed memory overwriting by ''EnumToString'' &amp;amp; ''StringToEnum'' ([https://github.com/multitheftauto/mtasa-blue/commit/3ab068ba213abca718ace47ac3bb8df9e4b1c3fc 3ab068b] by '''FileEX''')&lt;br /&gt;
:* Allow using ''std::variant'' with several pointers ([https://github.com/multitheftauto/mtasa-blue/commit/9d776c8bfc2680fc28857fc0a5dc4a4e40d4c3bf 9d776c8] by '''tederis''')&lt;br /&gt;
:* Fixed argument parser not distinguishing arrays from maps ([https://github.com/multitheftauto/mtasa-blue/commit/d4388a2452f4427bd56c3d93b80d4ea74c05b6e5 d4388a2] by '''FileEX''')&lt;br /&gt;
:* Fixed crash with nested arrays/maps in new argument parser ([https://github.com/multitheftauto/mtasa-blue/commit/ca877d33471fabbe970cf03d9d6d9b3413b6daa1 ca877d3] by '''tederis''')&lt;br /&gt;
&lt;br /&gt;
== 13 Vendor Updates ==&lt;br /&gt;
=== Client ===&lt;br /&gt;
* Updated libpng to 1.6.50 ([https://github.com/multitheftauto/mtasa-blue/commit/c24b39d41fd768337c3d336a944588d53dfaba44] by '''Nico834''')&lt;br /&gt;
* Updatee CEF to 127.3.5+g114ea2a+chromium-127.0.6533.120 ([https://github.com/multitheftauto/mtasa-blue/commit/bca4dff8dc490328000d7653a9166704d859b7e5 bca4dff] by '''Dutchman101''')&lt;br /&gt;
* Updated Unifont to 15.1.05 ([https://github.com/multitheftauto/mtasa-blue/commit/02115a5c00e2480bbb3b829b655869e7436de955 02115a5] by '''Dutchman101''')&lt;br /&gt;
&lt;br /&gt;
=== Server ===&lt;br /&gt;
* Updated cURL to 8.14.1 ([https://github.com/multitheftauto/mtasa-blue/commit/7c27c20da7503c68234cde0b726f10a3dcdf85e3] by '''Nico834''')&lt;br /&gt;
* Updated MySQL to 8.4.0 &amp;amp; OpenSSL to 3.3.1 ([https://github.com/multitheftauto/mtasa-blue/commit/a44d673bb8731506418fdbaa6690b339a98d82c1 a44d673] by '''botder''')&lt;br /&gt;
* Updated SQLite to 3.46.0 ([https://github.com/multitheftauto/mtasa-blue/commit/30e31af2ca1ae96e03386670a9df6db70336b968 30e31af] by '''Dutchman101''')&lt;br /&gt;
&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Updated mbedTLS to 3.6.4 ([https://github.com/multitheftauto/mtasa-blue/commit/45955dad5471f49e2784e37cbafd1b92196abe96] by '''Nico834''')&lt;br /&gt;
* Updated 7-Zip Standalone plugins to 24.07 (24.7.0.0) ([https://github.com/multitheftauto/mtasa-blue/commit/9b979b2d5c7f4b885046a85d9895e58416563890 9b979b2] by '''Dutchman101''')&lt;br /&gt;
* Updated freetype to freetype-37cefe3 (freetype/freetype@37cefe3) ([https://github.com/multitheftauto/mtasa-blue/commit/89e022cb8586aba5bdacd7b56c7d45c9b7b95f97 89e022c] by '''Dutchman101''')&lt;br /&gt;
* Updated nvapi from r550 to r555 ([https://github.com/multitheftauto/mtasa-blue/commit/5fdcada80a18af530381b04f54c3c69b6988f479 5fdcada] by '''Dutchman101''')&lt;br /&gt;
* Updated unrar to 7.0.9 ([https://github.com/multitheftauto/mtasa-blue/commit/ab9461be5777427261bc3a330acb4c0f5cdc2c8b ab9461b] by '''Dutchman101''')&lt;br /&gt;
* Updated FreeType to 2.13.2 ([https://github.com/multitheftauto/mtasa-blue/commit/a783e994264d4e954489e31459505c53759ca7f1 a783e99] by '''Dutchman101''')&lt;br /&gt;
* Updated zlib from 1.2.13 to 1.3 ([https://github.com/multitheftauto/mtasa-blue/commit/0f37ac0b18845e9f035d0ca45bbb41b9cd1aa979 0f37ac0] by '''Dutchman101''')&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
=== 46+ Changes and Bug Fixes ===&lt;br /&gt;
&lt;br /&gt;
'''admin'''&lt;br /&gt;
:* Removed execute code functionality for safety reasons ([https://github.com/multitheftauto/mtasa-resources/commit/507a04937524997410e450a6d4292974fa801bf8 507a049] by '''srslyyyy''')&lt;br /&gt;
:* Updated skins.xml ([https://github.com/multitheftauto/mtasa-resources/commit/b5306484a789cc59b05f4182505ac07df3d90e07 b530648] by '''Shady.lua''')&lt;br /&gt;
:* Fixed warnings ([https://github.com/multitheftauto/mtasa-resources/commit/d7b02022fa8168fc300dd562118100265cf0688b d7b0202] by '''jlillis''')&lt;br /&gt;
:* Making the admin window focused ([https://github.com/multitheftauto/mtasa-resources/commit/33f7cc938d243687fa36fa300ec588b2d057d02c 33f7cc9] by '''Proxy-99''')&lt;br /&gt;
:* Resource settings button is only displayed if there are settings ([https://github.com/multitheftauto/mtasa-resources/commit/0224ef52c699f27bd6e0e6364fbc81ecd0ec345f 0224ef5] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed nil index error and removed invalid characters causing syntax errors ([https://github.com/multitheftauto/mtasa-resources/commit/79857393ddb42f52ee05cf5758d5fdc8c2ff845c 7985739] by '''rad3sh''')&lt;br /&gt;
:* Allow disabling/enabling default reporting system ([https://github.com/multitheftauto/mtasa-resources/commit/0dbb83df7d3e9a20a2c897612db778bf4e395c92 0dbb83d] by '''Viude''')&lt;br /&gt;
:* Updated clientcheckban setting to ban serial instead of IP ([https://github.com/multitheftauto/mtasa-resources/commit/fa5beb96e10d9f30d9565ca212fe901f88e413a5 fa5beb9] by '''Viude''')&lt;br /&gt;
:* Fixed that double clicking on a resource without setting opened the GUI settings window ([https://github.com/multitheftauto/mtasa-resources/commit/82d5b835b503594101a99041498501e19a433a79 82d5b83] by '''T-MaxWiese-T''')&lt;br /&gt;
&lt;br /&gt;
'''admin2'''&lt;br /&gt;
:* Forward-ported permissions widget from admin1 and minor fixes ([https://github.com/multitheftauto/mtasa-resources/commit/25dcc4c655de26de0a2d0eb1b55ef7f3b3f6725e 25dcc4c] by '''Dark-Dragon''')&lt;br /&gt;
:* Fixed /report message viewer widget and minor fixes ([https://github.com/multitheftauto/mtasa-resources/commit/6dbdf2cf90d0e447879bea86942e01caf949b8f5 6dbdf2c] by '''Dark-Dragon''')&lt;br /&gt;
:* Refactored bans functionality ([https://github.com/multitheftauto/mtasa-resources/commit/d8c35b0a38a295d119054c4328a892c4e26be358 d8c35b0] by '''jlillis''')&lt;br /&gt;
:* Fixed messagebox not showing ([https://github.com/multitheftauto/mtasa-resources/commit/5afe0247e6ca44c5754a2d9a6a0af7bc8b57f967 5afe024] by '''FileEX''')&lt;br /&gt;
:* Added missing glitches and world properties ([https://github.com/multitheftauto/mtasa-resources/commit/6856aa075c8e5674379c2a89f355d8b167ab6fdb 6856aa0] by '''FileEX''')&lt;br /&gt;
:* Added content for &amp;quot;Users&amp;quot; sub-tab in the &amp;quot;Rights&amp;quot; tab ([https://github.com/multitheftauto/mtasa-resources/commit/3f8ecca953cc3dfa84e4d1b38b6b4c41f323688b 3f8ecca] by '''FileEX''')&lt;br /&gt;
:* Removed execute code functionality for safety reasons ([https://github.com/multitheftauto/mtasa-resources/commit/c4bc73a2b088b98116ece27065cc7f5a1dced15b c4bc73a] by '''jlillis''')&lt;br /&gt;
:* Replaced checkboxes with a gridlist for glitches and special world properties ([https://github.com/multitheftauto/mtasa-resources/commit/1dcb2953757c6741c93b9c63db33c032183047bc 1dcb295] by '''FileEX''')&lt;br /&gt;
:* Added ability to change server configuration settings ([https://github.com/multitheftauto/mtasa-resources/commit/118d58e383f631f111fe3f2463480182235c71d1 118d58e] by '''FileEX''')&lt;br /&gt;
:* Added content for &amp;quot;Resources&amp;quot; sub-tab in the &amp;quot;Rights&amp;quot; tab ([https://github.com/multitheftauto/mtasa-resources/commit/f16577e24ca9125eac5f2e96621077ad0d213b69 f16577e] by '''FileEX''')&lt;br /&gt;
:* Making the admin window focused ([https://github.com/multitheftauto/mtasa-resources/commit/33f7cc938d243687fa36fa300ec588b2d057d02c 33f7cc9] by '''Proxy-99''')&lt;br /&gt;
:* Fixed panel bind bug after reconnect ([https://github.com/multitheftauto/mtasa-resources/commit/c96bdd5297cf180f947596c1eded8929b4982e6c c96bdd5] by '''ricksterhd123''')&lt;br /&gt;
&lt;br /&gt;
'''defaultstats'''&lt;br /&gt;
:* Don't re-apply stats on every respawn ([https://github.com/multitheftauto/mtasa-resources/commit/9fde199ec5025052468df0255bf5c5011ef29718 9fde199] by '''Dutchman101''')&lt;br /&gt;
:* Fixed issue where defaultstats did not set player stats correctly ([https://github.com/multitheftauto/mtasa-resources/commit/567d10c552305dae3f57d5c422a34c25f22fdc12 567d10c] by '''MittellBuurman''')&lt;br /&gt;
&lt;br /&gt;
'''editor'''&lt;br /&gt;
:* Various fixes for local spawned or invalid elements ([https://github.com/multitheftauto/mtasa-resources/commit/4e3c57941cd789cff8d9ce240e99edca871a345d 4e3c579] by '''chris1384''')&lt;br /&gt;
:* Various bug fixes and improvements ([https://github.com/multitheftauto/mtasa-resources/commit/4674fa9c6dbff7a1073fb949cac44588c65df3fb 4674fa9] by '''IIYAMA12''')&lt;br /&gt;
:* Fixed rotation issues ([https://github.com/multitheftauto/mtasa-resources/commit/679c01b93132050548a86dba25ead7feaf9d5a1f 679c01b] by '''Nico834''')&lt;br /&gt;
:* Toggleable rotation mechanic and improve threshold ([https://github.com/multitheftauto/mtasa-resources/commit/83e2c79cbd959aa54c55d4220a5b4d38747e8353 83e2c79] by '''chris1384''')&lt;br /&gt;
:* Added missing objects and collisions ([https://github.com/multitheftauto/mtasa-resources/commit/4e83755d51345c0dc8e2e0f2ddf61588bf854641 4e83755] by '''THEGizmoOfficial''')&lt;br /&gt;
&lt;br /&gt;
'''edf'''&lt;br /&gt;
:* Fixed massive lag after stopping ''editor'' resource ([https://github.com/multitheftauto/mtasa-resources/commit/4674fa9c6dbff7a1073fb949cac44588c65df3fb 4674fa9] by '''IIYAMA12''')&lt;br /&gt;
&lt;br /&gt;
'''editor_main'''&lt;br /&gt;
:* Improvements ([https://github.com/multitheftauto/mtasa-resources/commit/5bf553f85cb9c53027814fe666268cb24ed66b2e 5bf553f], [https://github.com/multitheftauto/mtasa-resources/commit/e9b75fd615922c7d70f4e435a05fa933dcb9d2a5 e9b75fd] by '''q8X''')&lt;br /&gt;
:* Add xmlns namespace when saving map ([https://github.com/multitheftauto/mtasa-resources/commit/23fa3f38f71c2f3d28780df1b3ce163ab2eaae84 23fa3f3] by '''omar-o22''')&lt;br /&gt;
&lt;br /&gt;
'''editor_gui'''&lt;br /&gt;
:* Fixed test panel issues ([https://github.com/multitheftauto/mtasa-resources/commit/e558c846e8b0589997f342f431b36fdc371da000 e558c84] by '''chris1384''')&lt;br /&gt;
&lt;br /&gt;
'''fallout'''&lt;br /&gt;
:* Refactor &amp;amp; many improvements ([https://github.com/multitheftauto/mtasa-resources/commit/c733b69a735d004235ba61b1201ac1412acc6482 c733b69] by '''IIYAMA12''')&lt;br /&gt;
&lt;br /&gt;
'''freeroam'''&lt;br /&gt;
:* Updated skins.xml ([https://github.com/multitheftauto/mtasa-resources/commit/cacbe40a805402dec3a62180b987d4b777817ea6 cacbe40] by '''Shady.lua''')&lt;br /&gt;
:* Added Walk styles ([https://github.com/multitheftauto/mtasa-resources/commit/4a18d7585a2fa45eaed18d4b4796744a235a23c5 4a18d75] by '''Shady.lua''')&lt;br /&gt;
:* Security improvements ([https://github.com/multitheftauto/mtasa-resources/commit/2ec92132036d0dc073279dda3c88d71f578d651f 2ec9213] by '''IIYAMA12''')&lt;br /&gt;
:* Fixed freezetime flickering ([https://github.com/multitheftauto/mtasa-resources/commit/b40f27be0274b641c2cddd4c75a6f86f73ea4941 b40f27b], [https://github.com/multitheftauto/mtasa-resources/commit/817aa1ea9130fbccb1a23b7410309af2f8a21ddc 817aa1e] by '''ricksterhd123''' and '''jlillis''')&lt;br /&gt;
:* Fixed map key bind interferes with race editor help ([https://github.com/multitheftauto/mtasa-resources/commit/e62bc5471433b347b16c15709d469209cf202390 e62bc54] by '''MittellBuurman''')&lt;br /&gt;
&lt;br /&gt;
'''hedit'''&lt;br /&gt;
:* Added German localization [[File:Flag_de.png|x14px]] ([https://github.com/multitheftauto/mtasa-resources/pull/568/commits/c58df8666fbccfb0be73f27c52aa680dae2f0c1a bc33634] by '''Shady.lua''')&lt;br /&gt;
:* Added Brazilian Portuguese localization [[File:Flag_br.png|x14px]] ([https://github.com/multitheftauto/mtasa-resources/commit/d1b85d7dda45293ce497cf03f21eea2f59100b89 d1b85d7] by '''ricksterhd123''')&lt;br /&gt;
:* Added Hungarian localization [[File:Flag_hu.png|x18px]] ([https://github.com/multitheftauto/mtasa-resources/commit/53050dd0bf73a164969480c9277fc3c6b0601b7e 53050dd] by '''Nico834''')&lt;br /&gt;
:* Updated Turkish localization [[File:Tr.gif]] ([https://github.com/multitheftauto/mtasa-resources/commit/3044d00a796488870556b19b088ac505c332952c 3044d00] by '''mahlukat5''')&lt;br /&gt;
:* Updated Spanish localization [[File:Flag_es.png|x18px]] ([https://github.com/multitheftauto/mtasa-resources/commit/b74c2393cc15e403d4588ebb671659c16cc36269 b74c239] by '''kxndrick0''')&lt;br /&gt;
&lt;br /&gt;
'''internetradio'''&lt;br /&gt;
:* Fixed that the GUI window of the resource &amp;quot;internetradio&amp;quot; collides with the GUI window of the resource &amp;quot;helpmanager&amp;quot; ([https://github.com/multitheftauto/mtasa-resources/commit/313f3dde6b7cdb389f11f1a62a6d3e8c093c159f 313f3dd] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Improvements ([https://github.com/multitheftauto/mtasa-resources/commit/a3c9e17cf6b85374b5f9b5881937aee97da94745 a3c9e17] by '''srslyyyy''')&lt;br /&gt;
:* Added attaching to vehicles ([https://github.com/multitheftauto/mtasa-resources/commit/3dd5cbd32f092337707277fbecc5ee54988e07fc 3dd5cbd] by '''ds1-e''')&lt;br /&gt;
:* Added admin commands ([https://github.com/multitheftauto/mtasa-resources/commit/5c160212e190f74461d65fac1668cda07a2d0b11 https://github.com/multitheftauto/mtasa-resources/commit/5c160212e190f74461d65fac1668cda07a2d0b11] by '''ds1-e''')&lt;br /&gt;
:* Added ability to show speaker owner ([https://github.com/multitheftauto/mtasa-resources/commit/6189fc1eefce29c8467c5a1093eaa8bfd8ed97f0 6189fc1] by '''ds1-e''')&lt;br /&gt;
:* Fixed playSound3D and track name showing in other dimensions ([https://github.com/multitheftauto/mtasa-resources/commit/d4c04db009cdd68913fdb47bbc73acd91e63f981 d4c04db] by '''mateo-14'''&lt;br /&gt;
&lt;br /&gt;
'''ip2c'''&lt;br /&gt;
:* Added missing fetchRemote aclrequest ([https://github.com/multitheftauto/mtasa-resources/commit/e1364c3ebcc956dbf7f61e2d89741837776edec2 e1364c3] by '''Fernando-A-Rocha''')&lt;br /&gt;
:* Added backed up file and .gitignore to ignore the real one (auto-updated) ([https://github.com/multitheftauto/mtasa-resources/commit/e182291a53c3c76a2cf45834ba313aa9d18c16f4 e182291] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''ipb'''&lt;br /&gt;
:* Replaced the onClientResource start event with the onPlayerResourceStart event ([https://github.com/multitheftauto/mtasa-resources/commit/cca3a05adf7fc940b913453a5fad5d5f3c8e3518 cca3a05] by '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
'''parachute'''&lt;br /&gt;
:* Fixed warnings about min_mta_version ([https://github.com/multitheftauto/mtasa-resources/commit/b4119cca4665d63a3043f14c1624ce9c96700b96 b4119cc] by '''NetroX1993''')&lt;br /&gt;
&lt;br /&gt;
'''playerblips'''&lt;br /&gt;
:* Fixed that the resource &amp;quot;playercolors&amp;quot; should be activated for teams ([https://github.com/multitheftauto/mtasa-resources/commit/2cd28db5fa891f361c5af07a491532378a820b83 2cd28db] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Real-time update of settings ([https://github.com/multitheftauto/mtasa-resources/commit/9505b181fe7fc2bab53142746f73bc64a8fd984d 9505b18] by '''Nico834''')&lt;br /&gt;
:* Improved debug messages ([https://github.com/multitheftauto/mtasa-resources/commit/4084e5d369907d3ededd1b2eb19c916983680154 4084e5d] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed that when a player changed or joined teams the color of the blip was not updated ([https://github.com/multitheftauto/mtasa-resources/commit/ff80005f114a3d010624f7d54510ffde47dddb00 ff80005] by '''T-MaxWiese-T''')&lt;br /&gt;
&lt;br /&gt;
'''playercolors'''&lt;br /&gt;
:* Player nametag color should revert to team color when the resource is stopped ([https://github.com/multitheftauto/mtasa-resources/commit/d45d2d0cd963186639d76ab1cb27ef6a042cd0bd d45d2d0] by '''T-MaxWiese-T''')&lt;br /&gt;
:* Fixed chat messages sent twice ([https://github.com/multitheftauto/mtasa-resources/commit/0547cf72514a7dc7efc987f47903c35b310a3b22 0547cf7] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''performancebrowser'''&lt;br /&gt;
:* Fixed player names not being reinitialized on change ([https://github.com/multitheftauto/mtasa-resources/commit/3e0166dc7fa9c11c596a7958b02423b6aeff8410 3e0166d] by '''YelehaUwU''')&lt;br /&gt;
&lt;br /&gt;
'''runcode'''&lt;br /&gt;
:* Added aclrequest for loadstring function ([https://github.com/multitheftauto/mtasa-resources/commit/c40b8095f054b6e87b46e1d53d9b6ec77cf943c7 c40b809] by '''IIYAMA12 ''')&lt;br /&gt;
&lt;br /&gt;
'''scoreboard'''&lt;br /&gt;
:* Replaced drawing arrow from path to texture ([https://github.com/multitheftauto/mtasa-resources/commit/128f26952810804df6acb233ca9476853caa1286 128f269] by '''srslyyyy''')&lt;br /&gt;
&lt;br /&gt;
'''speedometer'''&lt;br /&gt;
:* Display at resource start ([https://github.com/multitheftauto/mtasa-resources/commit/31a5ac4013c3633647178e695474da6632eb38b8 31a5ac4] by '''Nico834''')&lt;br /&gt;
:* Preventing pointer overflow ([https://github.com/multitheftauto/mtasa-resources/commit/8689cdc247a3fd16125524aac04eb054c398084c 8689cdc] by '''Nico834''')&lt;br /&gt;
&lt;br /&gt;
'''superman'''&lt;br /&gt;
:* Fixes and improvements ([https://github.com/multitheftauto/mtasa-resources/commit/2b3bc102225b2f1c3144cffe290175e9a2c71728 2b3bc10], [https://github.com/multitheftauto/mtasa-resources/commit/e1c06c3c2581c16a6e05401381263a47dd6ac5f0 e1c06c3], [https://github.com/multitheftauto/mtasa-resources/commit/1e4319d180be0f482d42f2f32fbf2c1e5cd440cc 1e4319d] by '''ds1-e''')&lt;br /&gt;
&lt;br /&gt;
'''votemanager'''&lt;br /&gt;
:* Fixed lint error ([https://github.com/multitheftauto/mtasa-resources/commit/c8630075317123e510645464a3bf56ebb244573b c863007] by '''Dark-Dragon''')&lt;br /&gt;
&lt;br /&gt;
'''mapfixes'''&lt;br /&gt;
:* A new resource has been added that fixes many holes and bugs in the default map ([https://github.com/multitheftauto/mtasa-resources/commit/23f6bd94370440af5ed79a47bda1ff0caf92fa8e 23f6bd9] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''gps'''&lt;br /&gt;
:* Added export functions for custom logic ([https://github.com/multitheftauto/mtasa-resources/commit/537d92d11b357cf9e795a7bb3ec87c13fa62c7bc 537d92d] by '''T-MaxWiese-T''')&lt;br /&gt;
&lt;br /&gt;
'''deathmatch'''&lt;br /&gt;
:* Improvements and update ([https://github.com/multitheftauto/mtasa-resources/commit/a01ec8a86e636ca61f25a03d4ee30bd898754cbd a01ec8a], [https://github.com/multitheftauto/mtasa-resources/commit/b94ffddfd5b230544d54e5eca8c9c5d87dc69128 b94ffdd] by '''jlillis'''&lt;br /&gt;
&lt;br /&gt;
'''race'''&lt;br /&gt;
:* Fixed automatic nextid assignment breaking ([https://github.com/multitheftauto/mtasa-resources/commit/2c695a9e793825a8cafd2ee3be490d2d8e9ad318 2c695a9] by '''lotsofs''')&lt;br /&gt;
&lt;br /&gt;
'''voice_local'''&lt;br /&gt;
:* Improvements ([https://github.com/multitheftauto/mtasa-resources/commit/53cf63d83169018e0de9f45ecb565958855d717d 53cf63d] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
'''Others / Uncategorized'''&lt;br /&gt;
:* Refactor of resources meta.xml ([https://github.com/multitheftauto/mtasa-resources/commit/6713b07a459739c06112ac3e608776f3f0696144 6713b07] by '''Fernando-A-Rocha''')&lt;br /&gt;
&lt;br /&gt;
== Extra information ==&lt;br /&gt;
''More detailed information available on our GitHub repositories:&lt;br /&gt;
* [https://github.com/multitheftauto/mtasa-blue MTA:SA Blue]&lt;br /&gt;
* [https://github.com/multitheftauto/mtasa-resources MTA:SA Official Resources]&lt;br /&gt;
&lt;br /&gt;
[[Category:Changelog]]&lt;br /&gt;
[[Category:Incomplete]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/setDiscordRichPresenceSmallAsset&amp;diff=82360</id>
		<title>AR/setDiscordRichPresenceSmallAsset</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/setDiscordRichPresenceSmallAsset&amp;diff=82360"/>
		<updated>2025-08-06T01:40:13Z</updated>

		<summary type="html">&lt;p&gt;O22: /* Syntax */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ &lt;br /&gt;
{{Client function}}&lt;br /&gt;
{{Important Note|لاستخدام هذه الدالة، يجب عليك إعداد تطبيقك الخاص باستخدام [[AR/setDiscordApplicationID|setDiscordApplicationID]]}}&lt;br /&gt;
{{New feature/item|3.0161|1.6.0|22270|&lt;br /&gt;
باستخدام هذه الدالة، يمكنك تعيين صورة الأصل الصغيرة (small asset) للتطبيق.&lt;br /&gt;
الحد الأقصى لحجم الصور هو ''1024 x1024''، والحد الأدنى هو ''512 x512''.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==التركيب== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
bool setDiscordRichPresenceSmallAsset(string assetImage, string text)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
{{OOP||[[DiscordRPC]]:setSmallAsset}}&lt;br /&gt;
&lt;br /&gt;
===المعطيات المطلوبة===&lt;br /&gt;
*'''assetImage''': سلسلة نصية تحتوي على مفتاح الصورة التي قمت برفعها في قائمة الأصول الخاصة بتطبيقك.&lt;br /&gt;
*'''text''': سلسلة نصية تُعرض عندما يقوم أحدهم بتحويم الماوس فوق الصورة الكبيرة في Discord.&lt;br /&gt;
&lt;br /&gt;
===القيم المرجعة===&lt;br /&gt;
تعيد الدالة ''true'' إذا نجحت العملية، و ''false'' خلاف ذلك.&lt;br /&gt;
&lt;br /&gt;
==مثال==&lt;br /&gt;
المثال يقوم بتعيين الصورة الكبيرة إلى my_small_logo.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
addCommandHandler(&amp;quot;setsmalllogo&amp;quot;,&lt;br /&gt;
    function ()&lt;br /&gt;
        if isDiscordRichPresenceConnected() then &lt;br /&gt;
            setDiscordRichPresenceSmallAsset(&amp;quot;my_small_logo&amp;quot;, &amp;quot;!هذا هو شعاري الصغير&amp;quot;)&lt;br /&gt;
        end &lt;br /&gt;
    end&lt;br /&gt;
)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==انظر ايضاً==&lt;br /&gt;
{{AR/Client_Discord_functions}}&lt;br /&gt;
&lt;br /&gt;
[[en:SetDiscordRichPresenceAsset]]&lt;br /&gt;
[[de:setDiscordRichPresenceAsset]]&lt;br /&gt;
[[hu:setDiscordRichPresenceAsset]]&lt;br /&gt;
[[pl:setDiscordRichPresenceAsset]]&lt;br /&gt;
[[ro:setDiscordRichPresenceAsset]]&lt;br /&gt;
[[ru:SetDiscordRichPresenceAsset]]&lt;br /&gt;
[[PT-BR:SetDiscordRichPresenceAsset]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/getDiscordRichPresenceUserID&amp;diff=82359</id>
		<title>AR/getDiscordRichPresenceUserID</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/getDiscordRichPresenceUserID&amp;diff=82359"/>
		<updated>2025-08-06T01:39:16Z</updated>

		<summary type="html">&lt;p&gt;O22: Created page with &amp;quot;__NOTOC__  {{Client function}} {{Important Note|ستُعيد الدالة معرف المستخدم بشكل صحيح إذا كان المستخدم قد منح الموافقة مسبقًا ومتصل بتطبيق Rich Presence.}} {{New feature/item|3.0161|1.6.0|22342| تُعيد الدالة معرف مستخدم Discord الخاص بالعميل. }}   ==التركيب==  &amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt; string getDiscordRichPresenceUserID() &amp;lt;/syntaxhighlight&amp;gt;   ===الق...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ &lt;br /&gt;
{{Client function}}&lt;br /&gt;
{{Important Note|ستُعيد الدالة معرف المستخدم بشكل صحيح إذا كان المستخدم قد منح الموافقة مسبقًا ومتصل بتطبيق Rich Presence.}}&lt;br /&gt;
{{New feature/item|3.0161|1.6.0|22342|&lt;br /&gt;
تُعيد الدالة معرف مستخدم Discord الخاص بالعميل.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==التركيب== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
string getDiscordRichPresenceUserID()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===القيم المرجعة===&lt;br /&gt;
ستعيد سلسلة فارغة (&amp;quot;&amp;quot;) إذا لم يمنح المستخدم الموافقة أو قام بتعطيل خيار تزامن Rich Presence. وإلا، ستعيد المعرف كسلسلة نصية.&lt;br /&gt;
&lt;br /&gt;
==مثال==&lt;br /&gt;
يعرض هذا المثال معرف المستخدم الخاص به في الدردشة إذا كان قد منح الإذن بمشاركة البيانات. وإلا، سيظهر له رسالة مناسبة.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
addCommandHandler(&amp;quot;getmyuserid&amp;quot;,&lt;br /&gt;
    function ()&lt;br /&gt;
        if isDiscordRichPresenceConnected() then&lt;br /&gt;
            local id = getDiscordRichPresenceUserID() &lt;br /&gt;
            if id == &amp;quot;&amp;quot; then &lt;br /&gt;
                outputChatBox(&amp;quot;لم تسمح بمشاركة بيانات Discord! قم بمنح الإذن في الإعدادات!&amp;quot;)&lt;br /&gt;
            else &lt;br /&gt;
                outputChatBox(&amp;quot;معرف Discord الخاص بك: &amp;quot;..id)&lt;br /&gt;
            end &lt;br /&gt;
        end &lt;br /&gt;
    end&lt;br /&gt;
)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==انظر ايضاً==&lt;br /&gt;
{{AR/Client_Discord_functions}}&lt;br /&gt;
&lt;br /&gt;
[[en:IsDiscordRichPresenceConnected]]&lt;br /&gt;
[[de:isDiscordRichPresenceConnected]]&lt;br /&gt;
[[hu:isDiscordRichPresenceConnected]]&lt;br /&gt;
[[pl:isDiscordRichPresenceConnected]]&lt;br /&gt;
[[ro:isDiscordRichPresenceConnected]]&lt;br /&gt;
[[ru:IsDiscordRichPresenceConnected]]&lt;br /&gt;
[[PT-BR:IsDiscordRichPresenceConnected]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/setDiscordRichPresenceEndTime&amp;diff=82358</id>
		<title>AR/setDiscordRichPresenceEndTime</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/setDiscordRichPresenceEndTime&amp;diff=82358"/>
		<updated>2025-08-06T01:33:46Z</updated>

		<summary type="html">&lt;p&gt;O22: Created page with &amp;quot;__NOTOC__  {{Client function}} {{Important Note|لاستخدام هذه الدالة، يجب عليك إعداد تطبيقك الخاص باستخدام setDiscordApplicationID}} {{New feature/item|3.0161|1.6.0|22276| تقوم هذه الدالة بتعيين الوقت المتبقي في Discord Rich Presence. }}  ==التركيب==  &amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt; bool setDiscordRichPresenceEndTime(int seconds) &amp;lt;/syntaxhighlight&amp;gt;  {{OOP||...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ &lt;br /&gt;
{{Client function}}&lt;br /&gt;
{{Important Note|لاستخدام هذه الدالة، يجب عليك إعداد تطبيقك الخاص باستخدام [[AR/setDiscordApplicationID|setDiscordApplicationID]]}}&lt;br /&gt;
{{New feature/item|3.0161|1.6.0|22276|&lt;br /&gt;
تقوم هذه الدالة بتعيين الوقت المتبقي في Discord Rich Presence.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==التركيب== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
bool setDiscordRichPresenceEndTime(int seconds)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
{{OOP||[[DiscordRPC]]:setEndTime}}&lt;br /&gt;
&lt;br /&gt;
===المعطيات المطلوبة===&lt;br /&gt;
*'''seconds''': عدد صحيح يُمثّل عدد الثواني المتبقية. إذا كانت القيمة 0 أو أقل من وقت البدء ([[AR/setDiscordRichPresenceStartTime|setDiscordRichPresenceStartTime]]) فلن يتم عرض المؤقت.&lt;br /&gt;
&lt;br /&gt;
===القيم المرجعة===&lt;br /&gt;
تعيد الدالة ''true'' إذا نجحت العملية، و ''false'' خلاف ذلك.&lt;br /&gt;
&lt;br /&gt;
==مثال==&lt;br /&gt;
يعرض هذا المثال كيفية تغيير مؤقت الوقت المتبقي في تطبيق Discord Rich Presence.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
local app_id = &amp;quot;معرّف_تطبيقك_الخاص&amp;quot;&lt;br /&gt;
if setDiscordApplicationID(app_id) then &lt;br /&gt;
    setDiscordRichPresenceState(&amp;quot;داخل اللعبة&amp;quot;)&lt;br /&gt;
    setDiscordRichPresenceStartTime(1)&lt;br /&gt;
    setDiscordRichPresenceEndTime(60) -- دقيقة واحدة متبقية&lt;br /&gt;
end &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==انظر ايضاً==&lt;br /&gt;
{{AR/Client_Discord_functions}}&lt;br /&gt;
&lt;br /&gt;
[[en:SetDiscordRichPresenceDetails]]&lt;br /&gt;
[[de:setDiscordRichPresenceDetails]]&lt;br /&gt;
[[hu:setDiscordRichPresenceDetails]]&lt;br /&gt;
[[pl:setDiscordRichPresenceDetails]]&lt;br /&gt;
[[ro:setDiscordRichPresenceDetails]]&lt;br /&gt;
[[ru:SetDiscordRichPresenceDetails]]&lt;br /&gt;
[[PT-BR:SetDiscordRichPresenceDetails]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/setDiscordRichPresenceStartTime&amp;diff=82357</id>
		<title>AR/setDiscordRichPresenceStartTime</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/setDiscordRichPresenceStartTime&amp;diff=82357"/>
		<updated>2025-08-06T01:30:38Z</updated>

		<summary type="html">&lt;p&gt;O22: Created page with &amp;quot;__NOTOC__  {{Client function}} {{Important Note|لاستخدام هذه الدالة، يجب عليك إعداد تطبيقك الخاص باستخدام setDiscordApplicationID}} {{New feature/item|3.0161|1.6.0|22276| تقوم هذه الدالة بتعيين الوقت المنقضي في Discord Rich Presence. }}  ==التركيب==  &amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt; bool setDiscordRichPresenceStartTime(int seconds) &amp;lt;/syntaxhighlight&amp;gt;  {{OOP...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ &lt;br /&gt;
{{Client function}}&lt;br /&gt;
{{Important Note|لاستخدام هذه الدالة، يجب عليك إعداد تطبيقك الخاص باستخدام [[AR/setDiscordApplicationID|setDiscordApplicationID]]}}&lt;br /&gt;
{{New feature/item|3.0161|1.6.0|22276|&lt;br /&gt;
تقوم هذه الدالة بتعيين الوقت المنقضي في Discord Rich Presence.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==التركيب== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
bool setDiscordRichPresenceStartTime(int seconds)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
{{OOP||[[DiscordRPC]]:setStartTime}}&lt;br /&gt;
&lt;br /&gt;
===المعطيات المطلوبة===&lt;br /&gt;
*'''seconds''': عدد صحيح يُمثّل عدد الثواني المنقضية. إذا كانت القيمة 0، فلن يتم عرض المؤقت.&lt;br /&gt;
&lt;br /&gt;
===القيم المرجعة===&lt;br /&gt;
تعيد الدالة ''true'' إذا نجحت العملية، و ''false'' خلاف ذلك.&lt;br /&gt;
&lt;br /&gt;
==مثال==&lt;br /&gt;
يعرض هذا المثال كيفية تغيير مؤقت الوقت المنقضي في تطبيق Discord Rich Presence.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
local app_id = &amp;quot;معرّف_تطبيقك_الخاص&amp;quot;&lt;br /&gt;
if setDiscordApplicationID(app_id) then &lt;br /&gt;
    setDiscordRichPresenceState(&amp;quot;داخل اللعبة&amp;quot;)&lt;br /&gt;
    setDiscordRichPresenceStartTime(1)&lt;br /&gt;
end &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==انظر ايضاً==&lt;br /&gt;
{{AR/Client_Discord_functions}}&lt;br /&gt;
&lt;br /&gt;
[[en:SetDiscordRichPresenceDetails]]&lt;br /&gt;
[[de:setDiscordRichPresenceDetails]]&lt;br /&gt;
[[hu:setDiscordRichPresenceDetails]]&lt;br /&gt;
[[pl:setDiscordRichPresenceDetails]]&lt;br /&gt;
[[ro:setDiscordRichPresenceDetails]]&lt;br /&gt;
[[ru:SetDiscordRichPresenceDetails]]&lt;br /&gt;
[[PT-BR:SetDiscordRichPresenceDetails]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/setDiscordRichPresencePartySize&amp;diff=82356</id>
		<title>AR/setDiscordRichPresencePartySize</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/setDiscordRichPresencePartySize&amp;diff=82356"/>
		<updated>2025-08-06T01:27:04Z</updated>

		<summary type="html">&lt;p&gt;O22: Created page with &amp;quot;__NOTOC__  {{Client function}} {{Important Note|لاستخدام هذه الدالة، يجب عليك إعداد تطبيقك الخاص باستخدام setDiscordApplicationID}} {{Note|لكي يتم عرض حجم المجموعة، يجب تعيين الحالة باستخدام setDiscordRichPresenceState}} {{New feature/item|3.0161|1.6.0|22276| تقوم هذه الدالة بتعيين حجم المج...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ &lt;br /&gt;
{{Client function}}&lt;br /&gt;
{{Important Note|لاستخدام هذه الدالة، يجب عليك إعداد تطبيقك الخاص باستخدام [[AR/setDiscordApplicationID|setDiscordApplicationID]]}}&lt;br /&gt;
{{Note|لكي يتم عرض حجم المجموعة، يجب تعيين الحالة باستخدام [[AR/setDiscordRichPresenceState|setDiscordRichPresenceState]]}}&lt;br /&gt;
{{New feature/item|3.0161|1.6.0|22276|&lt;br /&gt;
تقوم هذه الدالة بتعيين حجم المجموعة في Discord Rich Presence.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==التركيب== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
bool setDiscordRichPresencePartySize(int size, int max)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
{{OOP||[[DiscordRPC]]:setPartySize}}&lt;br /&gt;
&lt;br /&gt;
===المعطيات المطلوبة===&lt;br /&gt;
*'''size''': عدد صحيح يمثل حجم المجموعة الحالي.&lt;br /&gt;
*'''max''': عدد صحيح يمثل الحد الأقصى لحجم المجموعة.&lt;br /&gt;
&lt;br /&gt;
'''إذا كانت القيمتان 0، فلن يتم عرض حجم المجموعة.'''&lt;br /&gt;
&lt;br /&gt;
===القيم المرجعة===&lt;br /&gt;
تعيد الدالة ''true'' إذا نجحت العملية، و ''false'' خلاف ذلك.&lt;br /&gt;
&lt;br /&gt;
==مثال==&lt;br /&gt;
يعرض هذا المثال كيفية تغيير حجم المجموعة (Party Size) في تطبيق Discord Rich Presence.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
local app_id = &amp;quot;معرّف_تطبيقك_الخاص&amp;quot;&lt;br /&gt;
if setDiscordApplicationID(app_id) then &lt;br /&gt;
    setDiscordRichPresenceState(&amp;quot;داخل اللعبة&amp;quot;)&lt;br /&gt;
    setDiscordRichPresencePartySize(1, 32)&lt;br /&gt;
end &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==انظر ايضاً==&lt;br /&gt;
{{AR/Client_Discord_functions}}&lt;br /&gt;
&lt;br /&gt;
[[en:SetDiscordRichPresenceDetails]]&lt;br /&gt;
[[de:setDiscordRichPresenceDetails]]&lt;br /&gt;
[[hu:setDiscordRichPresenceDetails]]&lt;br /&gt;
[[pl:setDiscordRichPresenceDetails]]&lt;br /&gt;
[[ro:setDiscordRichPresenceDetails]]&lt;br /&gt;
[[ru:SetDiscordRichPresenceDetails]]&lt;br /&gt;
[[PT-BR:SetDiscordRichPresenceDetails]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/setDiscordRichPresenceState&amp;diff=82355</id>
		<title>AR/setDiscordRichPresenceState</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/setDiscordRichPresenceState&amp;diff=82355"/>
		<updated>2025-08-06T00:14:56Z</updated>

		<summary type="html">&lt;p&gt;O22: Created page with &amp;quot;__NOTOC__  {{Client function}} {{Important Note|لاستخدام هذه الدالة، يجب عليك إعداد تطبيقك الخاص باستخدام setDiscordApplicationID}} {{New feature/item|3.0161|1.6.0|22270| تقوم هذه الدالة بتعيين الحالة لتطبيق Discord Rich Presence. }}  ==التركيب==  &amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt; bool setDiscordRichPresenceState(string state) &amp;lt;/syntaxhighlight&amp;gt;  {{OOP||Disc...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ &lt;br /&gt;
{{Client function}}&lt;br /&gt;
{{Important Note|لاستخدام هذه الدالة، يجب عليك إعداد تطبيقك الخاص باستخدام [[AR/setDiscordApplicationID|setDiscordApplicationID]]}}&lt;br /&gt;
{{New feature/item|3.0161|1.6.0|22270|&lt;br /&gt;
تقوم هذه الدالة بتعيين الحالة لتطبيق Discord Rich Presence.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==التركيب== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
bool setDiscordRichPresenceState(string state)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
{{OOP||[[DiscordRPC]]:setState}}&lt;br /&gt;
&lt;br /&gt;
===المعطيات المطلوبة===&lt;br /&gt;
*'''state''': سلسلة نصية تحتوي على نص الحالة.&lt;br /&gt;
&lt;br /&gt;
===القيم المرجعة===&lt;br /&gt;
تعيد الدالة ''true'' إذا نجحت العملية، و ''false'' خلاف ذلك.&lt;br /&gt;
&lt;br /&gt;
==مثال==&lt;br /&gt;
يعرض هذا المثال كيفية تعيين الحالة في تطبيق Discord Rich Presence.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
local app_id = &amp;quot;معرّف_تطبيقك_الخاص&amp;quot;&lt;br /&gt;
if setDiscordApplicationID(app_id) then &lt;br /&gt;
    setDiscordRichPresenceState(&amp;quot;في انتظار في الردهة&amp;quot;)&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==انظر ايضاً==&lt;br /&gt;
{{AR/Client_Discord_functions}}&lt;br /&gt;
&lt;br /&gt;
[[en:SetDiscordRichPresenceState]]&lt;br /&gt;
[[de:setDiscordRichPresenceState]]&lt;br /&gt;
[[hu:setDiscordRichPresenceState]]&lt;br /&gt;
[[pl:setDiscordRichPresenceState]]&lt;br /&gt;
[[ro:setDiscordRichPresenceState]]&lt;br /&gt;
[[ru:SetDiscordRichPresenceState]]&lt;br /&gt;
[[PT-BR:SetDiscordRichPresenceState]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/setDiscordRichPresenceSmallAsset&amp;diff=82354</id>
		<title>AR/setDiscordRichPresenceSmallAsset</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/setDiscordRichPresenceSmallAsset&amp;diff=82354"/>
		<updated>2025-08-06T00:11:02Z</updated>

		<summary type="html">&lt;p&gt;O22: Created page with &amp;quot;__NOTOC__  {{Client function}} {{Important Note|لاستخدام هذه الدالة، يجب عليك إعداد تطبيقك الخاص باستخدام setDiscordApplicationID}} {{New feature/item|3.0161|1.6.0|22270| باستخدام هذه الدالة، يمكنك تعيين صورة الأصل الصغيرة (small asset) للتطبيق. الحد الأقصى لحجم الصور هو ''1024 x1024''، والحد الأدنى هو ''512...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ &lt;br /&gt;
{{Client function}}&lt;br /&gt;
{{Important Note|لاستخدام هذه الدالة، يجب عليك إعداد تطبيقك الخاص باستخدام [[AR/setDiscordApplicationID|setDiscordApplicationID]]}}&lt;br /&gt;
{{New feature/item|3.0161|1.6.0|22270|&lt;br /&gt;
باستخدام هذه الدالة، يمكنك تعيين صورة الأصل الصغيرة (small asset) للتطبيق.&lt;br /&gt;
الحد الأقصى لحجم الصور هو ''1024 x1024''، والحد الأدنى هو ''512 x512''.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Syntax== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
bool setDiscordRichPresenceSmallAsset(string assetImage, string text)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
{{OOP||[[DiscordRPC]]:setSmallAsset}}&lt;br /&gt;
&lt;br /&gt;
===المعطيات المطلوبة===&lt;br /&gt;
*'''assetImage''': سلسلة نصية تحتوي على مفتاح الصورة التي قمت برفعها في قائمة الأصول الخاصة بتطبيقك.&lt;br /&gt;
*'''text''': سلسلة نصية تُعرض عندما يقوم أحدهم بتحويم الماوس فوق الصورة الكبيرة في Discord.&lt;br /&gt;
&lt;br /&gt;
===القيم المرجعة===&lt;br /&gt;
تعيد الدالة ''true'' إذا نجحت العملية، و ''false'' خلاف ذلك.&lt;br /&gt;
&lt;br /&gt;
==مثال==&lt;br /&gt;
المثال يقوم بتعيين الصورة الكبيرة إلى my_small_logo.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
addCommandHandler(&amp;quot;setsmalllogo&amp;quot;,&lt;br /&gt;
    function ()&lt;br /&gt;
        if isDiscordRichPresenceConnected() then &lt;br /&gt;
            setDiscordRichPresenceSmallAsset(&amp;quot;my_small_logo&amp;quot;, &amp;quot;!هذا هو شعاري الصغير&amp;quot;)&lt;br /&gt;
        end &lt;br /&gt;
    end&lt;br /&gt;
)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==انظر ايضاً==&lt;br /&gt;
{{AR/Client_Discord_functions}}&lt;br /&gt;
&lt;br /&gt;
[[en:SetDiscordRichPresenceAsset]]&lt;br /&gt;
[[de:setDiscordRichPresenceAsset]]&lt;br /&gt;
[[hu:setDiscordRichPresenceAsset]]&lt;br /&gt;
[[pl:setDiscordRichPresenceAsset]]&lt;br /&gt;
[[ro:setDiscordRichPresenceAsset]]&lt;br /&gt;
[[ru:SetDiscordRichPresenceAsset]]&lt;br /&gt;
[[PT-BR:SetDiscordRichPresenceAsset]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/isDiscordRichPresenceConnected&amp;diff=82353</id>
		<title>AR/isDiscordRichPresenceConnected</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/isDiscordRichPresenceConnected&amp;diff=82353"/>
		<updated>2025-08-06T00:04:43Z</updated>

		<summary type="html">&lt;p&gt;O22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ &lt;br /&gt;
{{Client function}}&lt;br /&gt;
{{New feature/item|3.0161|1.6.0|22270|&lt;br /&gt;
تتحقق الوظيفة مما إذا كان العميل لديه Discord Rich Presence مفعل.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==التركيب== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
bool isDiscordRichPresenceConnected()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
{{OOP||[[DiscordRPC]]:isConnected}}&lt;br /&gt;
&lt;br /&gt;
===القيم المرجعة===&lt;br /&gt;
ترجع الدالة ''true'' إذا كانت خاصية Discord Rich Presence مفعّلة على العميل، و ''false'' إذا كانت غير مفعّلة.&lt;br /&gt;
&lt;br /&gt;
==مثال==&lt;br /&gt;
يعرض هذا المثال إذا ما كان العميل قد فعّل خاصية Discord Rich Presence.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
addCommandHandler(&amp;quot;checkdiscord&amp;quot;,&lt;br /&gt;
    function ()&lt;br /&gt;
        if isDiscordRichPresenceConnected() then &lt;br /&gt;
            outputChatBox(&amp;quot;أنت تستخدم Discord Rich Presence، هذا رائع!&amp;quot;)&lt;br /&gt;
        end &lt;br /&gt;
    end&lt;br /&gt;
)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==انظر ايضاً==&lt;br /&gt;
{{AR/Client_Discord_functions}}&lt;br /&gt;
&lt;br /&gt;
[[en:IsDiscordRichPresenceConnected]]&lt;br /&gt;
[[de:isDiscordRichPresenceConnected]]&lt;br /&gt;
[[hu:isDiscordRichPresenceConnected]]&lt;br /&gt;
[[pl:isDiscordRichPresenceConnected]]&lt;br /&gt;
[[ro:isDiscordRichPresenceConnected]]&lt;br /&gt;
[[ru:IsDiscordRichPresenceConnected]]&lt;br /&gt;
[[PT-BR:IsDiscordRichPresenceConnected]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/resetDiscordRichPresenceData&amp;diff=82352</id>
		<title>AR/resetDiscordRichPresenceData</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/resetDiscordRichPresenceData&amp;diff=82352"/>
		<updated>2025-08-06T00:04:29Z</updated>

		<summary type="html">&lt;p&gt;O22: /* Syntax */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ &lt;br /&gt;
{{Client function}}&lt;br /&gt;
{{New feature/item|3.0161|1.6.0|22270|&lt;br /&gt;
تعيد هذه الوظيفة إعدادات Discord Rich Presence إلى الوضع الافتراضي.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==التركيب== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
bool resetDiscordRichPresenceData()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===القيم المرجعة===&lt;br /&gt;
ترجع الدالة ''true'' إذا نجحت العملية، و ''false'' إذا فشلت.&lt;br /&gt;
&lt;br /&gt;
==مثال==&lt;br /&gt;
يعرض هذا المثال كيفية إعادة ضبط Discord Rich Presence بعد استخدام تطبيق مخصص.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
setDiscordApplicationID(&amp;quot;you_application_key&amp;quot;)&lt;br /&gt;
setDiscordRichPresenceAsset(&amp;quot;asset_logo&amp;quot;, &amp;quot;Name of Asset&amp;quot;)&lt;br /&gt;
if resetDiscordRichPresenceData()  then -- نقوم بإعادة الضبط إلى الوضع الافتراضي باستخدام تطبيق MTA.&lt;br /&gt;
    outputChatBox(&amp;quot;تمت إعادة Discord Rich Presence إلى الوضع الافتراضي.&amp;quot;)&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==انظر ايضاً==&lt;br /&gt;
{{AR/Client_Discord_functions}}&lt;br /&gt;
&lt;br /&gt;
[[en:ResetDiscordRichPresenceData]]&lt;br /&gt;
[[de:resetDiscordRichPresenceData]]&lt;br /&gt;
[[hu:resetDiscordRichPresenceData]]&lt;br /&gt;
[[pl:resetDiscordRichPresenceData]]&lt;br /&gt;
[[ro:resetDiscordRichPresenceData]]&lt;br /&gt;
[[ru:ResetDiscordRichPresenceData]]&lt;br /&gt;
[[PT-BR:ResetDiscordRichPresenceData]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/setDiscordRichPresenceDetails&amp;diff=82351</id>
		<title>AR/setDiscordRichPresenceDetails</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/setDiscordRichPresenceDetails&amp;diff=82351"/>
		<updated>2025-08-06T00:01:52Z</updated>

		<summary type="html">&lt;p&gt;O22: Created page with &amp;quot;__NOTOC__  {{Client function}} {{Important Note|لاستخدام هذه الدالة، يجب عليك إعداد تطبيقك الخاص باستخدام setDiscordApplicationID}} {{New feature/item|3.0161|1.6.0|22270| تقوم هذه الدالة بتعيين نص التفاصيل في Discord Rich Presence. }}  ==التركيب==  &amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt; bool setDiscordRichPresenceDetails(string details) &amp;lt;/syntaxhighlight&amp;gt;  {{OOP||[...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ &lt;br /&gt;
{{Client function}}&lt;br /&gt;
{{Important Note|لاستخدام هذه الدالة، يجب عليك إعداد تطبيقك الخاص باستخدام [[AR/setDiscordApplicationID|setDiscordApplicationID]]}}&lt;br /&gt;
{{New feature/item|3.0161|1.6.0|22270|&lt;br /&gt;
تقوم هذه الدالة بتعيين نص التفاصيل في Discord Rich Presence.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==التركيب== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
bool setDiscordRichPresenceDetails(string details)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
{{OOP||[[DiscordRPC]]:setDetails}}&lt;br /&gt;
&lt;br /&gt;
===القيم المطلوبة===&lt;br /&gt;
*'''details''': سلسلة نصية تحتوي على نص التفاصيل.&lt;br /&gt;
&lt;br /&gt;
===القيم المرجعة===&lt;br /&gt;
تعيد الدالة ''true'' إذا نجحت العملية، و ''false'' خلاف ذلك.&lt;br /&gt;
&lt;br /&gt;
==مثال==&lt;br /&gt;
يعرض هذا المثال كيفية تغيير الحالة والتفاصيل في تطبيق Discord Rich Presence.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
local app_id = &amp;quot;معرّف_تطبيقك_الخاص&amp;quot;&lt;br /&gt;
if setDiscordApplicationID(app_id) then &lt;br /&gt;
    local name = getPlayerName(localPlayer)&lt;br /&gt;
    setDiscordRichPresenceState(&amp;quot;داخل اللعبة&amp;quot;)&lt;br /&gt;
    setDiscordRichPresenceDetails(&amp;quot;حالياً باسم &amp;quot;..name)&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==انظر ايضاً==&lt;br /&gt;
{{AR/Client_Discord_functions}}&lt;br /&gt;
&lt;br /&gt;
[[en:SetDiscordRichPresenceDetails]]&lt;br /&gt;
[[de:setDiscordRichPresenceDetails]]&lt;br /&gt;
[[hu:setDiscordRichPresenceDetails]]&lt;br /&gt;
[[pl:setDiscordRichPresenceDetails]]&lt;br /&gt;
[[ro:setDiscordRichPresenceDetails]]&lt;br /&gt;
[[ru:SetDiscordRichPresenceDetails]]&lt;br /&gt;
[[PT-BR:SetDiscordRichPresenceDetails]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/setDiscordRichPresenceButton&amp;diff=82350</id>
		<title>AR/setDiscordRichPresenceButton</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/setDiscordRichPresenceButton&amp;diff=82350"/>
		<updated>2025-08-05T23:55:28Z</updated>

		<summary type="html">&lt;p&gt;O22: Created page with &amp;quot;__NOTOC__  {{Client function}} {{Important Note|لاستخدام هذه الدالة، يجب عليك إعداد تطبيقك الخاص باستخدام setDiscordApplicationID}} {{New feature/item|3.0161|1.6.0|22270| تقوم هذه الدالة بتعيين زر مخصص يمكن من خلاله الوصول إلى موقع ويب على Discord. }}  ==التركيب==  &amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt; bool setDiscordRichPresenceButton(int...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ &lt;br /&gt;
{{Client function}}&lt;br /&gt;
{{Important Note|لاستخدام هذه الدالة، يجب عليك إعداد تطبيقك الخاص باستخدام [[AR/setDiscordApplicationID|setDiscordApplicationID]]}}&lt;br /&gt;
{{New feature/item|3.0161|1.6.0|22270|&lt;br /&gt;
تقوم هذه الدالة بتعيين زر مخصص يمكن من خلاله الوصول إلى موقع ويب على Discord.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==التركيب== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
bool setDiscordRichPresenceButton(int index, string text, string url)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
{{OOP||[[DiscordRPC]]:setButton}}&lt;br /&gt;
&lt;br /&gt;
===المعطيات المطلوبة===&lt;br /&gt;
*'''index''': رقم صحيح (int) يُمثّل ترتيب الزر (القيم الممكنة: 1 أو 2)&lt;br /&gt;
*'''text''': سلسلة نصية تحتوي على عنوان الزر&lt;br /&gt;
*'''url''': سلسلة نصية تحتوي على رابط الزر (يعمل فقط مع '''https://''' أو '''mtasa://''')&lt;br /&gt;
&lt;br /&gt;
===القيم المرجعة===&lt;br /&gt;
تعيد الدالة ''true'' إذا نجحت العملية، و ''false'' خلاف ذلك.&lt;br /&gt;
&lt;br /&gt;
==مثال==&lt;br /&gt;
يعرض هذا المثال كيفية إنشاء زرين مخصصين في تطبيق Discord Rich Presence الخاص بنا.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
local app_id = &amp;quot;معرف_تطبيقك_الخاص&amp;quot;&lt;br /&gt;
if setDiscordApplicationID(app_id) then &lt;br /&gt;
    setDiscordRichPresenceButton(1, &amp;quot;الاتصال بالسيرفر&amp;quot;, &amp;quot;mtasa://youraddressip&amp;quot;)&lt;br /&gt;
    setDiscordRichPresenceButton(2, &amp;quot;الصفحة الرئيسية لـ MTA&amp;quot;, &amp;quot;https://mtasa.com&amp;quot;)&lt;br /&gt;
end &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==انظر ايضاً==&lt;br /&gt;
{{AR/Client_Discord_functions}}&lt;br /&gt;
&lt;br /&gt;
[[en:SetDiscordRichPresenceButton]]&lt;br /&gt;
[[de:setDiscordRichPresenceButton]]&lt;br /&gt;
[[hu:setDiscordRichPresenceButton]]&lt;br /&gt;
[[pl:setDiscordRichPresenceButton]]&lt;br /&gt;
[[ro:setDiscordRichPresenceButton]]&lt;br /&gt;
[[ru:SetDiscordRichPresenceButton]]&lt;br /&gt;
[[PT-BR:SetDiscordRichPresenceButton]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/setDiscordRichPresenceAsset&amp;diff=82349</id>
		<title>AR/setDiscordRichPresenceAsset</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/setDiscordRichPresenceAsset&amp;diff=82349"/>
		<updated>2025-08-05T23:50:08Z</updated>

		<summary type="html">&lt;p&gt;O22: Created page with &amp;quot;__NOTOC__  {{Client function}} {{Important Note|لاستخدام هذه الدالة، يجب عليك إعداد تطبيقك الخاص باستخدام setDiscordApplicationID}} {{New feature/item|3.0161|1.6.0|22270| باستخدام هذه الدالة يمكنك تعيين صورة الأصل الكبيرة (large image asset) للتطبيق.   الحد الأقصى لحجم الصور هو ''1024 x1024''، والحد الأدنى هو...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ &lt;br /&gt;
{{Client function}}&lt;br /&gt;
{{Important Note|لاستخدام هذه الدالة، يجب عليك إعداد تطبيقك الخاص باستخدام [[AR/setDiscordApplicationID|setDiscordApplicationID]]}}&lt;br /&gt;
{{New feature/item|3.0161|1.6.0|22270|&lt;br /&gt;
باستخدام هذه الدالة يمكنك تعيين صورة الأصل الكبيرة (large image asset) للتطبيق.  &lt;br /&gt;
الحد الأقصى لحجم الصور هو ''1024 x1024''، والحد الأدنى هو ''512 x512''.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==التركيب== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
bool setDiscordRichPresenceAsset(string assetImage, string text)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
{{OOP||[[DiscordRPC]]:setAsset}}&lt;br /&gt;
&lt;br /&gt;
===المعطيات المطلوبة===&lt;br /&gt;
*'''assetImage''': سلسلة نصية تحتوي على مفتاح الصورة التي قمت برفعها في قائمة الأصول الخاصة بتطبيقك.&lt;br /&gt;
*'''text''': سلسلة نصية تُعرض عندما يقوم أحدهم بتحويم الماوس فوق الصورة الكبيرة في Discord.&lt;br /&gt;
&lt;br /&gt;
===القيم المرجعة===&lt;br /&gt;
تعيد الدالة ''true'' إذا نجحت العملية، و ''false'' خلاف ذلك.&lt;br /&gt;
&lt;br /&gt;
==مثال==&lt;br /&gt;
المثال يقوم بتعيين الصورة الكبيرة إلى my_logo.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
addCommandHandler(&amp;quot;setlogo&amp;quot;,&lt;br /&gt;
    function ()&lt;br /&gt;
        if isDiscordRichPresenceConnected() then &lt;br /&gt;
            setDiscordRichPresenceAsset(&amp;quot;my_logo&amp;quot;, &amp;quot;هذا هو شعاري!&amp;quot;)&lt;br /&gt;
        end &lt;br /&gt;
    end&lt;br /&gt;
)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==انظر ايضاً==&lt;br /&gt;
{{AR/Client_Discord_functions}}&lt;br /&gt;
&lt;br /&gt;
[[en:SetDiscordRichPresenceAsset]]&lt;br /&gt;
[[de:setDiscordRichPresenceAsset]]&lt;br /&gt;
[[hu:setDiscordRichPresenceAsset]]&lt;br /&gt;
[[pl:setDiscordRichPresenceAsset]]&lt;br /&gt;
[[ro:setDiscordRichPresenceAsset]]&lt;br /&gt;
[[ru:SetDiscordRichPresenceAsset]]&lt;br /&gt;
[[PT-BR:SetDiscordRichPresenceAsset]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/setDiscordApplicationID&amp;diff=82348</id>
		<title>AR/setDiscordApplicationID</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/setDiscordApplicationID&amp;diff=82348"/>
		<updated>2025-08-05T23:44:25Z</updated>

		<summary type="html">&lt;p&gt;O22: Created page with &amp;quot;__NOTOC__  {{Client function}} {{Important Note|لإعادة ضبط معرف التطبيق، يرجى استخدام resetDiscordRichPresenceData}} {{Important Note|لكي تعمل الدالة بشكل صحيح، يجب أن يكون لدى المستخدم إعداد الخصوصية/الحالة مفعل في Discord.}} {{New feature/item|3.0161|1.6.0|22270| تتيح هذه الدالة تعيين تطبيقك الخاص للاست...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ &lt;br /&gt;
{{Client function}}&lt;br /&gt;
{{Important Note|لإعادة ضبط معرف التطبيق، يرجى استخدام [[AR/resetDiscordRichPresenceData|resetDiscordRichPresenceData]]}}&lt;br /&gt;
{{Important Note|لكي تعمل الدالة بشكل صحيح، يجب أن يكون لدى المستخدم إعداد الخصوصية/الحالة مفعل في Discord.}}&lt;br /&gt;
{{New feature/item|3.0161|1.6.0|22270|&lt;br /&gt;
تتيح هذه الدالة تعيين تطبيقك الخاص للاستخدام في Rich Presence.  &lt;br /&gt;
يمكنك إنشاء تطبيقك الخاص '''[https://discord.com/developers/applications هنا]'''  &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==التركيب== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
bool setDiscordApplicationID(string applicationID)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
{{OOP||[[DiscordRPC]]:setApplication}}&lt;br /&gt;
&lt;br /&gt;
===المعطيات المطلوبة===&lt;br /&gt;
*'''applicationID''': سلسلة نصية تمثل معرف تطبيق Discord الخاص بك.&lt;br /&gt;
===القيم المرجعة===&lt;br /&gt;
تعيد الدالة ''true'' إذا نجحت العملية، و ''false'' إذا قام العميل بتعطيل خاصية Rich Presence.&lt;br /&gt;
&lt;br /&gt;
==مثال==&lt;br /&gt;
هذا المثال يعرض ما إذا تم إعداد التطبيق بنجاح ويعيّن صورة مخصصة (custom asset).&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
local app_id = &amp;quot;معرف_التطبيق_الخاص_بك&amp;quot;&lt;br /&gt;
if setDiscordApplicationID(app_id) then &lt;br /&gt;
    setDiscordRichPresenceAsset(&amp;quot;asset_name_from_application&amp;quot;)&lt;br /&gt;
    outputChatBox(&amp;quot;رائع، نحن الآن نستخدم تطبيقنا الخاص!&amp;quot;)&lt;br /&gt;
end &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==انظر ايضاً==&lt;br /&gt;
{{AR/Client_Discord_functions}}&lt;br /&gt;
&lt;br /&gt;
[[en:setDiscordApplicationID]]&lt;br /&gt;
[[de:setDiscordApplicationID]]&lt;br /&gt;
[[hu:setDiscordApplicationID]]&lt;br /&gt;
[[pl:setDiscordApplicationID]]&lt;br /&gt;
[[ro:setDiscordApplicationID]]&lt;br /&gt;
[[ru:SetDiscordApplicationID]]&lt;br /&gt;
[[PT-BR:SetDiscordApplicationID]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/resetDiscordRichPresenceData&amp;diff=82347</id>
		<title>AR/resetDiscordRichPresenceData</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/resetDiscordRichPresenceData&amp;diff=82347"/>
		<updated>2025-08-05T23:05:16Z</updated>

		<summary type="html">&lt;p&gt;O22: Fixed naming inconsistency: renamed pages to start with lowercase letters for consistency. Corrected accidental use of uppercase initials.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ &lt;br /&gt;
{{Client function}}&lt;br /&gt;
{{New feature/item|3.0161|1.6.0|22270|&lt;br /&gt;
تعيد هذه الوظيفة إعدادات Discord Rich Presence إلى الوضع الافتراضي.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Syntax== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
bool resetDiscordRichPresenceData()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===التركيب===&lt;br /&gt;
ترجع الدالة ''true'' إذا نجحت العملية، و ''false'' إذا فشلت.&lt;br /&gt;
&lt;br /&gt;
==مثال==&lt;br /&gt;
يعرض هذا المثال كيفية إعادة ضبط Discord Rich Presence بعد استخدام تطبيق مخصص.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
setDiscordApplicationID(&amp;quot;you_application_key&amp;quot;)&lt;br /&gt;
setDiscordRichPresenceAsset(&amp;quot;asset_logo&amp;quot;, &amp;quot;Name of Asset&amp;quot;)&lt;br /&gt;
if resetDiscordRichPresenceData()  then -- نقوم بإعادة الضبط إلى الوضع الافتراضي باستخدام تطبيق MTA.&lt;br /&gt;
    outputChatBox(&amp;quot;تمت إعادة Discord Rich Presence إلى الوضع الافتراضي.&amp;quot;)&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==انظر ايضاً==&lt;br /&gt;
{{AR/Client_Discord_functions}}&lt;br /&gt;
&lt;br /&gt;
[[en:ResetDiscordRichPresenceData]]&lt;br /&gt;
[[de:resetDiscordRichPresenceData]]&lt;br /&gt;
[[hu:resetDiscordRichPresenceData]]&lt;br /&gt;
[[pl:resetDiscordRichPresenceData]]&lt;br /&gt;
[[ro:resetDiscordRichPresenceData]]&lt;br /&gt;
[[ru:ResetDiscordRichPresenceData]]&lt;br /&gt;
[[PT-BR:ResetDiscordRichPresenceData]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/ResetDiscordRichPresenceData&amp;diff=82346</id>
		<title>AR/ResetDiscordRichPresenceData</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/ResetDiscordRichPresenceData&amp;diff=82346"/>
		<updated>2025-08-05T23:05:11Z</updated>

		<summary type="html">&lt;p&gt;O22: Fixed naming inconsistency: renamed pages to start with lowercase letters for consistency. Corrected accidental use of uppercase initials.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[AR/resetDiscordRichPresenceData]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/IsDiscordRichPresenceConnected&amp;diff=82345</id>
		<title>AR/IsDiscordRichPresenceConnected</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/IsDiscordRichPresenceConnected&amp;diff=82345"/>
		<updated>2025-08-05T23:03:26Z</updated>

		<summary type="html">&lt;p&gt;O22: Fixed naming inconsistency: renamed pages to start with lowercase letters for consistency. Corrected accidental use of uppercase initials.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[AR/isDiscordRichPresenceConnected]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/isDiscordRichPresenceConnected&amp;diff=82344</id>
		<title>AR/isDiscordRichPresenceConnected</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/isDiscordRichPresenceConnected&amp;diff=82344"/>
		<updated>2025-08-05T23:02:08Z</updated>

		<summary type="html">&lt;p&gt;O22: Fixed naming inconsistency: renamed pages to start with lowercase letters for consistency. Corrected accidental use of uppercase initials.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ &lt;br /&gt;
{{Client function}}&lt;br /&gt;
{{New feature/item|3.0161|1.6.0|22270|&lt;br /&gt;
تتحقق الوظيفة مما إذا كان العميل لديه Discord Rich Presence مفعل.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==التركيب== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
bool isDiscordRichPresenceConnected()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
{{OOP||[[DiscordRPC]]:isConnected}}&lt;br /&gt;
&lt;br /&gt;
===المعطيات===&lt;br /&gt;
ترجع الدالة ''true'' إذا كانت خاصية Discord Rich Presence مفعّلة على العميل، و ''false'' إذا كانت غير مفعّلة.&lt;br /&gt;
&lt;br /&gt;
==مثال==&lt;br /&gt;
يعرض هذا المثال إذا ما كان العميل قد فعّل خاصية Discord Rich Presence.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
addCommandHandler(&amp;quot;checkdiscord&amp;quot;,&lt;br /&gt;
    function ()&lt;br /&gt;
        if isDiscordRichPresenceConnected() then &lt;br /&gt;
            outputChatBox(&amp;quot;أنت تستخدم Discord Rich Presence، هذا رائع!&amp;quot;)&lt;br /&gt;
        end &lt;br /&gt;
    end&lt;br /&gt;
)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==انظر ايضاً==&lt;br /&gt;
{{AR/Client_Discord_functions}}&lt;br /&gt;
&lt;br /&gt;
[[en:IsDiscordRichPresenceConnected]]&lt;br /&gt;
[[de:isDiscordRichPresenceConnected]]&lt;br /&gt;
[[hu:isDiscordRichPresenceConnected]]&lt;br /&gt;
[[pl:isDiscordRichPresenceConnected]]&lt;br /&gt;
[[ro:isDiscordRichPresenceConnected]]&lt;br /&gt;
[[ru:IsDiscordRichPresenceConnected]]&lt;br /&gt;
[[PT-BR:IsDiscordRichPresenceConnected]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Template:AR/Client_Discord_functions&amp;diff=82343</id>
		<title>Template:AR/Client Discord functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Template:AR/Client_Discord_functions&amp;diff=82343"/>
		<updated>2025-08-05T23:01:59Z</updated>

		<summary type="html">&lt;p&gt;O22: Fixed naming inconsistency: renamed pages to start with lowercase letters for consistency. Corrected accidental use of uppercase initials.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{New items|3.0161|1.6.0|&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[AR/isDiscordRichPresenceConnected|isDiscordRichPresenceConnected]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[AR/resetDiscordRichPresenceData|resetDiscordRichPresenceData]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[AR/setDiscordApplicationID|setDiscordApplicationID]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[AR/setDiscordRichPresenceAsset|setDiscordRichPresenceAsset]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[AR/setDiscordRichPresenceButton|setDiscordRichPresenceButton]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[AR/setDiscordRichPresenceDetails|setDiscordRichPresenceDetails]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[AR/setDiscordRichPresenceSmallAsset|setDiscordRichPresenceSmallAsset]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[AR/setDiscordRichPresenceState|setDiscordRichPresenceState]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
|22270}}&lt;br /&gt;
&lt;br /&gt;
{{New items|3.0161|1.6.0|&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[AR/setDiscordRichPresencePartySize|setDiscordRichPresencePartySize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[AR/setDiscordRichPresenceStartTime|setDiscordRichPresenceStartTime]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[AR/setDiscordRichPresenceEndTime|setDiscordRichPresenceEndTime]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
|22276}}&lt;br /&gt;
&lt;br /&gt;
{{New items|3.0161|1.6.0|&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[AR/getDiscordRichPresenceUserID|getDiscordRichPresenceUserID]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
|22342}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Functions templates]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=ResetDiscordRichPresenceData&amp;diff=82342</id>
		<title>ResetDiscordRichPresenceData</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=ResetDiscordRichPresenceData&amp;diff=82342"/>
		<updated>2025-08-05T22:57:28Z</updated>

		<summary type="html">&lt;p&gt;O22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ &lt;br /&gt;
{{Client function}}&lt;br /&gt;
{{New feature/item|3.0161|1.6.0|22270|&lt;br /&gt;
The function resets the Discord Rich Presence configuration to default.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Syntax== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
bool resetDiscordRichPresenceData()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns ''true'' if function succeeds, ''false'' otherwise.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
The example shows how to reset Discord Rich Presence after using a custom application.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
setDiscordApplicationID(&amp;quot;you_application_key&amp;quot;)&lt;br /&gt;
setDiscordRichPresenceAsset(&amp;quot;asset_logo&amp;quot;, &amp;quot;Name of Asset&amp;quot;)&lt;br /&gt;
if resetDiscordRichPresenceData()  then -- we reset to default by MTA Application.&lt;br /&gt;
    outputChatBox(&amp;quot;Discord Rich Presence has been cleared and restored to default settings.&amp;quot;)&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Client_Discord_functions}}&lt;br /&gt;
&lt;br /&gt;
[[ar:resetDiscordRichPresenceData]]&lt;br /&gt;
[[de:resetDiscordRichPresenceData]]&lt;br /&gt;
[[hu:resetDiscordRichPresenceData]]&lt;br /&gt;
[[pl:resetDiscordRichPresenceData]]&lt;br /&gt;
[[ro:resetDiscordRichPresenceData]]&lt;br /&gt;
[[ru:ResetDiscordRichPresenceData]]&lt;br /&gt;
[[PT-BR:ResetDiscordRichPresenceData]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=IsDiscordRichPresenceConnected&amp;diff=82341</id>
		<title>IsDiscordRichPresenceConnected</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=IsDiscordRichPresenceConnected&amp;diff=82341"/>
		<updated>2025-08-05T22:57:22Z</updated>

		<summary type="html">&lt;p&gt;O22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ &lt;br /&gt;
{{Client function}}&lt;br /&gt;
{{New feature/item|3.0161|1.6.0|22270|&lt;br /&gt;
The function checks if the client has Discord Rich Presence enabled.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Syntax== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
bool isDiscordRichPresenceConnected()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
{{OOP||[[DiscordRPC]]:isConnected}}&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns ''true'' if Discord Rich Presence is enabled on the client, ''false'' if disabled.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
This example outputs whether the client has enabled Discord Rich Presence.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
addCommandHandler(&amp;quot;checkdiscord&amp;quot;,&lt;br /&gt;
    function ()&lt;br /&gt;
        if isDiscordRichPresenceConnected() then &lt;br /&gt;
            outputChatBox(&amp;quot;You are using Discord Rich Presence, that's cool!&amp;quot;)&lt;br /&gt;
        end &lt;br /&gt;
    end&lt;br /&gt;
)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Client_Discord_functions}}&lt;br /&gt;
&lt;br /&gt;
[[ar:isDiscordRichPresenceConnected]]&lt;br /&gt;
[[de:isDiscordRichPresenceConnected]]&lt;br /&gt;
[[hu:isDiscordRichPresenceConnected]]&lt;br /&gt;
[[pl:isDiscordRichPresenceConnected]]&lt;br /&gt;
[[ro:isDiscordRichPresenceConnected]]&lt;br /&gt;
[[ru:IsDiscordRichPresenceConnected]]&lt;br /&gt;
[[PT-BR:IsDiscordRichPresenceConnected]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/IsDiscordRichPresenceConnected&amp;diff=82340</id>
		<title>AR/IsDiscordRichPresenceConnected</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/IsDiscordRichPresenceConnected&amp;diff=82340"/>
		<updated>2025-08-05T22:41:28Z</updated>

		<summary type="html">&lt;p&gt;O22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ &lt;br /&gt;
{{Client function}}&lt;br /&gt;
{{New feature/item|3.0161|1.6.0|22270|&lt;br /&gt;
تتحقق الوظيفة مما إذا كان العميل لديه Discord Rich Presence مفعل.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==التركيب== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
bool isDiscordRichPresenceConnected()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
{{OOP||[[DiscordRPC]]:isConnected}}&lt;br /&gt;
&lt;br /&gt;
===المعطيات===&lt;br /&gt;
ترجع الدالة ''true'' إذا كانت خاصية Discord Rich Presence مفعّلة على العميل، و ''false'' إذا كانت غير مفعّلة.&lt;br /&gt;
&lt;br /&gt;
==مثال==&lt;br /&gt;
يعرض هذا المثال إذا ما كان العميل قد فعّل خاصية Discord Rich Presence.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
addCommandHandler(&amp;quot;checkdiscord&amp;quot;,&lt;br /&gt;
    function ()&lt;br /&gt;
        if isDiscordRichPresenceConnected() then &lt;br /&gt;
            outputChatBox(&amp;quot;أنت تستخدم Discord Rich Presence، هذا رائع!&amp;quot;)&lt;br /&gt;
        end &lt;br /&gt;
    end&lt;br /&gt;
)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==انظر ايضاً==&lt;br /&gt;
{{AR/Client_Discord_functions}}&lt;br /&gt;
&lt;br /&gt;
[[en:IsDiscordRichPresenceConnected]]&lt;br /&gt;
[[de:IsDiscordRichPresenceConnected]]&lt;br /&gt;
[[hu:IsDiscordRichPresenceConnected]]&lt;br /&gt;
[[pl:IsDiscordRichPresenceConnected]]&lt;br /&gt;
[[ro:IsDiscordRichPresenceConnected]]&lt;br /&gt;
[[ru:IsDiscordRichPresenceConnected]]&lt;br /&gt;
[[PT-BR:IsDiscordRichPresenceConnected]]&lt;/div&gt;</summary>
		<author><name>O22</name></author>
	</entry>
</feed>