<?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=Prox</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=Prox"/>
	<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/wiki/Special:Contributions/Prox"/>
	<updated>2026-04-22T11:19:40Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.3</generator>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=EngineApplyShaderToWorldTexture&amp;diff=81830</id>
		<title>EngineApplyShaderToWorldTexture</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=EngineApplyShaderToWorldTexture&amp;diff=81830"/>
		<updated>2025-02-21T07:49:45Z</updated>

		<summary type="html">&lt;p&gt;Prox: /* Optional Arguments */ add Building as for latest update&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Client function}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
This function applies a [[shader]] to one or more world textures.&lt;br /&gt;
{{Tip|&lt;br /&gt;
* The resource [[Shader_examples#Texture_names|shader_tex_names]] can help in finding the names of world textures.&lt;br /&gt;
* When replacing the texture for a ped using the CJ skin, set '''textureName''' to &amp;quot;CJ&amp;quot;&lt;br /&gt;
* The shader inherits the render states of the original when it is drawn, so texture stage 0 will already be set to the original texture.&lt;br /&gt;
* When using with a 'ped', ensure you have set 'ped' or 'all' in the elementTypes when calling [[dxCreateShader]]&lt;br /&gt;
* CJ body parts textures can be replaced by using: &amp;quot;cj_ped_head&amp;quot;, &amp;quot;cj_ped_hat&amp;quot;, &amp;quot;cj_ped_torso&amp;quot;, &amp;quot;cj_ped_legs&amp;quot;, &amp;quot;cj_ped_feet&amp;quot;, &amp;quot;cj_ped_glasses&amp;quot;, &amp;quot;cj_ped_necklace&amp;quot;, &amp;quot;cj_ped_watch&amp;quot; and &amp;quot;cj_ped_extra1&amp;quot;. Latest version of [http://wiki.multitheftauto.com/wiki/Shader_examples#Texture_names shader_tex_names] will show what is being used.&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 engineApplyShaderToWorldTexture ( element shader, string textureName [, element targetElement = nil, bool appendLayers = true ] )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
{{New feature/item|3.0141|1.4.0|6987|{{OOP||[[shader]]:applyToWorldTexture}}}}&lt;br /&gt;
&lt;br /&gt;
===Required Arguments=== &lt;br /&gt;
*'''shader:''' The shader which is to be applied&lt;br /&gt;
*'''textureName:''' The name of the world texture to apply the shader to. Wildcard matching e.g. &amp;quot;ro?ds*&amp;quot; can be used to apply to more than one texture at a time.&lt;br /&gt;
&lt;br /&gt;
===Optional Arguments=== &lt;br /&gt;
{{New feature/item|3.0130|1.3.0|4140|&lt;br /&gt;
*'''targetElement:''' The element to restrict applying the shader to. If this is not set the shader will be applied to everything using the texture name. Valid element types for targetElement are [[vehicle|vehicles]], [[Object|objects]], [[Ped|peds]] and [[Building|buildings]].&lt;br /&gt;
}}&lt;br /&gt;
*'''appendLayers:''' allows two or more layered shaders to be applied in the same texture. You may want to modify the ''DepthBias'' in the technique pass to avoid Z-fighting artifacts when using this.&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns ''true'' if the shader was successfully applied, ''false'' otherwise.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
This example will replace the texture of a group of common explosions (grenades, rockets, etc) with a custom explosion effect&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
theTechnique = dxCreateShader(&amp;quot;shader.fx&amp;quot;)&lt;br /&gt;
explosionTexture = dxCreateTexture( &amp;quot;tex/Explosion.png&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
function replaceEffect()&lt;br /&gt;
	engineApplyShaderToWorldTexture(theTechnique, &amp;quot;fireball6&amp;quot;)&lt;br /&gt;
	dxSetShaderValue (theTechnique, &amp;quot;gTexture&amp;quot;, explosionTexture)&lt;br /&gt;
end&lt;br /&gt;
addEventHandler(&amp;quot;onClientResourceStart&amp;quot;, resourceRoot, replaceEffect)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This example will apply a shader to the &amp;quot;des_logwall&amp;quot; world texture (which is used by the house near the 'play' gamemode spawn point)&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
theTechnique = dxCreateShader(&amp;quot;shader.fx&amp;quot;)&lt;br /&gt;
engineApplyShaderToWorldTexture(theTechnique, &amp;quot;des_logwall&amp;quot;)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This example will apply a shader to the current vehicle of the local player&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
theTechnique = dxCreateShader( &amp;quot;shader.fx&amp;quot; )&lt;br /&gt;
&lt;br /&gt;
function applyShader(thePlayer, seat)&lt;br /&gt;
local theVehicle = source&lt;br /&gt;
&lt;br /&gt;
	if seat == 0 and thePlayer == localPlayer then&lt;br /&gt;
		engineApplyShaderToWorldTexture(theTechnique, &amp;quot;vehiclegrunge256&amp;quot;, theVehicle)&lt;br /&gt;
		engineApplyShaderToWorldTexture(theTechnique, &amp;quot;?emap*&amp;quot;, theVehicle)&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
addEventHandler(&amp;quot;onClientVehicleEnter&amp;quot;, root, applyShader)&lt;br /&gt;
&lt;br /&gt;
function removeShader(thePlayer, seat)&lt;br /&gt;
local theVehicle = source&lt;br /&gt;
&lt;br /&gt;
	if seat == 0 and thePlayer == localPlayer then&lt;br /&gt;
        	engineRemoveShaderFromWorldTexture(theTechnique, &amp;quot;vehiclegrunge256&amp;quot;, theVehicle)&lt;br /&gt;
        	engineRemoveShaderFromWorldTexture(theTechnique, &amp;quot;?emap*&amp;quot;, theVehicle)&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
addEventHandler(&amp;quot;onClientVehicleExit&amp;quot;, root, removeShader)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Basic texture replacement shader example (compatible with all script examples on this page):&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;fx&amp;quot;&amp;gt;&lt;br /&gt;
texture gTexture;&lt;br /&gt;
&lt;br /&gt;
technique TexReplace&lt;br /&gt;
{&lt;br /&gt;
    pass P0&lt;br /&gt;
    {&lt;br /&gt;
        Texture[0] = gTexture;&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
* Save the above code as [shadername]'''.fx'''&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Engine_functions}}&lt;br /&gt;
{{Drawing_functions}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Changes_in_1.6.1&amp;diff=81797</id>
		<title>Changes in 1.6.1</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Changes_in_1.6.1&amp;diff=81797"/>
		<updated>2025-02-07T08:47:10Z</updated>

		<summary type="html">&lt;p&gt;Prox: /* 85 New Features */&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 '''Nico8340''')&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 '''Nicol8340''')&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 '''Nando''')&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;
&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;
&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;
&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 '''Nico8340''')&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 '''Nico8340''')&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;
&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;
&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;
&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;
* 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 '''Nico8340''')&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 '''Nico8340''')&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 '''Nico8340''')&lt;br /&gt;
* Added [[onPlayerTeleport]] ([https://github.com/multitheftauto/mtasa-blue/commit/4000ea4edb37d2d2caeb60a5977f7a38c8a22f06 a38e6ac] by '''imfelipedev''')&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 '''Nico8340''')&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 '''Nico8340''' 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;
&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 '''Nico8340''')&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 '''Nico8340''')&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;
&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 '''Nando''')&lt;br /&gt;
* Fixed '''min_mta_version''' tag for server ([https://github.com/multitheftauto/mtasa-blue/commit/8c0a01bac62ecc3e9510133dee9f8d6700065f03 8c0a01b] by '''Nando''')&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 '''Nico8340''')&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 '''Nico8340''')&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 '''Nico8340''')&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/733683d70dc037fdcbb256fb17d86e93bfedd239] 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 '''Nando''')&lt;br /&gt;
:* Refactored and improved player map (F11) ([https://github.com/multitheftauto/mtasa-blue/commit/2c5cf3226a573637b91d8b255d57113b7043dc28 2c5cf32] by '''Nando''')&lt;br /&gt;
:* Fixed ''CVector'' optional arguments ([https://github.com/multitheftauto/mtasa-blue/commit/6a70cf7def14db86980a499d0fdf4c63565915e1 6a70cf7] by '''Tracer''')&lt;br /&gt;
&lt;br /&gt;
== 13 Vendor Updates ==&lt;br /&gt;
=== Client ===&lt;br /&gt;
* Updated libpng to 1.6.43 ([https://github.com/multitheftauto/mtasa-blue/commit/5c71180ecdadc86fde56d4aef07fd2bca1fb56b2 5c71180] by '''Dutchman101''')&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.8.0 ([https://github.com/multitheftauto/mtasa-blue/commit/66ebffdbaa3a9c98372b06dc5efca7dc5724bb7a 66ebffd] by '''Dutchman101''')&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.0 ([https://github.com/multitheftauto/mtasa-blue/commit/0ba65bb826cecc1d95392ffea9833e30c8dd592c 0ba65bb] by '''Lpsd''')&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 '''Nico8340''')&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;
&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 '''Nico8340''')&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 '''Nico8340''')&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 '''Nando''')&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 '''Nico8340''')&lt;br /&gt;
:* Preventing pointer overflow ([https://github.com/multitheftauto/mtasa-resources/commit/8689cdc247a3fd16125524aac04eb054c398084c 8689cdc] by '''Nico8340''')&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 '''Nando''')&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 '''Nando''')&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>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Changes_in_1.6.1&amp;diff=81796</id>
		<title>Changes in 1.6.1</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Changes_in_1.6.1&amp;diff=81796"/>
		<updated>2025-02-07T08:46:43Z</updated>

		<summary type="html">&lt;p&gt;Prox: /* Events */  add onPlayerTeleport to list&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 '''Nico8340''')&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 '''Nicol8340''')&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 '''Nando''')&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;
&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;
== 85 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;
&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;
&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 '''Nico8340''')&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 '''Nico8340''')&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;
&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;
&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;
&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;
* 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 '''Nico8340''')&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 '''Nico8340''')&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 '''Nico8340''')&lt;br /&gt;
* Added [[onPlayerTeleport]] ([https://github.com/multitheftauto/mtasa-blue/commit/4000ea4edb37d2d2caeb60a5977f7a38c8a22f06 a38e6ac] by '''imfelipedev''')&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 '''Nico8340''')&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 '''Nico8340''' 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;
&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 '''Nico8340''')&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 '''Nico8340''')&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;
&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 '''Nando''')&lt;br /&gt;
* Fixed '''min_mta_version''' tag for server ([https://github.com/multitheftauto/mtasa-blue/commit/8c0a01bac62ecc3e9510133dee9f8d6700065f03 8c0a01b] by '''Nando''')&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 '''Nico8340''')&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 '''Nico8340''')&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 '''Nico8340''')&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/733683d70dc037fdcbb256fb17d86e93bfedd239] 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 '''Nando''')&lt;br /&gt;
:* Refactored and improved player map (F11) ([https://github.com/multitheftauto/mtasa-blue/commit/2c5cf3226a573637b91d8b255d57113b7043dc28 2c5cf32] by '''Nando''')&lt;br /&gt;
:* Fixed ''CVector'' optional arguments ([https://github.com/multitheftauto/mtasa-blue/commit/6a70cf7def14db86980a499d0fdf4c63565915e1 6a70cf7] by '''Tracer''')&lt;br /&gt;
&lt;br /&gt;
== 13 Vendor Updates ==&lt;br /&gt;
=== Client ===&lt;br /&gt;
* Updated libpng to 1.6.43 ([https://github.com/multitheftauto/mtasa-blue/commit/5c71180ecdadc86fde56d4aef07fd2bca1fb56b2 5c71180] by '''Dutchman101''')&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.8.0 ([https://github.com/multitheftauto/mtasa-blue/commit/66ebffdbaa3a9c98372b06dc5efca7dc5724bb7a 66ebffd] by '''Dutchman101''')&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.0 ([https://github.com/multitheftauto/mtasa-blue/commit/0ba65bb826cecc1d95392ffea9833e30c8dd592c 0ba65bb] by '''Lpsd''')&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 '''Nico8340''')&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;
&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 '''Nico8340''')&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 '''Nico8340''')&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 '''Nando''')&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 '''Nico8340''')&lt;br /&gt;
:* Preventing pointer overflow ([https://github.com/multitheftauto/mtasa-resources/commit/8689cdc247a3fd16125524aac04eb054c398084c 8689cdc] by '''Nico8340''')&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 '''Nando''')&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 '''Nando''')&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>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=IsVehicleSmokeTrailEnabled&amp;diff=81688</id>
		<title>IsVehicleSmokeTrailEnabled</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=IsVehicleSmokeTrailEnabled&amp;diff=81688"/>
		<updated>2025-01-10T10:32:53Z</updated>

		<summary type="html">&lt;p&gt;Prox: add oop&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Client function}} &lt;br /&gt;
__NOTOC__&lt;br /&gt;
{{Added feature/item|1.6.1|1.6.0|22815	| &lt;br /&gt;
This function is used to check planes smoke trail enabled or disabled. &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Note|The smoke trail is only supported to models 512 and 513, so this only going to works with that models}}&lt;br /&gt;
&lt;br /&gt;
==Syntax== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
isVehicleSmokeTrailEnabled( vehicle veh )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
{{OOP||[[vehicle]]:isSmokeTrailEnabled}}&lt;br /&gt;
&lt;br /&gt;
===Required arguments===&lt;br /&gt;
*'''theVehicle:''' The [[vehicle]] that you want to set the smoke trail.&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
If it enabled it returns ''true'', false otherwise.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
This example let you set and check the smoke trail.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
local veh = {512,513} &lt;br /&gt;
&lt;br /&gt;
local plane = createVehicle (veh[2], 2043.23499, 1537.88562, 10.67188)&lt;br /&gt;
&lt;br /&gt;
local ped = createPed ( 2, 0,0,0 )&lt;br /&gt;
&lt;br /&gt;
warpPedIntoVehicle ( ped, plane)   &lt;br /&gt;
&lt;br /&gt;
setTimer(function()&lt;br /&gt;
    print(setVehicleSmokeTrailEnabled (plane,true))&lt;br /&gt;
end ,1500,1)&lt;br /&gt;
 &lt;br /&gt;
function disbled()&lt;br /&gt;
    print(setVehicleSmokeTrailEnabled (plane,false))&lt;br /&gt;
    print(isVehicleSmokeTrailEnabled(plane))&lt;br /&gt;
end&lt;br /&gt;
 &lt;br /&gt;
bindKey (&amp;quot;r&amp;quot;, &amp;quot;down&amp;quot;, disbled ) &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Vehicle functions|client}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Template:Vehicle_functions&amp;diff=81687</id>
		<title>Template:Vehicle functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Template:Vehicle_functions&amp;diff=81687"/>
		<updated>2025-01-10T10:30:56Z</updated>

		<summary type="html">&lt;p&gt;Prox: add latest vehicle client functions&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
{{#if: {{{1|}}}&lt;br /&gt;
 | {{#ifeq: {{lc:{{{1}}}}} | client&lt;br /&gt;
 |&lt;br /&gt;
    &amp;lt;!-- CLIENT functions --&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[areVehicleLightsOn]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getHeliBladeCollisionsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getHelicopterRotorSpeed]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22344|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getVehicleRotorSpeed]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    {{New items|3.0161|1.6.0|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getVehicleRotorState]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    |22862}}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getVehicleAdjustableProperty]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getVehicleComponentPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getVehicleComponentRotation]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getVehicleComponents]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getVehicleComponentScale]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getVehicleComponentVisible]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getVehicleCurrentGear]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getVehicleDummyPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New items|3.0161|1.6.0|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getVehicleEntryPoints]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    |22649}}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getVehicleGravity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getVehicleLandingGearDown]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getVehicleModelDummyDefaultPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getVehicleModelDummyPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getVehicleModelExhaustFumesPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getVehicleModelWheelSize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getVehicleNitroCount]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getVehicleNitroLevel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getVehicleWheelFrictionState]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getVehicleWheelScale]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[isTrainChainEngine]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[isVehicleNitroActivated]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[isVehicleNitroRecharging]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[isVehicleOnGround]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[isVehicleWheelOnGround]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[isVehicleWindowOpen]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetVehicleComponentPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetVehicleComponentRotation]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetVehicleComponentScale]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetVehicleDummyPositions]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setHeliBladeCollisionsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setHelicopterRotorSpeed]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New items|3.0161|1.6.0|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVehicleRotorSpeed]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    |22344}}&lt;br /&gt;
    {{New items|3.0161|1.6.0|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVehicleRotorState]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    |22862}}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVehicleAdjustableProperty]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVehicleComponentPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVehicleComponentRotation]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVehicleComponentScale]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVehicleComponentVisible]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVehicleDummyPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVehicleGravity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVehicleLandingGearDown]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVehicleModelDummyPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVehicleModelExhaustFumesPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVehicleModelWheelSize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVehicleNitroCount]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVehicleNitroLevel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVehicleWheelScale]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVehicleWheelStates]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVehicleWindowOpen]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New items|3.0161|1.6.0|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVehicleWheelsRotation]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    |22592}}&lt;br /&gt;
 {{New items|3.0161|1.6.0|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVehicleSmokeTrailEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    |22815}}&lt;br /&gt;
{{New items|3.0161|1.6.0|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[isVehicleSmokeTrailEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    |22815}}&lt;br /&gt;
 | {{#ifeq: {{lc:{{{1}}}}} | server&lt;br /&gt;
 |&lt;br /&gt;
    &amp;lt;!-- SERVER functions --&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getModelHandling]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getVehicleIdleRespawnDelay]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getVehicleRespawnDelay]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getVehicleRespawnPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getVehicleRespawnRotation]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getVehiclesOfType]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[isVehicleRespawnable]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetVehicleExplosionTime]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetVehicleIdleTime]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[respawnVehicle]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setModelHandling]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVehicleIdleRespawnDelay]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVehicleRespawnDelay]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVehicleRespawnPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVehicleRespawnRotation]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[spawnVehicle]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[toggleVehicleRespawn]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&amp;lt;li style=&amp;quot;list-style: none; margin-left: -1.6em;&amp;quot;&amp;gt;'''Shared'''&amp;lt;/li&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- SHARED functions--&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[addVehicleUpgrade]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[addVehicleSirens]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[attachTrailerToVehicle]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[blowVehicle]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[createVehicle]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[detachTrailerFromVehicle]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[fixVehicle]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getOriginalHandling]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getTrainDirection]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getTrainPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getTrainSpeed]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getTrainTrack]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehicleColor]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehicleCompatibleUpgrades]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehicleController]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehicleDoorOpenRatio]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehicleDoorState]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehicleEngineState]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehicleHandling]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehicleHeadLightColor]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehicleLandingGearDown]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehicleLightState]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehicleMaxPassengers]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehicleModelFromName]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehicleName]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehicleNameFromModel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setVehicleNitroActivated]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehicleOccupant]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehicleOccupants]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehicleOverrideLights]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehiclePaintjob]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehiclePanelState]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehiclePlateText]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehicleSirenParams]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehicleSirens]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehicleSirensOn]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehicleTowedByVehicle]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehicleTowingVehicle]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehicleTurretPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
{{Deprecated items|3.0156|1.5.6|&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehicleTurnVelocity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehicleType]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehicleUpgradeOnSlot]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehicleUpgradeSlotName]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehicleUpgrades]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehicleVariant]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getVehicleWheelStates]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[isTrainDerailable]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[isTrainDerailed]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[isVehicleBlown]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[isVehicleDamageProof]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[isVehicleFuelTankExplodable]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[isVehicleLocked]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[isVehicleOnGround]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[isVehicleTaxiLightOn]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[removeVehicleUpgrade]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[removeVehicleSirens]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setTrainDerailable]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setTrainDerailed]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setTrainDirection]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setTrainPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setTrainSpeed]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setTrainTrack]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setVehicleColor]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setVehicleDamageProof]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setVehicleDoorOpenRatio]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setVehicleDoorState]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setVehicleDoorsUndamageable]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setVehicleEngineState]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setVehicleFuelTankExplodable]]&amp;lt;/li&amp;gt;&lt;br /&gt;
{{New items|3.0161|1.6.0|&lt;br /&gt;
&amp;lt;li&amp;gt;[[spawnVehicleFlyingComponent]]&amp;lt;/li&amp;gt;&lt;br /&gt;
|22771}}&lt;br /&gt;
&amp;lt;li&amp;gt;[[setVehicleHandling]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setVehicleHeadLightColor]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setVehicleLandingGearDown]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setVehicleLightState]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setVehicleLocked]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setVehicleOverrideLights]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setVehiclePaintjob]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setVehiclePanelState]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setVehiclePlateText]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setVehicleSirens]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setVehicleSirensOn]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setVehicleTaxiLightOn]]&amp;lt;/li&amp;gt;&lt;br /&gt;
{{Deprecated items|3.0156|1.5.6|&lt;br /&gt;
&amp;lt;li&amp;gt;[[setVehicleTurnVelocity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;li&amp;gt;[[setVehicleTurretPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setVehicleVariant]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setVehicleWheelStates]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{Functions list info}}&lt;br /&gt;
[[Category:Functions templates]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=SetVehicleSmokeTrailEnabled&amp;diff=81686</id>
		<title>SetVehicleSmokeTrailEnabled</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=SetVehicleSmokeTrailEnabled&amp;diff=81686"/>
		<updated>2025-01-10T10:10:27Z</updated>

		<summary type="html">&lt;p&gt;Prox: add oop syntax&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Client function}} &lt;br /&gt;
__NOTOC__&lt;br /&gt;
{{Added feature/item|1.6.1|1.6.0|22815	| &lt;br /&gt;
This function used to set planes smoke trail enabled or disabled. &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Note|The smoke trail is only supported to models 512 and 513, so this only going to works with that models}}&lt;br /&gt;
&lt;br /&gt;
[[File:Mta-screen 2024-12-26 17-38-53.png|thumb|right|The red smoke trail from a Stuntplane]]&lt;br /&gt;
==Syntax== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
setVehicleSmokeTrailEnabled ( vehicle veh, bool enable )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
{{OOP||[[vehicle]]:setSmokeTrailEnabled}}&lt;br /&gt;
&lt;br /&gt;
===Required arguments===&lt;br /&gt;
*'''veh:''' The [[vehicle]] that you want to set the smoke trail.&lt;br /&gt;
*'''enable:''' A boolean if set to true it will enabled the smoke trail.&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
If successful returns ''true'', false otherwise.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
This example let you set the smoke trail.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
local veh = {512,513} &lt;br /&gt;
&lt;br /&gt;
local plane = createVehicle (veh[2], 2043.23499, 1537.88562, 10.67188)&lt;br /&gt;
&lt;br /&gt;
local ped = createPed ( 2, 0,0,0 )&lt;br /&gt;
&lt;br /&gt;
warpPedIntoVehicle ( ped, plane)   &lt;br /&gt;
&lt;br /&gt;
setTimer(function()&lt;br /&gt;
    print(setVehicleSmokeTrailEnabled (plane,true))&lt;br /&gt;
end ,1500,1)&lt;br /&gt;
 &lt;br /&gt;
function disbled()&lt;br /&gt;
    print(setVehicleSmokeTrailEnabled (plane,false))&lt;br /&gt;
    print(isVehicleSmokeTrailEnabled(plane))&lt;br /&gt;
end&lt;br /&gt;
 &lt;br /&gt;
bindKey (&amp;quot;r&amp;quot;, &amp;quot;down&amp;quot;, disbled ) &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Vehicle functions|client}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=ResetWorldProperties&amp;diff=81643</id>
		<title>ResetWorldProperties</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=ResetWorldProperties&amp;diff=81643"/>
		<updated>2025-01-05T08:40:39Z</updated>

		<summary type="html">&lt;p&gt;Prox: /* Note */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ &lt;br /&gt;
{{Shared function}}&lt;br /&gt;
{{New feature/item|3.0161|1.6.0|22741|This function resets all world properties to default.}}&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;nil resetWorldProperties( [ bool resetSpecialProperties = true, bool resetWorldProperties = true, bool resetWeatherProperties = true, bool resetLODs = true, bool resetSounds = true, bool resetGlitches = true, bool resetJetpackWeapons = true ] )&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
===Optional arguments===&lt;br /&gt;
{{OptionalArg}}&lt;br /&gt;
* '''resetSpecialProperties:''' Restores all special world properties changed by [[setWorldSpecialPropertyEnabled]] to default.&lt;br /&gt;
* '''resetWorldProperties:''' Reset all world properties changed by [[setWorldProperty]].&lt;br /&gt;
* '''resetWeatherProperties:''' Reset all weather properties like heat haze, rain level, sun color etc.&lt;br /&gt;
* '''resetLODs:''' Reset vehicles and peds lod distance.&lt;br /&gt;
* '''resetSounds:''' Restore interior sounds, world sounds and ambient sounds.&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;
* '''resetGlitches:''' Disable all glitches enabled by [[setGlitchEnabled]].&lt;br /&gt;
* '''resetJetpackWeapons:''' Reset jetpack weapons changes by [[setJetpackWeaponEnabled]] to default (uzi, pistol, tec9).&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Note===&lt;br /&gt;
Regardless of the value of the arguments, the following properties are reset:&lt;br /&gt;
* Far clip distance&lt;br /&gt;
* Near clip distance&lt;br /&gt;
* Clouds (enabled)&lt;br /&gt;
* Birds (enabled)&lt;br /&gt;
* Occlusions (enabled)&lt;br /&gt;
* Gravity&lt;br /&gt;
* Game speed&lt;br /&gt;
* Aircraft max height &amp;amp; velocity&lt;br /&gt;
* Jetpack max height&lt;br /&gt;
* Interior furnitures (enabled)&lt;br /&gt;
* Minute duration&lt;br /&gt;
* Blur level&lt;br /&gt;
* Corona reflections&lt;br /&gt;
* Traffic lights locked state&lt;br /&gt;
* Water level and color&lt;br /&gt;
* Wave height&lt;br /&gt;
* Volumetric shadows&lt;br /&gt;
* Game time freeze&lt;br /&gt;
* Dynamic ped shadows&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
This function returns nothing (''nil'').&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
resetWorldProperties()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{World functions}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=ResetWorldProperties&amp;diff=81642</id>
		<title>ResetWorldProperties</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=ResetWorldProperties&amp;diff=81642"/>
		<updated>2025-01-05T08:39:59Z</updated>

		<summary type="html">&lt;p&gt;Prox: /* Note */ update to latest added&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ &lt;br /&gt;
{{Shared function}}&lt;br /&gt;
{{New feature/item|3.0161|1.6.0|22741|This function resets all world properties to default.}}&lt;br /&gt;
&lt;br /&gt;
==Syntax==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;nil resetWorldProperties( [ bool resetSpecialProperties = true, bool resetWorldProperties = true, bool resetWeatherProperties = true, bool resetLODs = true, bool resetSounds = true, bool resetGlitches = true, bool resetJetpackWeapons = true ] )&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
===Optional arguments===&lt;br /&gt;
{{OptionalArg}}&lt;br /&gt;
* '''resetSpecialProperties:''' Restores all special world properties changed by [[setWorldSpecialPropertyEnabled]] to default.&lt;br /&gt;
* '''resetWorldProperties:''' Reset all world properties changed by [[setWorldProperty]].&lt;br /&gt;
* '''resetWeatherProperties:''' Reset all weather properties like heat haze, rain level, sun color etc.&lt;br /&gt;
* '''resetLODs:''' Reset vehicles and peds lod distance.&lt;br /&gt;
* '''resetSounds:''' Restore interior sounds, world sounds and ambient sounds.&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;
* '''resetGlitches:''' Disable all glitches enabled by [[setGlitchEnabled]].&lt;br /&gt;
* '''resetJetpackWeapons:''' Reset jetpack weapons changes by [[setJetpackWeaponEnabled]] to default (uzi, pistol, tec9).&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Note===&lt;br /&gt;
Regardless of the value of the arguments, the following properties are reset:&lt;br /&gt;
* Far clip distance&lt;br /&gt;
* Near clip distance&lt;br /&gt;
* Clouds (enabled)&lt;br /&gt;
* Birds (enabled)&lt;br /&gt;
* Occlusions (enabled)&lt;br /&gt;
* Gravity&lt;br /&gt;
* Game speed&lt;br /&gt;
* Aircraft max height &amp;amp; velocity&lt;br /&gt;
* Jetpack max height&lt;br /&gt;
* Interior furnitures (enabled)&lt;br /&gt;
* Minute duration&lt;br /&gt;
* Blur level&lt;br /&gt;
* Corona reflections&lt;br /&gt;
* Traffic lights locked state&lt;br /&gt;
* Water level and color&lt;br /&gt;
* Wave height&lt;br /&gt;
* Volumetric shadows&lt;br /&gt;
* Game time state&lt;br /&gt;
* Dynamic ped shadows&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
This function returns nothing (''nil'').&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
resetWorldProperties()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{World functions}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Changes_in_1.6.1&amp;diff=81635</id>
		<title>Changes in 1.6.1</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Changes_in_1.6.1&amp;diff=81635"/>
		<updated>2025-01-04T11:40:06Z</updated>

		<summary type="html">&lt;p&gt;Prox: /* Client */  missing new functions&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;
== 3 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 '''Nico8340''')&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;
&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 '''Nicol8340''')&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 '''Nando''')&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;
&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;
* '''3''' 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;
== 85 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;
&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;
&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 '''Nico8340''')&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;
:* [[removeAllGameBuildings]] &lt;br /&gt;
:* [[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;
&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;
&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;
&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;
* Add ped dynamic shadows functions ([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;
&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;
&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;
* 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 '''Nico8340''')&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 '''Nico8340''')&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;
&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 '''Nico8340''')&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 '''Nico8340''' 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;
&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 '''Nico8340''')&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 '''Nico8340''')&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;
&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 '''Nando''')&lt;br /&gt;
* Fixed '''min_mta_version''' tag for server ([https://github.com/multitheftauto/mtasa-blue/commit/8c0a01bac62ecc3e9510133dee9f8d6700065f03 8c0a01b] by '''Nando''')&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 '''Nico8340''')&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/733683d70dc037fdcbb256fb17d86e93bfedd239] 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 '''Nando''')&lt;br /&gt;
:* Refactored and improved player map (F11) ([https://github.com/multitheftauto/mtasa-blue/commit/2c5cf3226a573637b91d8b255d57113b7043dc28 2c5cf32] by '''Nando''')&lt;br /&gt;
:* Fixed ''CVector'' optional arguments ([https://github.com/multitheftauto/mtasa-blue/commit/6a70cf7def14db86980a499d0fdf4c63565915e1 6a70cf7] by '''Tracer''')&lt;br /&gt;
&lt;br /&gt;
== 13 Vendor Updates ==&lt;br /&gt;
=== Client ===&lt;br /&gt;
* Updated libpng to 1.6.43 ([https://github.com/multitheftauto/mtasa-blue/commit/5c71180ecdadc86fde56d4aef07fd2bca1fb56b2 5c71180] by '''Dutchman101''')&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.8.0 ([https://github.com/multitheftauto/mtasa-blue/commit/66ebffdbaa3a9c98372b06dc5efca7dc5724bb7a 66ebffd] by '''Dutchman101''')&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.0 ([https://github.com/multitheftauto/mtasa-blue/commit/0ba65bb826cecc1d95392ffea9833e30c8dd592c 0ba65bb] by '''Lpsd''')&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;
&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;
&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;
&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 '''Nico8340''')&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;
&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 '''Nico8340''')&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;
&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 '''Nico8340''')&lt;br /&gt;
:* Preventing pointer overflow ([https://github.com/multitheftauto/mtasa-resources/commit/8689cdc247a3fd16125524aac04eb054c398084c 8689cdc] by '''Nico8340''')&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;
'''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>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=SetVehicleSmokeTrailEnabled&amp;diff=81546</id>
		<title>SetVehicleSmokeTrailEnabled</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=SetVehicleSmokeTrailEnabled&amp;diff=81546"/>
		<updated>2024-12-30T18:05:44Z</updated>

		<summary type="html">&lt;p&gt;Prox: /* Required arguments */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Client function}} &lt;br /&gt;
__NOTOC__&lt;br /&gt;
{{Added feature/item|1.6.1|1.6.0|22815	| &lt;br /&gt;
This function used to set planes smoke trail enabled or disabled. &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Note|The smoke trail is only supported to models 512 and 513, so this only going to works with that models}}&lt;br /&gt;
&lt;br /&gt;
[[File:Mta-screen 2024-12-26 17-38-53.png|thumb|right|The red smoke trail from a Stuntplane]]&lt;br /&gt;
==Syntax== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
setVehicleSmokeTrailEnabled ( vehicle veh, bool enable )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Required arguments===&lt;br /&gt;
*'''veh:''' The [[vehicle]] that you want to set the smoke trail.&lt;br /&gt;
*'''enable:''' A boolean if set to true it will enabled the smoke trail.&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
If successful returns ''true'', false otherwise.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
This example let you set the smoke trail.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
local veh = {512,513} &lt;br /&gt;
&lt;br /&gt;
local plane = createVehicle (veh[2], 2043.23499, 1537.88562, 10.67188)&lt;br /&gt;
&lt;br /&gt;
local ped = createPed ( 2, 0,0,0 )&lt;br /&gt;
&lt;br /&gt;
warpPedIntoVehicle ( ped, plane)   &lt;br /&gt;
&lt;br /&gt;
setTimer(function()&lt;br /&gt;
    print(setVehicleSmokeTrailEnabled (plane,true))&lt;br /&gt;
end ,1500,1)&lt;br /&gt;
 &lt;br /&gt;
function disbled()&lt;br /&gt;
    print(setVehicleSmokeTrailEnabled (plane,false))&lt;br /&gt;
    print(isVehicleSmokeTrailEnabled(plane))&lt;br /&gt;
end&lt;br /&gt;
 &lt;br /&gt;
bindKey (&amp;quot;r&amp;quot;, &amp;quot;down&amp;quot;, disbled ) &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Vehicle functions|client}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=SetVehicleSmokeTrailEnabled&amp;diff=81545</id>
		<title>SetVehicleSmokeTrailEnabled</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=SetVehicleSmokeTrailEnabled&amp;diff=81545"/>
		<updated>2024-12-30T18:05:29Z</updated>

		<summary type="html">&lt;p&gt;Prox: /* Required arguments */  fix&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Client function}} &lt;br /&gt;
__NOTOC__&lt;br /&gt;
{{Added feature/item|1.6.1|1.6.0|22815	| &lt;br /&gt;
This function used to set planes smoke trail enabled or disabled. &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Note|The smoke trail is only supported to models 512 and 513, so this only going to works with that models}}&lt;br /&gt;
&lt;br /&gt;
[[File:Mta-screen 2024-12-26 17-38-53.png|thumb|right|The red smoke trail from a Stuntplane]]&lt;br /&gt;
==Syntax== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
setVehicleSmokeTrailEnabled ( vehicle veh, bool enable )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Required arguments===&lt;br /&gt;
*'''vhe:''' The [[vehicle]] that you want to set the smoke trail.&lt;br /&gt;
*'''enable:''' A boolean if set to true it will enabled the smoke trail.&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
If successful returns ''true'', false otherwise.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
This example let you set the smoke trail.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
local veh = {512,513} &lt;br /&gt;
&lt;br /&gt;
local plane = createVehicle (veh[2], 2043.23499, 1537.88562, 10.67188)&lt;br /&gt;
&lt;br /&gt;
local ped = createPed ( 2, 0,0,0 )&lt;br /&gt;
&lt;br /&gt;
warpPedIntoVehicle ( ped, plane)   &lt;br /&gt;
&lt;br /&gt;
setTimer(function()&lt;br /&gt;
    print(setVehicleSmokeTrailEnabled (plane,true))&lt;br /&gt;
end ,1500,1)&lt;br /&gt;
 &lt;br /&gt;
function disbled()&lt;br /&gt;
    print(setVehicleSmokeTrailEnabled (plane,false))&lt;br /&gt;
    print(isVehicleSmokeTrailEnabled(plane))&lt;br /&gt;
end&lt;br /&gt;
 &lt;br /&gt;
bindKey (&amp;quot;r&amp;quot;, &amp;quot;down&amp;quot;, disbled ) &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Vehicle functions|client}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=IsVehicleSmokeTrailEnabled&amp;diff=81542</id>
		<title>IsVehicleSmokeTrailEnabled</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=IsVehicleSmokeTrailEnabled&amp;diff=81542"/>
		<updated>2024-12-26T15:20:43Z</updated>

		<summary type="html">&lt;p&gt;Prox: Created page with &amp;quot;{{Client function}}  __NOTOC__ {{Added feature/item|1.6.1|1.6.0|22815	|  This function is used to check planes smoke trail enabled or disabled.  }}  {{Note|The smoke trail is only supported to models 512 and 513, so this only going to works with that models}}  ==Syntax==  &amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt; isVehicleSmokeTrailEnabled( vehicle veh ) &amp;lt;/syntaxhighlight&amp;gt;   ===Required arguments=== *'''theVehicle:''' The vehicle that you want to set the smoke trail.  ===Returns=...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Client function}} &lt;br /&gt;
__NOTOC__&lt;br /&gt;
{{Added feature/item|1.6.1|1.6.0|22815	| &lt;br /&gt;
This function is used to check planes smoke trail enabled or disabled. &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Note|The smoke trail is only supported to models 512 and 513, so this only going to works with that models}}&lt;br /&gt;
&lt;br /&gt;
==Syntax== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
isVehicleSmokeTrailEnabled( vehicle veh )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Required arguments===&lt;br /&gt;
*'''theVehicle:''' The [[vehicle]] that you want to set the smoke trail.&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
If it enabled it returns ''true'', false otherwise.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
This example let you set and check the smoke trail.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
local veh = {512,513} &lt;br /&gt;
&lt;br /&gt;
local plane = createVehicle (veh[2], 2043.23499, 1537.88562, 10.67188)&lt;br /&gt;
&lt;br /&gt;
local ped = createPed ( 2, 0,0,0 )&lt;br /&gt;
&lt;br /&gt;
warpPedIntoVehicle ( ped, plane)   &lt;br /&gt;
&lt;br /&gt;
setTimer(function()&lt;br /&gt;
    print(setVehicleSmokeTrailEnabled (plane,true))&lt;br /&gt;
end ,1500,1)&lt;br /&gt;
 &lt;br /&gt;
function disbled()&lt;br /&gt;
    print(setVehicleSmokeTrailEnabled (plane,false))&lt;br /&gt;
    print(isVehicleSmokeTrailEnabled(plane))&lt;br /&gt;
end&lt;br /&gt;
 &lt;br /&gt;
bindKey (&amp;quot;r&amp;quot;, &amp;quot;down&amp;quot;, disbled ) &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Vehicle functions|client}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=SetVehicleSmokeTrailEnabled&amp;diff=81541</id>
		<title>SetVehicleSmokeTrailEnabled</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=SetVehicleSmokeTrailEnabled&amp;diff=81541"/>
		<updated>2024-12-26T14:50:00Z</updated>

		<summary type="html">&lt;p&gt;Prox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Client function}} &lt;br /&gt;
__NOTOC__&lt;br /&gt;
{{Added feature/item|1.6.1|1.6.0|22815	| &lt;br /&gt;
This function used to set planes smoke trail enabled or disabled. &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Note|The smoke trail is only supported to models 512 and 513, so this only going to works with that models}}&lt;br /&gt;
&lt;br /&gt;
[[File:Mta-screen 2024-12-26 17-38-53.png|thumb|right|The red smoke trail from a Stuntplane]]&lt;br /&gt;
==Syntax== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
setVehicleSmokeTrailEnabled ( vehicle veh, bool enable )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Required arguments===&lt;br /&gt;
*'''theVehicle:''' The [[vehicle]] that you want to set the smoke trail.&lt;br /&gt;
*'''enable:''' A boolean if set to true it will enabled the smoke trail.&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
If successful returns ''true'', false otherwise.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
This example let you set the smoke trail.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
local veh = {512,513} &lt;br /&gt;
&lt;br /&gt;
local plane = createVehicle (veh[2], 2043.23499, 1537.88562, 10.67188)&lt;br /&gt;
&lt;br /&gt;
local ped = createPed ( 2, 0,0,0 )&lt;br /&gt;
&lt;br /&gt;
warpPedIntoVehicle ( ped, plane)   &lt;br /&gt;
&lt;br /&gt;
setTimer(function()&lt;br /&gt;
    print(setVehicleSmokeTrailEnabled (plane,true))&lt;br /&gt;
end ,1500,1)&lt;br /&gt;
 &lt;br /&gt;
function disbled()&lt;br /&gt;
    print(setVehicleSmokeTrailEnabled (plane,false))&lt;br /&gt;
    print(isVehicleSmokeTrailEnabled(plane))&lt;br /&gt;
end&lt;br /&gt;
 &lt;br /&gt;
bindKey (&amp;quot;r&amp;quot;, &amp;quot;down&amp;quot;, disbled ) &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Vehicle functions|client}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=SetVehicleSmokeTrailEnabled&amp;diff=81540</id>
		<title>SetVehicleSmokeTrailEnabled</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=SetVehicleSmokeTrailEnabled&amp;diff=81540"/>
		<updated>2024-12-26T14:47:05Z</updated>

		<summary type="html">&lt;p&gt;Prox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Client function}} &lt;br /&gt;
__NOTOC__&lt;br /&gt;
{{Added feature/item|1.6.1|1.6.0|22815	| &lt;br /&gt;
This function used to set planes smoke trail enabled or disabled. &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[File:Mta-screen 2024-12-26 17-38-53.png|thumb|right|The red smoke trail from a Stuntplane]]&lt;br /&gt;
==Syntax== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
setVehicleSmokeTrailEnabled ( vehicle veh, bool enable )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Required arguments===&lt;br /&gt;
*'''theVehicle:''' The [[vehicle]] that you want to set the smoke trail.&lt;br /&gt;
*'''enable:''' A boolean if set to true it will enabled the smoke trail.&lt;br /&gt;
&lt;br /&gt;
*'''note''' this only works with vehicle models numbers 512 and 513.&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
If successful returns ''true'', false otherwise.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
This example let you set the smoke trail.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
local veh = {512,513} &lt;br /&gt;
&lt;br /&gt;
local plane = createVehicle (veh[2], 2043.23499, 1537.88562, 10.67188)&lt;br /&gt;
&lt;br /&gt;
local ped = createPed ( 2, 0,0,0 )&lt;br /&gt;
&lt;br /&gt;
warpPedIntoVehicle ( ped, plane)   &lt;br /&gt;
&lt;br /&gt;
setTimer(function()&lt;br /&gt;
    print(setVehicleSmokeTrailEnabled (plane,true))&lt;br /&gt;
end ,1500,1)&lt;br /&gt;
 &lt;br /&gt;
function disbled()&lt;br /&gt;
    print(setVehicleSmokeTrailEnabled (plane,false))&lt;br /&gt;
    print(isVehicleSmokeTrailEnabled(plane))&lt;br /&gt;
end&lt;br /&gt;
 &lt;br /&gt;
bindKey (&amp;quot;r&amp;quot;, &amp;quot;down&amp;quot;, disbled ) &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Vehicle functions|client}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=SetVehicleSmokeTrailEnabled&amp;diff=81539</id>
		<title>SetVehicleSmokeTrailEnabled</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=SetVehicleSmokeTrailEnabled&amp;diff=81539"/>
		<updated>2024-12-26T14:45:32Z</updated>

		<summary type="html">&lt;p&gt;Prox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Client function}} &lt;br /&gt;
__NOTOC__&lt;br /&gt;
{{Added feature/item|1.6.1|1.6.0|22815	| &lt;br /&gt;
This function used to set planes smoke trail enabled or disabled. &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[File:Mta-screen 2024-12-26 17-38-53.png|thumb|right]]&lt;br /&gt;
==Syntax== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
setVehicleSmokeTrailEnabled ( vehicle veh, bool enable )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Required arguments===&lt;br /&gt;
*'''theVehicle:''' The [[vehicle]] that you want to set the smoke trail.&lt;br /&gt;
*'''enable:''' A boolean if set to true it will enabled the smoke trail.&lt;br /&gt;
&lt;br /&gt;
*'''note''' this only works with vehicle models numbers 512 and 513.&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
If successful returns ''true'', false otherwise.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
This example let you set the smoke trail.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
local veh = {512,513} &lt;br /&gt;
&lt;br /&gt;
local plane = createVehicle (veh[2], 2043.23499, 1537.88562, 10.67188)&lt;br /&gt;
&lt;br /&gt;
local ped = createPed ( 2, 0,0,0 )&lt;br /&gt;
&lt;br /&gt;
warpPedIntoVehicle ( ped, plane)   &lt;br /&gt;
&lt;br /&gt;
setTimer(function()&lt;br /&gt;
    print(setVehicleSmokeTrailEnabled (plane,true))&lt;br /&gt;
end ,1500,1)&lt;br /&gt;
 &lt;br /&gt;
function disbled()&lt;br /&gt;
    print(setVehicleSmokeTrailEnabled (plane,false))&lt;br /&gt;
    print(isVehicleSmokeTrailEnabled(plane))&lt;br /&gt;
end&lt;br /&gt;
 &lt;br /&gt;
bindKey (&amp;quot;r&amp;quot;, &amp;quot;down&amp;quot;, disbled ) &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Vehicle functions|client}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=File:Mta-screen_2024-12-26_17-38-53.png&amp;diff=81538</id>
		<title>File:Mta-screen 2024-12-26 17-38-53.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=File:Mta-screen_2024-12-26_17-38-53.png&amp;diff=81538"/>
		<updated>2024-12-26T14:43:52Z</updated>

		<summary type="html">&lt;p&gt;Prox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;plane smoke trail&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=SetVehicleSmokeTrailEnabled&amp;diff=81537</id>
		<title>SetVehicleSmokeTrailEnabled</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=SetVehicleSmokeTrailEnabled&amp;diff=81537"/>
		<updated>2024-12-26T14:36:06Z</updated>

		<summary type="html">&lt;p&gt;Prox: Created page with &amp;quot;{{Client function}}  __NOTOC__ {{Added feature/item|1.6.1|1.6.0|22815	|  This function used to set planes smoke trail enabled or disabled.  }}   ==Syntax==  &amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt; setVehicleSmokeTrailEnabled ( vehicle veh, bool enable ) &amp;lt;/syntaxhighlight&amp;gt;   ===Required arguments=== *'''theVehicle:''' The vehicle that you want to set the smoke trail. *'''enable:''' A boolean if set to true it will enabled the smoke trail.  *'''note''' this only works with vehicl...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Client function}} &lt;br /&gt;
__NOTOC__&lt;br /&gt;
{{Added feature/item|1.6.1|1.6.0|22815	| &lt;br /&gt;
This function used to set planes smoke trail enabled or disabled. &lt;br /&gt;
}}&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;
setVehicleSmokeTrailEnabled ( vehicle veh, bool enable )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Required arguments===&lt;br /&gt;
*'''theVehicle:''' The [[vehicle]] that you want to set the smoke trail.&lt;br /&gt;
*'''enable:''' A boolean if set to true it will enabled the smoke trail.&lt;br /&gt;
&lt;br /&gt;
*'''note''' this only works with vehicle models numbers 512 and 513.&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
If successful returns ''true'', false otherwise.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
This example let you interrupt and cancel the jump animation action and clear the slot&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
local veh = {512,513} &lt;br /&gt;
&lt;br /&gt;
local plane = createVehicle (veh[2], 2043.23499, 1537.88562, 10.67188)&lt;br /&gt;
&lt;br /&gt;
local ped = createPed ( 2, 0,0,0 )&lt;br /&gt;
&lt;br /&gt;
warpPedIntoVehicle ( ped, plane)   &lt;br /&gt;
&lt;br /&gt;
setTimer(function()&lt;br /&gt;
    print(setVehicleSmokeTrailEnabled (plane,true))&lt;br /&gt;
end ,1500,1)&lt;br /&gt;
 &lt;br /&gt;
function disbled()&lt;br /&gt;
    print(setVehicleSmokeTrailEnabled (plane,false))&lt;br /&gt;
    print(isVehicleSmokeTrailEnabled(plane))&lt;br /&gt;
end&lt;br /&gt;
 &lt;br /&gt;
bindKey (&amp;quot;r&amp;quot;, &amp;quot;down&amp;quot;, disbled ) &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Vehicle functions|client}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=KillPedTask&amp;diff=81534</id>
		<title>KillPedTask</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=KillPedTask&amp;diff=81534"/>
		<updated>2024-12-22T14:01:04Z</updated>

		<summary type="html">&lt;p&gt;Prox: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Client function}} &lt;br /&gt;
__NOTOC__&lt;br /&gt;
{{Added feature/item|1.6.1|1.6.0|22837| &lt;br /&gt;
This function will be used to kill current ped tasks.&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 killPedTask ( ped thePed, string taskType, int taskNumber, [ bool gracefully = true] )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Required arguments===&lt;br /&gt;
*'''thePed:''' The ped element.&lt;br /&gt;
*'''taskType:''' The task type given '''primary''' or '''secondary''', for more info see [[Tasks]].&lt;br /&gt;
*'''taskNumber''' the task slot number for reference see [[Tasks]].&lt;br /&gt;
&lt;br /&gt;
===Optional arguments===&lt;br /&gt;
*'''gracefully''' If set to true the animation will be cut in a smooth transition, false otherwise.&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
If successful returns ''true'', false otherwise.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
This example let you interrupt and cancel the jump animation action and clear the slot&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function playerPressedKey(button, press)&lt;br /&gt;
    local moveState = getPedMoveState( localPlayer )&lt;br /&gt;
    if(moveState==&amp;quot;jump&amp;quot;) then&lt;br /&gt;
        killPedTask(localPlayer, &amp;quot;primary&amp;quot;, 3, true)&lt;br /&gt;
    end&lt;br /&gt;
end&lt;br /&gt;
addEventHandler(&amp;quot;onClientKey&amp;quot;, root, playerPressedKey)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Ped functions|client}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=KillPedTask&amp;diff=81533</id>
		<title>KillPedTask</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=KillPedTask&amp;diff=81533"/>
		<updated>2024-12-22T13:59:51Z</updated>

		<summary type="html">&lt;p&gt;Prox: /* See Also */  minor fix for client not shared&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Client function}} &lt;br /&gt;
__NOTOC__&lt;br /&gt;
{{Added feature/item|1.6.1|1.6.0|22837| &lt;br /&gt;
This function will be used to kill current ped tasks.&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 killPedTask ( ped thePed, string taskType, int taskNumber, [ bool gracefully = true] )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Required arguments===&lt;br /&gt;
*'''thePed:''' The ped element.&lt;br /&gt;
*'''taskType:''' The task type given '''primary''' or '''secondary''', for more info see [[Tasks]].&lt;br /&gt;
*'''taskNumber''' the task slot number for reference see [[Tasks]].&lt;br /&gt;
&lt;br /&gt;
===Optional arguments===&lt;br /&gt;
*'''gracefully''' If set to true the animation will be cut in a smooth transition, false otherwise.&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
If successful returns ''true'', false otherwise.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
This example let you interrupt and cancel the jump animation action and clear the slot&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function playerPressedKey(button, press)&lt;br /&gt;
       local moveState = getPedMoveState( localPlayer )&lt;br /&gt;
&lt;br /&gt;
       if(moveState==&amp;quot;jump&amp;quot;) then&lt;br /&gt;
           killPedTask(localPlayer, &amp;quot;primary&amp;quot;, 3, true)&lt;br /&gt;
       end&lt;br /&gt;
end&lt;br /&gt;
addEventHandler(&amp;quot;onClientKey&amp;quot;, root, playerPressedKey)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Ped functions|client}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=KillPedTask&amp;diff=81532</id>
		<title>KillPedTask</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=KillPedTask&amp;diff=81532"/>
		<updated>2024-12-22T13:58:12Z</updated>

		<summary type="html">&lt;p&gt;Prox: killPedTask adding latest functions&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Client function}} &lt;br /&gt;
__NOTOC__&lt;br /&gt;
{{Added feature/item|1.6.1|1.6.0|22837| &lt;br /&gt;
This function will be used to kill current ped tasks.&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 killPedTask ( ped thePed, string taskType, int taskNumber, [ bool gracefully = true] )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Required arguments===&lt;br /&gt;
*'''thePed:''' The ped element.&lt;br /&gt;
*'''taskType:''' The task type given '''primary''' or '''secondary''', for more info see [[Tasks]].&lt;br /&gt;
*'''taskNumber''' the task slot number for reference see [[Tasks]].&lt;br /&gt;
&lt;br /&gt;
===Optional arguments===&lt;br /&gt;
*'''gracefully''' If set to true the animation will be cut in a smooth transition, false otherwise.&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
If successful returns ''true'', false otherwise.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
This example let you interrupt and cancel the jump animation action and clear the slot&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function playerPressedKey(button, press)&lt;br /&gt;
       local moveState = getPedMoveState( localPlayer )&lt;br /&gt;
&lt;br /&gt;
       if(moveState==&amp;quot;jump&amp;quot;) then&lt;br /&gt;
           killPedTask(localPlayer, &amp;quot;primary&amp;quot;, 3, true)&lt;br /&gt;
       end&lt;br /&gt;
end&lt;br /&gt;
addEventHandler(&amp;quot;onClientKey&amp;quot;, root, playerPressedKey)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Ped functions}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Changes_in_1.6.1&amp;diff=80909</id>
		<title>Changes in 1.6.1</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Changes_in_1.6.1&amp;diff=80909"/>
		<updated>2024-10-30T17:38:30Z</updated>

		<summary type="html">&lt;p&gt;Prox: /* 83 New Features */&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;
== 2 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 '''Nico8340''')&lt;br /&gt;
* Changed [[setHelicopterRotorSpeed]] to throw a warning on use, please upgrade to [[setVehicleRotorSpeed]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/82000c34830b51ace2d14e39f3b487feb1aac1da 82000c3] by '''FileEX''')&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 '''Nicol8340''')&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;
&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;
* '''8''' new events&lt;br /&gt;
* '''2''' 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;
== 85 New Features ==&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Added [[isWorldSpecialPropertyEnabled]] and [[setWorldSpecialPropertyEnabled]] also to serverside ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
* Added [[fileGetContents]] ([https://github.com/multitheftauto/mtasa-blue/commit/22930d854ce67d84a4a3b65a61b98a9ffd3f9e38 22930d8] by '''botder''')&lt;br /&gt;
* Added new object functions and updated existing to be shared&lt;br /&gt;
:* Added [[isObjectMoving]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/7c939adb892c08836462a78cd9b987884cdb49ee 7c939ad] by '''FileEX''')&lt;br /&gt;
:* Added [[breakObject]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/aa1a7853f46fc796a94f38b7df2a5293fb941ba2 aa1a785] by '''FileEX''')&lt;br /&gt;
:* Added [[respawnObject]] and [[toggleObjectRespawn]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/9d65bb673c4df16def27e97a4af74d3b0c7eedc9 9d65bb6] by '''FileEX''')&lt;br /&gt;
:* Added [[isObjectRespawnable]] ([https://github.com/multitheftauto/mtasa-blue/commit/9d65bb673c4df16def27e97a4af74d3b0c7eedc9 9d65bb6] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* Added new special world properties&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;
&lt;br /&gt;
* Added [[pathListDir]], [[pathIsFile]], [[pathIsDirectory]] ([https://github.com/multitheftauto/mtasa-blue/commit/74781c6295b5b6dc81cd95d4cfab7900d88d7524 74781c6] by '''Tracer''')&lt;br /&gt;
* Added [[setMarkerTargetArrowProperties]], [[getMarkerTargetArrowProperties]] ([https://github.com/multitheftauto/mtasa-blue/commit/071378ec4326408a9520c79c96befca995d097f6 071378e] by '''FileEX''')&lt;br /&gt;
* Added new timer functions ([https://github.com/multitheftauto/mtasa-blue/commit/69aa420f21fde3ac56e3d3bbc62ef0f060295c0a 69aa420] by '''jvstns''')&lt;br /&gt;
:* [[setTimerPaused]]&lt;br /&gt;
:* [[isTimerPaused]]&lt;br /&gt;
* Added [[resetWorldProperties]] ([https://github.com/multitheftauto/mtasa-blue/commit/6df889e78328b80f8e4bdc02f8761472cf87c54c 6df889e] by '''FileEX''')&lt;br /&gt;
* Added [[spawnVehicleFlyingComponent]] ([https://github.com/multitheftauto/mtasa-blue/commit/9f54cfcd7a584f413db731052ebed921acfc71ea 9f54cfc] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
=== Client ===&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;
&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;
&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;
&lt;br /&gt;
* Added 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;
* Added buildings 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;
:* [[removeAllGameBuildings]] &lt;br /&gt;
:* [[restoreAllGameBuildings]] &lt;br /&gt;
&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;
&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;
* Added [[processLineAgainstMesh]] ([https://github.com/multitheftauto/mtasa-blue/commit/acb80a3945d0d5e0230b8a41394a3fe3e70b8d0b acb80a3] by '''Pirulax''')&lt;br /&gt;
* Added [[resetPedVoice]] ([https://github.com/multitheftauto/mtasa-blue/commit/18986a4542db5eb72f6d0dfffb80cb8bb6eb1442 18986a4] by '''Tracer''')&lt;br /&gt;
* Added [[fxCreateParticle]] ([https://github.com/multitheftauto/mtasa-blue/commit/8f2730d2e260c3319cb51101c6aedb45e22bbd89 8f2730d] by '''FileEX''')&lt;br /&gt;
* Added [[getPlayerScriptDebugLevel]] to client-side ([https://github.com/multitheftauto/mtasa-blue/commit/8403da54ecfd20d6b9740fb79d90ac936d316112 8403da5] by '''Nico8340''')&lt;br /&gt;
* Added [[setVehicleWheelsRotation]] ([https://github.com/multitheftauto/mtasa-blue/commit/aeb113d269fffee7d9ac435ce87b51e905e9efa6 aeb113d] by '''gta191977649''')&lt;br /&gt;
&lt;br /&gt;
* Added 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;
* Added [[onClientCoreCommand]] event ([https://github.com/multitheftauto/mtasa-blue/commit/b2cf02943924c4972d2a695cdbfd7c9873fc3cbb b2cf029] by '''Pieter-Dewachter''')&lt;br /&gt;
* Added [[getVehicleEntryPoints]] ([https://github.com/multitheftauto/mtasa-blue/commit/bf588c163cd5bc134771e3842a6585212f06307f bf588c1] by '''MegadreamsBE''')&lt;br /&gt;
&lt;br /&gt;
* Added new 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;
* Added [[enginePreloadWorldArea]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b72fb9d3c9e6813cdf56e53d1a1e72958abd3cf 5b72fb9] by '''MegadreamsBE''')&lt;br /&gt;
&lt;br /&gt;
* Added new world 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;
&lt;br /&gt;
* Added new functions related to element bone ([https://github.com/multitheftauto/mtasa-blue/commit/10098b0984bf5d5955ea1764e28f616c8a60714f 10098b0] by '''gownosatana''')&lt;br /&gt;
:* [[setElementBoneQuaternion]] &lt;br /&gt;
:* [[getElementBoneQuaternion]]&lt;br /&gt;
&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;
&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;
&lt;br /&gt;
* Added [[isBrowserGPUEnabled]] ([https://github.com/multitheftauto/mtasa-blue/commit/bfdfdb5f44726df85626e6e3e06c2a319c0c8962 bfdfdb5] by '''Lpsd''')&lt;br /&gt;
&lt;br /&gt;
* Added new vehicle functions  ([https://github.com/multitheftauto/mtasa-blue/commit/a5dfc5223358127299511b618ab29da08ff23030 a5dfc52] by '''Proxy-99''')&lt;br /&gt;
:* [[isVehicleSmokeTrailEnabled]]&lt;br /&gt;
:* [[setVehicleSmokeTrailEnabled]]&lt;br /&gt;
&lt;br /&gt;
=== Server ===&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 [[aclObjectGetGroups]] ([https://github.com/multitheftauto/mtasa-blue/commit/cf46bd8487bdb2d0cafdab1f43936357f670fe10 cf46bd8] by '''Tracer''')&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;
&lt;br /&gt;
* Added new acl account features ([https://github.com/multitheftauto/mtasa-blue/commit/545f54b6ae0bfc721abba12402ad3787ed9ae811 545f54b] by '''Tracer''')&lt;br /&gt;
:* [[onAccountCreate]]&lt;br /&gt;
:* [[onAccountRemove]]&lt;br /&gt;
:* [[getAccountType]]&lt;br /&gt;
&lt;br /&gt;
* Added [[onPlayerTriggerInvalidEvent]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b4122d35f725e4d258b408253c93e7cbd2ec783 5b4122d] by '''Lpsd''')&lt;br /&gt;
&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;
== 77 Changes and Bug Fixes ==&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* '''[Deprecation]''' 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 '''Nico8340''')&lt;br /&gt;
* '''[Deprecation]''' Changed [[setHelicopterRotorSpeed]] to throw a warning on use, please upgrade to [[setVehicleRotorSpeed]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/82000c34830b51ace2d14e39f3b487feb1aac1da 82000c3] by '''FileEX''')&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 '''Nico8340''')&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 '''Nico8340''' 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;
&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 '''Nico8340''')&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 '''Nico8340''')&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;
&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;
&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;
* 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 '''Nando''')&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;
:* 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/733683d70dc037fdcbb256fb17d86e93bfedd239] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
== 13 Vendor Updates ==&lt;br /&gt;
=== Client ===&lt;br /&gt;
* Updated libpng to 1.6.43 ([https://github.com/multitheftauto/mtasa-blue/commit/5c71180ecdadc86fde56d4aef07fd2bca1fb56b2 5c71180] by '''Dutchman101''')&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.8.0 ([https://github.com/multitheftauto/mtasa-blue/commit/66ebffdbaa3a9c98372b06dc5efca7dc5724bb7a 66ebffd] by '''Dutchman101''')&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.0 ([https://github.com/multitheftauto/mtasa-blue/commit/0ba65bb826cecc1d95392ffea9833e30c8dd592c 0ba65bb] by '''Lpsd''')&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 '''F2BShady''')&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;
&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;
&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 '''F2BShady''')&lt;br /&gt;
&lt;br /&gt;
'''hedit'''&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 '''Nico8340''')&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;
&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 '''Nico8340''')&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;
&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 '''Nico8340''')&lt;br /&gt;
:* Preventing pointer overflow ([https://github.com/multitheftauto/mtasa-resources/commit/8689cdc247a3fd16125524aac04eb054c398084c 8689cdc] by '''Nico8340''')&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;
'''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>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Changes_in_1.6.1&amp;diff=80908</id>
		<title>Changes in 1.6.1</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Changes_in_1.6.1&amp;diff=80908"/>
		<updated>2024-10-30T17:31:26Z</updated>

		<summary type="html">&lt;p&gt;Prox: /* Client */  add functions&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;
== 2 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 '''Nico8340''')&lt;br /&gt;
* Changed [[setHelicopterRotorSpeed]] to throw a warning on use, please upgrade to [[setVehicleRotorSpeed]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/82000c34830b51ace2d14e39f3b487feb1aac1da 82000c3] by '''FileEX''')&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 '''Nicol8340''')&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;
&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;
* '''8''' new events&lt;br /&gt;
* '''2''' 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;
== 83 New Features ==&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Added [[isWorldSpecialPropertyEnabled]] and [[setWorldSpecialPropertyEnabled]] also to serverside ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
* Added [[fileGetContents]] ([https://github.com/multitheftauto/mtasa-blue/commit/22930d854ce67d84a4a3b65a61b98a9ffd3f9e38 22930d8] by '''botder''')&lt;br /&gt;
* Added new object functions and updated existing to be shared&lt;br /&gt;
:* Added [[isObjectMoving]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/7c939adb892c08836462a78cd9b987884cdb49ee 7c939ad] by '''FileEX''')&lt;br /&gt;
:* Added [[breakObject]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/aa1a7853f46fc796a94f38b7df2a5293fb941ba2 aa1a785] by '''FileEX''')&lt;br /&gt;
:* Added [[respawnObject]] and [[toggleObjectRespawn]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/9d65bb673c4df16def27e97a4af74d3b0c7eedc9 9d65bb6] by '''FileEX''')&lt;br /&gt;
:* Added [[isObjectRespawnable]] ([https://github.com/multitheftauto/mtasa-blue/commit/9d65bb673c4df16def27e97a4af74d3b0c7eedc9 9d65bb6] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* Added new special world properties&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;
&lt;br /&gt;
* Added [[pathListDir]], [[pathIsFile]], [[pathIsDirectory]] ([https://github.com/multitheftauto/mtasa-blue/commit/74781c6295b5b6dc81cd95d4cfab7900d88d7524 74781c6] by '''Tracer''')&lt;br /&gt;
* Added [[setMarkerTargetArrowProperties]], [[getMarkerTargetArrowProperties]] ([https://github.com/multitheftauto/mtasa-blue/commit/071378ec4326408a9520c79c96befca995d097f6 071378e] by '''FileEX''')&lt;br /&gt;
* Added new timer functions ([https://github.com/multitheftauto/mtasa-blue/commit/69aa420f21fde3ac56e3d3bbc62ef0f060295c0a 69aa420] by '''jvstns''')&lt;br /&gt;
:* [[setTimerPaused]]&lt;br /&gt;
:* [[isTimerPaused]]&lt;br /&gt;
* Added [[resetWorldProperties]] ([https://github.com/multitheftauto/mtasa-blue/commit/6df889e78328b80f8e4bdc02f8761472cf87c54c 6df889e] by '''FileEX''')&lt;br /&gt;
* Added [[spawnVehicleFlyingComponent]] ([https://github.com/multitheftauto/mtasa-blue/commit/9f54cfcd7a584f413db731052ebed921acfc71ea 9f54cfc] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
=== Client ===&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;
&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;
&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;
&lt;br /&gt;
* Added 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;
* Added buildings 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;
:* [[removeAllGameBuildings]] &lt;br /&gt;
:* [[restoreAllGameBuildings]] &lt;br /&gt;
&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;
&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;
* Added [[processLineAgainstMesh]] ([https://github.com/multitheftauto/mtasa-blue/commit/acb80a3945d0d5e0230b8a41394a3fe3e70b8d0b acb80a3] by '''Pirulax''')&lt;br /&gt;
* Added [[resetPedVoice]] ([https://github.com/multitheftauto/mtasa-blue/commit/18986a4542db5eb72f6d0dfffb80cb8bb6eb1442 18986a4] by '''Tracer''')&lt;br /&gt;
* Added [[fxCreateParticle]] ([https://github.com/multitheftauto/mtasa-blue/commit/8f2730d2e260c3319cb51101c6aedb45e22bbd89 8f2730d] by '''FileEX''')&lt;br /&gt;
* Added [[getPlayerScriptDebugLevel]] to client-side ([https://github.com/multitheftauto/mtasa-blue/commit/8403da54ecfd20d6b9740fb79d90ac936d316112 8403da5] by '''Nico8340''')&lt;br /&gt;
* Added [[setVehicleWheelsRotation]] ([https://github.com/multitheftauto/mtasa-blue/commit/aeb113d269fffee7d9ac435ce87b51e905e9efa6 aeb113d] by '''gta191977649''')&lt;br /&gt;
&lt;br /&gt;
* Added 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;
* Added [[onClientCoreCommand]] event ([https://github.com/multitheftauto/mtasa-blue/commit/b2cf02943924c4972d2a695cdbfd7c9873fc3cbb b2cf029] by '''Pieter-Dewachter''')&lt;br /&gt;
* Added [[getVehicleEntryPoints]] ([https://github.com/multitheftauto/mtasa-blue/commit/bf588c163cd5bc134771e3842a6585212f06307f bf588c1] by '''MegadreamsBE''')&lt;br /&gt;
&lt;br /&gt;
* Added new 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;
* Added [[enginePreloadWorldArea]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b72fb9d3c9e6813cdf56e53d1a1e72958abd3cf 5b72fb9] by '''MegadreamsBE''')&lt;br /&gt;
&lt;br /&gt;
* Added new world 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;
&lt;br /&gt;
* Added new functions related to element bone ([https://github.com/multitheftauto/mtasa-blue/commit/10098b0984bf5d5955ea1764e28f616c8a60714f 10098b0] by '''gownosatana''')&lt;br /&gt;
:* [[setElementBoneQuaternion]] &lt;br /&gt;
:* [[getElementBoneQuaternion]]&lt;br /&gt;
&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;
&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;
&lt;br /&gt;
* Added [[isBrowserGPUEnabled]] ([https://github.com/multitheftauto/mtasa-blue/commit/bfdfdb5f44726df85626e6e3e06c2a319c0c8962 bfdfdb5] by '''Lpsd''')&lt;br /&gt;
&lt;br /&gt;
* Added new vehicle functions  ([https://github.com/multitheftauto/mtasa-blue/commit/a5dfc5223358127299511b618ab29da08ff23030 a5dfc52] by '''Proxy-99''')&lt;br /&gt;
:* [[isVehicleSmokeTrailEnabled]]&lt;br /&gt;
:* [[setVehicleSmokeTrailEnabled]]&lt;br /&gt;
&lt;br /&gt;
=== Server ===&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 [[aclObjectGetGroups]] ([https://github.com/multitheftauto/mtasa-blue/commit/cf46bd8487bdb2d0cafdab1f43936357f670fe10 cf46bd8] by '''Tracer''')&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;
&lt;br /&gt;
* Added new acl account features ([https://github.com/multitheftauto/mtasa-blue/commit/545f54b6ae0bfc721abba12402ad3787ed9ae811 545f54b] by '''Tracer''')&lt;br /&gt;
:* [[onAccountCreate]]&lt;br /&gt;
:* [[onAccountRemove]]&lt;br /&gt;
:* [[getAccountType]]&lt;br /&gt;
&lt;br /&gt;
* Added [[onPlayerTriggerInvalidEvent]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b4122d35f725e4d258b408253c93e7cbd2ec783 5b4122d] by '''Lpsd''')&lt;br /&gt;
&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;
== 77 Changes and Bug Fixes ==&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* '''[Deprecation]''' 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 '''Nico8340''')&lt;br /&gt;
* '''[Deprecation]''' Changed [[setHelicopterRotorSpeed]] to throw a warning on use, please upgrade to [[setVehicleRotorSpeed]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/82000c34830b51ace2d14e39f3b487feb1aac1da 82000c3] by '''FileEX''')&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 '''Nico8340''')&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 '''Nico8340''' 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;
&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 '''Nico8340''')&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 '''Nico8340''')&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;
&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;
&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;
* 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 '''Nando''')&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;
:* 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/733683d70dc037fdcbb256fb17d86e93bfedd239] by '''TheNormalnij''')&lt;br /&gt;
&lt;br /&gt;
== 13 Vendor Updates ==&lt;br /&gt;
=== Client ===&lt;br /&gt;
* Updated libpng to 1.6.43 ([https://github.com/multitheftauto/mtasa-blue/commit/5c71180ecdadc86fde56d4aef07fd2bca1fb56b2 5c71180] by '''Dutchman101''')&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.8.0 ([https://github.com/multitheftauto/mtasa-blue/commit/66ebffdbaa3a9c98372b06dc5efca7dc5724bb7a 66ebffd] by '''Dutchman101''')&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.0 ([https://github.com/multitheftauto/mtasa-blue/commit/0ba65bb826cecc1d95392ffea9833e30c8dd592c 0ba65bb] by '''Lpsd''')&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 '''F2BShady''')&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;
&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;
&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 '''F2BShady''')&lt;br /&gt;
&lt;br /&gt;
'''hedit'''&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 '''Nico8340''')&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;
&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 '''Nico8340''')&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;
&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 '''Nico8340''')&lt;br /&gt;
:* Preventing pointer overflow ([https://github.com/multitheftauto/mtasa-resources/commit/8689cdc247a3fd16125524aac04eb054c398084c 8689cdc] by '''Nico8340''')&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;
'''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>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Changes_in_1.6.1&amp;diff=80818</id>
		<title>Changes in 1.6.1</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Changes_in_1.6.1&amp;diff=80818"/>
		<updated>2024-10-18T13:58:29Z</updated>

		<summary type="html">&lt;p&gt;Prox: /* 76 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;
== 2 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 '''Nico8340''')&lt;br /&gt;
* Changed [[setHelicopterRotorSpeed]] to throw a warning on use, please upgrade to [[setVehicleRotorSpeed]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/82000c34830b51ace2d14e39f3b487feb1aac1da 82000c3] by '''FileEX''')&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 '''Nicol8340''')&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;
&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;
* '''8''' new events&lt;br /&gt;
* '''2''' 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;
== 82 New Features ==&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Added [[isWorldSpecialPropertyEnabled]] and [[setWorldSpecialPropertyEnabled]] also to serverside ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
* Added [[fileGetContents]] ([https://github.com/multitheftauto/mtasa-blue/commit/22930d854ce67d84a4a3b65a61b98a9ffd3f9e38 22930d8] by '''botder''')&lt;br /&gt;
* Added new object functions and updated existing to be shared&lt;br /&gt;
:* Added [[isObjectMoving]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/7c939adb892c08836462a78cd9b987884cdb49ee 7c939ad] by '''FileEX''')&lt;br /&gt;
:* Added [[breakObject]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/aa1a7853f46fc796a94f38b7df2a5293fb941ba2 aa1a785] by '''FileEX''')&lt;br /&gt;
:* Added [[respawnObject]] and [[toggleObjectRespawn]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/9d65bb673c4df16def27e97a4af74d3b0c7eedc9 9d65bb6] by '''FileEX''')&lt;br /&gt;
:* Added [[isObjectRespawnable]] ([https://github.com/multitheftauto/mtasa-blue/commit/9d65bb673c4df16def27e97a4af74d3b0c7eedc9 9d65bb6] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* Added new special world properties&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;
&lt;br /&gt;
* Added [[pathListDir]], [[pathIsFile]], [[pathIsDirectory]] ([https://github.com/multitheftauto/mtasa-blue/commit/74781c6295b5b6dc81cd95d4cfab7900d88d7524 74781c6] by '''Tracer''')&lt;br /&gt;
* Added [[setMarkerTargetArrowProperties]], [[getMarkerTargetArrowProperties]] ([https://github.com/multitheftauto/mtasa-blue/commit/071378ec4326408a9520c79c96befca995d097f6 071378e] by '''FileEX''')&lt;br /&gt;
* Added new timer functions ([https://github.com/multitheftauto/mtasa-blue/commit/69aa420f21fde3ac56e3d3bbc62ef0f060295c0a 69aa420] by '''jvstns''')&lt;br /&gt;
:* [[setTimerPaused]]&lt;br /&gt;
:* [[isTimerPaused]]&lt;br /&gt;
* Added [[resetWorldProperties]] ([https://github.com/multitheftauto/mtasa-blue/commit/6df889e78328b80f8e4bdc02f8761472cf87c54c 6df889e] by '''FileEX''')&lt;br /&gt;
* Added [[spawnVehicleFlyingComponent]] ([https://github.com/multitheftauto/mtasa-blue/commit/9f54cfcd7a584f413db731052ebed921acfc71ea 9f54cfc] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
=== Client ===&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;
&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;
&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;
&lt;br /&gt;
* Added 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;
* Added buildings 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;
:* [[removeAllGameBuildings]] &lt;br /&gt;
:* [[restoreAllGameBuildings]] &lt;br /&gt;
&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;
&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;
* Added [[processLineAgainstMesh]] ([https://github.com/multitheftauto/mtasa-blue/commit/acb80a3945d0d5e0230b8a41394a3fe3e70b8d0b acb80a3] by '''Pirulax''')&lt;br /&gt;
* Added [[resetPedVoice]] ([https://github.com/multitheftauto/mtasa-blue/commit/18986a4542db5eb72f6d0dfffb80cb8bb6eb1442 18986a4] by '''Tracer''')&lt;br /&gt;
* Added [[fxCreateParticle]] ([https://github.com/multitheftauto/mtasa-blue/commit/8f2730d2e260c3319cb51101c6aedb45e22bbd89 8f2730d] by '''FileEX''')&lt;br /&gt;
* Added [[getPlayerScriptDebugLevel]] to client-side ([https://github.com/multitheftauto/mtasa-blue/commit/8403da54ecfd20d6b9740fb79d90ac936d316112 8403da5] by '''Nico8340''')&lt;br /&gt;
* Added [[setVehicleWheelsRotation]] ([https://github.com/multitheftauto/mtasa-blue/commit/aeb113d269fffee7d9ac435ce87b51e905e9efa6 aeb113d] by '''gta191977649''')&lt;br /&gt;
&lt;br /&gt;
* Added 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;
* Added [[onClientCoreCommand]] event ([https://github.com/multitheftauto/mtasa-blue/commit/b2cf02943924c4972d2a695cdbfd7c9873fc3cbb b2cf029] by '''Pieter-Dewachter''')&lt;br /&gt;
* Added [[getVehicleEntryPoints]] ([https://github.com/multitheftauto/mtasa-blue/commit/bf588c163cd5bc134771e3842a6585212f06307f bf588c1] by '''MegadreamsBE''')&lt;br /&gt;
&lt;br /&gt;
* Added new 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;
* Added [[enginePreloadWorldArea]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b72fb9d3c9e6813cdf56e53d1a1e72958abd3cf 5b72fb9] by '''MegadreamsBE''')&lt;br /&gt;
&lt;br /&gt;
* Added new world 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;
&lt;br /&gt;
* Added new functions related to element bone ([https://github.com/multitheftauto/mtasa-blue/commit/10098b0984bf5d5955ea1764e28f616c8a60714f 10098b0] by '''gownosatana''')&lt;br /&gt;
:* [[setElementBoneQuaternion]] &lt;br /&gt;
:* [[getElementBoneQuaternion]]&lt;br /&gt;
&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;
&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;
&lt;br /&gt;
=== Server ===&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 [[aclObjectGetGroups]] ([https://github.com/multitheftauto/mtasa-blue/commit/cf46bd8487bdb2d0cafdab1f43936357f670fe10 cf46bd8] by '''Tracer''')&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;
&lt;br /&gt;
* Added new acl account features ([https://github.com/multitheftauto/mtasa-blue/commit/545f54b6ae0bfc721abba12402ad3787ed9ae811 545f54b] by '''Tracer''')&lt;br /&gt;
:* [[onAccountCreate]]&lt;br /&gt;
:* [[onAccountRemove]]&lt;br /&gt;
:* [[getAccountType]]&lt;br /&gt;
&lt;br /&gt;
* Added [[onPlayerTriggerInvalidEvent]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b4122d35f725e4d258b408253c93e7cbd2ec783 5b4122d] by '''Lpsd''')&lt;br /&gt;
&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;
== 77 Changes and Bug Fixes ==&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* '''[Deprecation]''' 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 '''Nico8340''')&lt;br /&gt;
* '''[Deprecation]''' Changed [[setHelicopterRotorSpeed]] to throw a warning on use, please upgrade to [[setVehicleRotorSpeed]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/82000c34830b51ace2d14e39f3b487feb1aac1da 82000c3] by '''FileEX''')&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 '''Nico8340''')&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 '''Nico8340''' 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;
&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 '''Nico8340''')&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 '''Nico8340''')&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;
&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;
&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;
* 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;
&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;
:* 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;
&lt;br /&gt;
== 13 Vendor Updates ==&lt;br /&gt;
=== Client ===&lt;br /&gt;
* Updated libpng to 1.6.43 ([https://github.com/multitheftauto/mtasa-blue/commit/5c71180ecdadc86fde56d4aef07fd2bca1fb56b2 5c71180] by '''Dutchman101''')&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.8.0 ([https://github.com/multitheftauto/mtasa-blue/commit/66ebffdbaa3a9c98372b06dc5efca7dc5724bb7a 66ebffd] by '''Dutchman101''')&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.0 ([https://github.com/multitheftauto/mtasa-blue/commit/0ba65bb826cecc1d95392ffea9833e30c8dd592c 0ba65bb] by '''Lpsd''')&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 '''F2BShady''')&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;
&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;
&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 '''F2BShady''')&lt;br /&gt;
&lt;br /&gt;
'''hedit'''&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 '''Nico8340''')&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;
&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 '''Nico8340''')&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;
&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 '''Nico8340''')&lt;br /&gt;
:* Preventing pointer overflow ([https://github.com/multitheftauto/mtasa-resources/commit/8689cdc247a3fd16125524aac04eb054c398084c 8689cdc] by '''Nico8340''')&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;
'''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>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Changes_in_1.6.1&amp;diff=80817</id>
		<title>Changes in 1.6.1</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Changes_in_1.6.1&amp;diff=80817"/>
		<updated>2024-10-18T13:58:08Z</updated>

		<summary type="html">&lt;p&gt;Prox: /* More Technical Changes and Bug Fixes */  add latest change&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;
== 2 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 '''Nico8340''')&lt;br /&gt;
* Changed [[setHelicopterRotorSpeed]] to throw a warning on use, please upgrade to [[setVehicleRotorSpeed]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/82000c34830b51ace2d14e39f3b487feb1aac1da 82000c3] by '''FileEX''')&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 '''Nicol8340''')&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;
&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;
* '''8''' new events&lt;br /&gt;
* '''2''' 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;
== 82 New Features ==&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Added [[isWorldSpecialPropertyEnabled]] and [[setWorldSpecialPropertyEnabled]] also to serverside ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
* Added [[fileGetContents]] ([https://github.com/multitheftauto/mtasa-blue/commit/22930d854ce67d84a4a3b65a61b98a9ffd3f9e38 22930d8] by '''botder''')&lt;br /&gt;
* Added new object functions and updated existing to be shared&lt;br /&gt;
:* Added [[isObjectMoving]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/7c939adb892c08836462a78cd9b987884cdb49ee 7c939ad] by '''FileEX''')&lt;br /&gt;
:* Added [[breakObject]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/aa1a7853f46fc796a94f38b7df2a5293fb941ba2 aa1a785] by '''FileEX''')&lt;br /&gt;
:* Added [[respawnObject]] and [[toggleObjectRespawn]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/9d65bb673c4df16def27e97a4af74d3b0c7eedc9 9d65bb6] by '''FileEX''')&lt;br /&gt;
:* Added [[isObjectRespawnable]] ([https://github.com/multitheftauto/mtasa-blue/commit/9d65bb673c4df16def27e97a4af74d3b0c7eedc9 9d65bb6] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
* Added new special world properties&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;
&lt;br /&gt;
* Added [[pathListDir]], [[pathIsFile]], [[pathIsDirectory]] ([https://github.com/multitheftauto/mtasa-blue/commit/74781c6295b5b6dc81cd95d4cfab7900d88d7524 74781c6] by '''Tracer''')&lt;br /&gt;
* Added [[setMarkerTargetArrowProperties]], [[getMarkerTargetArrowProperties]] ([https://github.com/multitheftauto/mtasa-blue/commit/071378ec4326408a9520c79c96befca995d097f6 071378e] by '''FileEX''')&lt;br /&gt;
* Added new timer functions ([https://github.com/multitheftauto/mtasa-blue/commit/69aa420f21fde3ac56e3d3bbc62ef0f060295c0a 69aa420] by '''jvstns''')&lt;br /&gt;
:* [[setTimerPaused]]&lt;br /&gt;
:* [[isTimerPaused]]&lt;br /&gt;
* Added [[resetWorldProperties]] ([https://github.com/multitheftauto/mtasa-blue/commit/6df889e78328b80f8e4bdc02f8761472cf87c54c 6df889e] by '''FileEX''')&lt;br /&gt;
* Added [[spawnVehicleFlyingComponent]] ([https://github.com/multitheftauto/mtasa-blue/commit/9f54cfcd7a584f413db731052ebed921acfc71ea 9f54cfc] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
=== Client ===&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;
&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;
&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;
&lt;br /&gt;
* Added 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;
* Added buildings 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;
:* [[removeAllGameBuildings]] &lt;br /&gt;
:* [[restoreAllGameBuildings]] &lt;br /&gt;
&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;
&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;
* Added [[processLineAgainstMesh]] ([https://github.com/multitheftauto/mtasa-blue/commit/acb80a3945d0d5e0230b8a41394a3fe3e70b8d0b acb80a3] by '''Pirulax''')&lt;br /&gt;
* Added [[resetPedVoice]] ([https://github.com/multitheftauto/mtasa-blue/commit/18986a4542db5eb72f6d0dfffb80cb8bb6eb1442 18986a4] by '''Tracer''')&lt;br /&gt;
* Added [[fxCreateParticle]] ([https://github.com/multitheftauto/mtasa-blue/commit/8f2730d2e260c3319cb51101c6aedb45e22bbd89 8f2730d] by '''FileEX''')&lt;br /&gt;
* Added [[getPlayerScriptDebugLevel]] to client-side ([https://github.com/multitheftauto/mtasa-blue/commit/8403da54ecfd20d6b9740fb79d90ac936d316112 8403da5] by '''Nico8340''')&lt;br /&gt;
* Added [[setVehicleWheelsRotation]] ([https://github.com/multitheftauto/mtasa-blue/commit/aeb113d269fffee7d9ac435ce87b51e905e9efa6 aeb113d] by '''gta191977649''')&lt;br /&gt;
&lt;br /&gt;
* Added 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;
* Added [[onClientCoreCommand]] event ([https://github.com/multitheftauto/mtasa-blue/commit/b2cf02943924c4972d2a695cdbfd7c9873fc3cbb b2cf029] by '''Pieter-Dewachter''')&lt;br /&gt;
* Added [[getVehicleEntryPoints]] ([https://github.com/multitheftauto/mtasa-blue/commit/bf588c163cd5bc134771e3842a6585212f06307f bf588c1] by '''MegadreamsBE''')&lt;br /&gt;
&lt;br /&gt;
* Added new 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;
* Added [[enginePreloadWorldArea]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b72fb9d3c9e6813cdf56e53d1a1e72958abd3cf 5b72fb9] by '''MegadreamsBE''')&lt;br /&gt;
&lt;br /&gt;
* Added new world 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;
&lt;br /&gt;
* Added new functions related to element bone ([https://github.com/multitheftauto/mtasa-blue/commit/10098b0984bf5d5955ea1764e28f616c8a60714f 10098b0] by '''gownosatana''')&lt;br /&gt;
:* [[setElementBoneQuaternion]] &lt;br /&gt;
:* [[getElementBoneQuaternion]]&lt;br /&gt;
&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;
&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;
&lt;br /&gt;
=== Server ===&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 [[aclObjectGetGroups]] ([https://github.com/multitheftauto/mtasa-blue/commit/cf46bd8487bdb2d0cafdab1f43936357f670fe10 cf46bd8] by '''Tracer''')&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;
&lt;br /&gt;
* Added new acl account features ([https://github.com/multitheftauto/mtasa-blue/commit/545f54b6ae0bfc721abba12402ad3787ed9ae811 545f54b] by '''Tracer''')&lt;br /&gt;
:* [[onAccountCreate]]&lt;br /&gt;
:* [[onAccountRemove]]&lt;br /&gt;
:* [[getAccountType]]&lt;br /&gt;
&lt;br /&gt;
* Added [[onPlayerTriggerInvalidEvent]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b4122d35f725e4d258b408253c93e7cbd2ec783 5b4122d] by '''Lpsd''')&lt;br /&gt;
&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;
== 76 Changes and Bug Fixes ==&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* '''[Deprecation]''' 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 '''Nico8340''')&lt;br /&gt;
* '''[Deprecation]''' Changed [[setHelicopterRotorSpeed]] to throw a warning on use, please upgrade to [[setVehicleRotorSpeed]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/82000c34830b51ace2d14e39f3b487feb1aac1da 82000c3] by '''FileEX''')&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 '''Nico8340''')&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 '''Nico8340''' 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;
&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 '''Nico8340''')&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 '''Nico8340''')&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;
&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;
&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;
* 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;
&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;
:* 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;
&lt;br /&gt;
== 13 Vendor Updates ==&lt;br /&gt;
=== Client ===&lt;br /&gt;
* Updated libpng to 1.6.43 ([https://github.com/multitheftauto/mtasa-blue/commit/5c71180ecdadc86fde56d4aef07fd2bca1fb56b2 5c71180] by '''Dutchman101''')&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.8.0 ([https://github.com/multitheftauto/mtasa-blue/commit/66ebffdbaa3a9c98372b06dc5efca7dc5724bb7a 66ebffd] by '''Dutchman101''')&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.0 ([https://github.com/multitheftauto/mtasa-blue/commit/0ba65bb826cecc1d95392ffea9833e30c8dd592c 0ba65bb] by '''Lpsd''')&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 '''F2BShady''')&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;
&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;
&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 '''F2BShady''')&lt;br /&gt;
&lt;br /&gt;
'''hedit'''&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 '''Nico8340''')&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;
&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 '''Nico8340''')&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;
&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 '''Nico8340''')&lt;br /&gt;
:* Preventing pointer overflow ([https://github.com/multitheftauto/mtasa-resources/commit/8689cdc247a3fd16125524aac04eb054c398084c 8689cdc] by '''Nico8340''')&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;
'''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>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/%D8%AF%D9%84%D9%8A%D9%84_%D8%A7%D9%84%D9%84%D8%A7%D8%B9%D8%A8&amp;diff=80606</id>
		<title>AR/دليل اللاعب</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/%D8%AF%D9%84%D9%8A%D9%84_%D8%A7%D9%84%D9%84%D8%A7%D8%B9%D8%A8&amp;diff=80606"/>
		<updated>2024-09-28T19:22:25Z</updated>

		<summary type="html">&lt;p&gt;Prox: /* تثبيت العبة */ remove double words&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__TOC__&lt;br /&gt;
&amp;lt;div dir=&amp;quot;rtl&amp;quot; lang=&amp;quot;ar&amp;quot; style = &amp;quot;right-to-left&amp;quot;&amp;gt;&lt;br /&gt;
==قبل ان تبدا==&lt;br /&gt;
قبل تثبيت Multi Theft Auto: San Andreas ، تأكد أولاً من عدم وجود تعديلات مثبتة على GTA: SA .سوف تتعارض مع MTA.إذا كنت ترغب في الاحتفاظ بتعديلات العب الفردي, فيمكنك إنشاء تثبيتين عن طريق إعادة تثبيت San Andreas إلى مجلد ثانٍ علي القرص الصلب&lt;br /&gt;
&lt;br /&gt;
تأكد أيضًا من أن جهازك قادر على تشغيل اللعبة في العب الفردي. لاحظ أنه إذا كنت تقوم بتشغيل العب الفردي وفقًا للحد الأدنى من المتطلبات المطلقة, فستواجه تباطؤًا في MTA حيث إنها تستهلك طاقة معالجة إضافية.&lt;br /&gt;
{{AR/Note| &lt;br /&gt;
* MTA:SA سوف تعمل فقط علي GTA:SA '''v1.0'''. اذا قمت بشراء العبة مؤخرا, من المحتمل أن يكون لديك إصدار أحدث.''' [[Known_Issues_-_FAQ#Does_MTASA_work_with_v1.01_or_v2.00_of_GTA_San_Andreas.3F| (مزيد من المعلومات)]]&lt;br /&gt;
* اذا كان لديك نسخة تسيم من GTA: San Andreas يجب ان [[Known_Issues_-_FAQ#I_have_the_Steam_version_of_GTA_San_Andreas._How_can_I_play_MTASA.3F|تقراء هذا اولا]].&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
===متطلبات النظام===&lt;br /&gt;
====الحد الأدنى لمتطلبات النظام====&lt;br /&gt;
الحد الأدنى لمتطلبات تشغيل Multi Theft Auto: San Andreas هي '''أعلى قليلا''' من الحد الادني للمتطلبات الاصلية ل Grand Theft Auto: San Andreas:&lt;br /&gt;
* نظام تشغيل Windows 7 او احدث (مدعوم من ميكروسوفت)  ([[Compatibility FAQ|XP و Vista قديمة ولا تعمل]])&lt;br /&gt;
* Intel Pentium 4 او AMD Athlon XP&lt;br /&gt;
* 1 جيجابايت ذاكرة وصول عشوائي (RAM)&lt;br /&gt;
* تثبيت نظيف ل Grand Theft Auto: San Andreas, اصدار 1.0 (امريكي او اوروبي)&lt;br /&gt;
* 3.7 جيجابايت مساحة فارغة علي القرص الصلب (3.6 جيجابايت الحد الادني لتثبيت Grand Theft Auto; تذكر أن MTA تخزن الملفات مؤقتًا من السيرفرات التي تلعب فيها وتتطلب مساحة علي القرص الصلب)&lt;br /&gt;
* Nvidia GeForce 4 series او ATI Radeon 8xxx series (بسعة 64 ميجابايت ومتوافق مع DirectX 9.0)&lt;br /&gt;
* DirectX 9.0 كرت صوت متوافقة مع&lt;br /&gt;
* لوحة مفاتيح (كيبورد) و ماوس&lt;br /&gt;
* اتصال بلانترنت&lt;br /&gt;
&lt;br /&gt;
====متطلبات النظام الموصى بها====&lt;br /&gt;
* نظام تشغيل Windows 10&lt;br /&gt;
* معالج Intel Core 2 Duo او ما يعادلة من AMD&lt;br /&gt;
* 2 جيجابايت ذاكرة وصول عشوائي (RAM)&lt;br /&gt;
* تثبيت نظيف ل Grand Theft Auto: San Andreas, اصدار 1.0 (امريكي او اوروبي)&lt;br /&gt;
* &amp;gt;5 جيجابايت مساحة فارغة علي القرص الصلب (تذكر أن MTA تخزن الملفات مؤقتًا من السيرفرات التي تلعب فيها وتتطلب مساحة علي القرص الصلب)&lt;br /&gt;
* Nvidia GeForce FX series او اعلي, ATI Radeon 9xxx series او اعلي, متوافق مع Pixel Shader 2.0&lt;br /&gt;
* DirectX 9.0 كرت صوت متوافقة مع&lt;br /&gt;
* لوحة مفاتيح (كيبورد) و ماوس&lt;br /&gt;
* اتصال انترنت سريع (لأجل لعب سلسل)&lt;br /&gt;
&lt;br /&gt;
====ملاحظات====&lt;br /&gt;
* يعتبر الحد الأدنى من متطلبات النظام هو الحد الأدنى لـ MTA: San Andreas, ويمكن ان يعتمد الاداء علي مودات التي تعمل في العبة و عدد الاعبيين&lt;br /&gt;
* للأداء مع تحميل اضافي, ينصح ب رام اكثر.&lt;br /&gt;
* تأكد من ان نظام الشتغيل علي احدث اصدار.&lt;br /&gt;
* تأكد من التوجه إلى صفحة [[Known_Issues_-_FAQ|المشاكل الشائعة]] إذا كان لديك مشاكل, او انضم إلينا علي [https://discord.com/invite/mtasa ديسكورد] و توجة الي غرفة help-support#.&lt;br /&gt;
&lt;br /&gt;
==تثبيت العبة==&lt;br /&gt;
# إذا لم تكن قد قمت بذلك بالفعل, قم بتنزيل لعبة MTA:SA من صفحة التحميل [http://mtasa.com mtasa.com].&lt;br /&gt;
# قم بتشغيل برنامج التثبيت, بالنسبة لنظامي التشغيل Windows Vista و 7 ، يتطلب التشغيل بصلحيات المسؤول. (سوف يطلب برنامج التثبيت.)&lt;br /&gt;
# يجب عليك قبول الترخيص الذي يأتي مع MTA:SA (GPLv3).&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;
#** '''اضافة SDK''' التطوير لإنشاء اضافات لسيرفر MTA الخاص بك, تطلب هذه الاضافة معرفة ب ++C .&lt;br /&gt;
#* '''مجموعة قائمة البداية''' تنشئ مجموعة القائمة البداية للأضافات المثبة.&lt;br /&gt;
#* '''أيقونة سطح المكتب''' تضيف ايقونة لمشغل العبة علي سطح المكتب.&lt;br /&gt;
# ستتم مطالبتك بعد ذلك بمجلد لتثبيت المود فية. يمكن أن يكون هذا في أي مكان ولا يجب أن يكون في مجلد San Andreas.&lt;br /&gt;
# بعد ذلك ، سيُطلب منك المجلد الذي قمت بتثبيت San Andreas. المسار الافتراضي هو: '''C:\Program Files\Rockstar Games\GTA San Andreas'''.&lt;br /&gt;
# عند اكتمال التثبيت ، سيتم منحك خيار بدء تشغيل MTA: San Andreas على الفور. اختر خيارك ثم اضغط '''انهاء'''.&lt;br /&gt;
# ستكون قادرًا على تشغيل ''MTA San Andreas'' من قائمة البداية اذا كنت ترغب في العب.&lt;br /&gt;
&lt;br /&gt;
==تشغيل العبة==&lt;br /&gt;
# قم بتشغيل Multi Theft Auto عن طريق الضغط علي الايقونة الموجود في قائمة البداية الخاصة بك تحت اسم '''MTA:San Andreas'''.&lt;br /&gt;
# GTA: San Andreas سيتم تشغيلها بمجرد ان يتم تحميلها, سوف تقدم لك مع القائمة الرئيسية لـ MTA:SA. هنا ستجد عدة خيارات (يمكنك أيضًا مشاهدة برنامج تعليمي إرشادي [http://www.youtube.com/watch?v=ShiqnOazNYw هنا]):&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;0&amp;quot; align=&amp;quot;center&amp;quot;&lt;br /&gt;
&lt;br /&gt;
| width=&amp;quot;188&amp;quot; |&lt;br /&gt;
[[Image:Server_Browser.jpg|280px]]&lt;br /&gt;
| width=&amp;quot;380&amp;quot; |&lt;br /&gt;
&amp;lt;font size=&amp;quot;-1&amp;quot; face=&amp;quot;tahoma,helvetica,arial,sans-serif&amp;quot;&amp;gt;'''متصفح الخوادم''' – يتيح لك تلقي قائمة بلسيرفرات المتاحة للعب فيها. &amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| width=&amp;quot;188&amp;quot; |&lt;br /&gt;
[[Image:Host_Game.jpg|280px]]&lt;br /&gt;
| width=&amp;quot;380&amp;quot; |&lt;br /&gt;
&amp;lt;font size=&amp;quot;-1&amp;quot; face=&amp;quot;tahoma,helvetica,arial,sans-serif&amp;quot;&amp;gt;'''إستضافة خادم''' – يسمح لك بتشغيل خادم محلي (local server). &amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| width=&amp;quot;188&amp;quot; |&lt;br /&gt;
[[Image:Menu_Settings.JPG|280px]]&lt;br /&gt;
| width=&amp;quot;380&amp;quot; |&lt;br /&gt;
&amp;lt;font size=&amp;quot;-1&amp;quot; face=&amp;quot;tahoma,helvetica,arial,sans-serif&amp;quot;&amp;gt;'''الإعدادات '''– يتيح لك ذلك تغيير اسمك داخل العبة وتخصيص عناصر التحكم وضبط إعدادات العرض.&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| width=&amp;quot;188&amp;quot; |&lt;br /&gt;
[[Image:About_Menu.jpg|280px]]&lt;br /&gt;
| width=&amp;quot;380&amp;quot; |&lt;br /&gt;
&amp;lt;font size=&amp;quot;-1&amp;quot; face=&amp;quot;tahoma,helvetica,arial,sans-serif&amp;quot;&amp;gt;'''حول '''– تمنحك قائمة بالمساهمين في المشروع.&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| width=&amp;quot;188&amp;quot; |&lt;br /&gt;
[[Image:Map_Editor.jpg|280px]]&lt;br /&gt;
| width=&amp;quot;380&amp;quot; |&lt;br /&gt;
&amp;lt;font size=&amp;quot;-1&amp;quot; face=&amp;quot;tahoma,helvetica,arial,sans-serif&amp;quot;&amp;gt;'''محرر الخريطة '''– يتيح لك هذا إنشاء خرائطك الخاصة ، كاملة مع نقاط التحقق , المنحدرات , والشاحنات الصغيرة والمجسمات الاخري. يمكن بعد ذلك تحميلها علي السيرفر بحيث يمكنك تشغيلها مع أشخاص أخرين.&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| width=&amp;quot;188&amp;quot; |&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
| width=&amp;quot;380&amp;quot; |&lt;br /&gt;
&amp;lt;font size=&amp;quot;-1&amp;quot; face=&amp;quot;tahoma,helvetica,arial,sans-serif&amp;quot;&amp;gt;'''غادر '''– يتم ارجاعك الي سطح المكتب الخاص بك.&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
أسهل طريقة للعب اللعبة هي النقر علي '''متصفح الخوادم''' في القائمة. إذا لم تظهر السيرفرات, فاضغط علي زر '''تحديث''' و MTA سوف تبحث عن السيرفرات, يتم عرضهم في قائمة.&lt;br /&gt;
&lt;br /&gt;
* تحت قائمة '''الاسم''', يتم عرض اسم كل خادم.&lt;br /&gt;
* تحت قائمة '''الاعبين''', يتم عرض عدد اللاعبين وسعة السيرفر القصوى, بتنسيق [العدد الحالي] / [الحد الاقصي].&lt;br /&gt;
* قائمة '''بنق(سرعة)''' يعرض سرعة الاتصال, او وقت الإستجابة, بين جهازك والخادم. البنق هو مقياس للواقت الذي يستغرقة استلام &amp;quot;مجموعات&amp;quot; من المعلومات مرة أخرى من الخادم بعد إرسالها, لذلك البنق العالي معناه انك ستواجه تجربة تأخير اكثر علي هذا السيرفر تحديدا. بشكل عام , يجب ان يحتوي السيرفر الأقرب الي مكانك علي بنق اقل.&lt;br /&gt;
* '''المضيف''' هو عنوان IP للخادم. يمكنك استخدام هذا العنوان للاتصال بنفس الخادم عبر خيار اتصال سريع في القائمة الرئيسية.&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;
MTA:SA يقدم نظاما شاملا يسمح لمنشئي الخرائط بتعديل العديد من عناصر العبة من أجل إنشاء أنواع العب المبتكرة.تتضمن اللعبة أكبر عدد ممكن من عناصر العب الفردي ولكن بعض الجوانب مختلفة.&lt;br /&gt;
&lt;br /&gt;
الاعبيين الاخرين علي الخريطة هم اعدائك , او حلفائك اذا فريق لعب. يمكنك التحدث معهم باستخدام صندوق الدردشة الموجود في الزاوية اليسري من الشاشة بالضغط علي '''T'''. اذا كنت تريد الدردشة مع اعضاء فريقك فقط, اضغط علي '''Y'''.&lt;br /&gt;
&lt;br /&gt;
يسمح محرر خرائط MTA لمنشئي الخرائط بإضافة مجسمات GTA المتنوعة الي خرائطهم بما في ذالك الطرق, البرميل المتفجرة, الرافعات, المباني, التلال وأكثر. ليس هذا فقط, ولكن المجسمات يمكن تحريكها بأستخدام سكربت, تغير النموذج وإخفائها. يوفر هذا قدرًا كبيرًا من المرح والتنوع في العب. &lt;br /&gt;
&lt;br /&gt;
الضغط المطول علي (Tab) سوف يعرض لوحة النتائج. بشكل افتراضي, يتم عرض الأسماء والبنق فقط, ولكن يمكن للسكربتات إضافة أعمدة إضافية خاصة بنظام العب الذي المحدد. علي سبيل المثال, نظام لعب (deathmatch) سيحتوي بلتأكيد علي عمود يحتوي علي إجمالي عدد القتلى, ولكن قد يختار مصمم الخريطة إضافة أعمدة إضافية لعدد مرات موتك والمدة التي قضيتها في اللعب, من أجل وضع نتأجك بشكل صحيح.&lt;br /&gt;
&lt;br /&gt;
==التحكم الافتراضي==&lt;br /&gt;
&lt;br /&gt;
===ازرار داخل العبة===&lt;br /&gt;
&lt;br /&gt;
* F8 (او مفتاح ~) - لوحة التحكم (Console)&lt;br /&gt;
* F11 - يعرض خريطة سان اندرس ''(يتم استخدام القائمة التالية عندما تكون الخريطة جاهزة)''&lt;br /&gt;
**لوحة الارقام (numpad)  /- - تكبير وتصغير&lt;br /&gt;
**لوحة الارقام (numpad) 4, 8, 6, 2 - تحرك الخريطة الي اليسار, الاعلي, اليمين, الاسفل&lt;br /&gt;
**لوحة الارقام (numpad) 0 - التبديل بين تببع الاعب المحلي (local player) (تتبع الخريطة للاعب) و الحركة الحرة (تبقي الخريطة ثابتة) &lt;br /&gt;
* F12 - اخذ لقطة من الشاشة&lt;br /&gt;
* T - دردشة&lt;br /&gt;
* Y - دردشة الفريق&lt;br /&gt;
&lt;br /&gt;
===ازرار خاصة بلمودات===&lt;br /&gt;
تعتمد هذه المفاتيح على السكربتات التي تعمل علي الخادم&lt;br /&gt;
&lt;br /&gt;
* F9 - المساعدة داخل اللعبة (مود Help manager)&lt;br /&gt;
* Z - اضغط للتحدث, إذا تم تفعيل الصوت علي السيرفر.&lt;br /&gt;
* TAB - قائمة الاعبيين (اذا كان مود [[Scoreboard]] يعمل علي السيرفر)&lt;br /&gt;
&lt;br /&gt;
==اومر لوحة التحكم (Console)==&lt;br /&gt;
&lt;br /&gt;
'''الاختصرات الافتراضية''' اختصارات التحكم الافتراضية في قائمة الاعدادات&lt;br /&gt;
&lt;br /&gt;
اضغط علي '''~ (علامة التلدة)''' او '''F8''' للوصول إلى وحدة التحكم (console), ثم اكتب أمرًا متبوعًا بأي معلمات ضرورية (إذا كان قابلا للتطبيق) اضغط على Enter.&lt;br /&gt;
&lt;br /&gt;
;'''maps''' :يعرض قائمة بجميع الخرائط المتوفرة على السيرفر. &lt;br /&gt;
&lt;br /&gt;
;'''nick [الاسم (nickname)]''' :هذا يغير الاسم الخاص بك اثناء العب إلي أي شئ تكتبة في المعلومات بعد الامر.&lt;br /&gt;
&lt;br /&gt;
;'''msg [الاسم (nickname)] [الرسالة (message)]''' او '''pm [الاسم (nickname)] [الرسالة (message)]''' :يؤدي هذا إلى إرسال رسالة خاصة إلى الشخص الذي تحدده في خانة[الاسم (nickname)] .يمكن فقط للشخص الذي تحدده رؤية الرسالة. كل من '''msg''' و '''pm''' تؤدي نفس الوظيفة.&lt;br /&gt;
&lt;br /&gt;
;'''quit''' او '''exit''' :هذا يفصل الاتصال من السيرفر ويرجعك الي سطح المكتب. يؤدي نفس وظيفة &amp;quot;غادر&amp;quot; في القائمة الرئيسية.&lt;br /&gt;
&lt;br /&gt;
;'''ver''' :هذا يعرض رقم الاصدار ومعلومات حقوق النشر للبرنامج.&lt;br /&gt;
&lt;br /&gt;
;'''sver''' :هذا يعرض رقم الاصدار في السيرفر المتصل بة.&lt;br /&gt;
&lt;br /&gt;
;'''time''' :هذا يعرض الواقت الحالي.&lt;br /&gt;
&lt;br /&gt;
;'''disconnect''' :هذا يفصلك من السيرفر ويرجعك الي القائمة الرئيسية.&lt;br /&gt;
&lt;br /&gt;
;'''say [نص text]''' :يمكنك هذا الامر من مواصلة التحدث إلي الاشخاص صندوق الدردشة أثناء فتح وحدة التحكم (console).&lt;br /&gt;
&lt;br /&gt;
;'''ignore [الاسم nickname]''' :لن يعرض هذا أي نص يكتبه اللاعب الذي ترغب في تجاهله. للتوقف عن تجاهل اللاعب, اكتب '''ignore [الاسم nickname]''' مرة اخري.&lt;br /&gt;
{{AR/Tip|يمكنك استخدام هذه الأوامر في مربع الدردشة عن طريق وضع / (الشرطة المائلة للأمام) أمامها.}}&lt;br /&gt;
&lt;br /&gt;
يمكن رؤية قائمة أوامر وحدة التحكم (console) عن طريق الكتابة '''help''' في وحدة التحكم (console) و الضغط علي Enter. قد تحتوي الخريطة الحالية أيضًا على أوامر إضافية يمكن الوصول إليها عن طريق الكتابة '''commands''' في وحدة التحكم (console).&lt;br /&gt;
&lt;br /&gt;
لمعلومات اكثر عن اوامر اكثر انظر: [[Client Commands | اوامر الاعب]]&lt;br /&gt;
&lt;br /&gt;
==اكواد الخطأ  ومعناها==&lt;br /&gt;
=== اخطأ التحميل ===&lt;br /&gt;
:{| class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;width: auto; table-layout: fixed;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!الكود&lt;br /&gt;
!scope=&amp;quot;col&amp;quot; class=&amp;quot;unsortable&amp;quot; | المعني&lt;br /&gt;
|-&lt;br /&gt;
|0&lt;br /&gt;
|UNKNOWN_ERROR - خطا غير معروف&lt;br /&gt;
|-&lt;br /&gt;
|1&lt;br /&gt;
|INVALID_FILE_DESCRIPTORS &lt;br /&gt;
|-&lt;br /&gt;
|2&lt;br /&gt;
|INVALID_MAX_FILE_DESCRIPTOR&lt;br /&gt;
|-&lt;br /&gt;
|3&lt;br /&gt;
|INVALID_SELECT_RETURN&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|INVALID_INITIAL_MULTI_PERFORM&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|INVALID_MULTI_PERFORM_CODE&lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
|INVALID_MULTI_PERFORM_CODE_NEW_DOWNLOADS&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|UNEXPECTED_CURL_MESSAGE&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|UNABLE_TO_CONNECT - غير قادر علي الاتصال&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|UNABLE_TO_DOWNLOAD_FILE - غير قادر علي تحميل الملف&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|FAILED_TO_INITIALIZE_DOWNLOAD - فشل بدء التحميل&lt;br /&gt;
|}&lt;br /&gt;
===أخطاء فادحة===&lt;br /&gt;
:{| class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;width: auto; table-layout: fixed;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!الكود&lt;br /&gt;
!scope=&amp;quot;col&amp;quot; class=&amp;quot;unsortable&amp;quot; | المعني&lt;br /&gt;
|-&lt;br /&gt;
|1&lt;br /&gt;
|no local player model on ingame event - لا يوجد نموذج الاعب المحلي في حدث داخل العبة&lt;br /&gt;
|-&lt;br /&gt;
|2&lt;br /&gt;
|no local player on ingame event - لا يوجد الاعب المحلي في حدث داخل العبة&lt;br /&gt;
|-&lt;br /&gt;
|3&lt;br /&gt;
|server downloads disabled - تعطل تحميل السيرفر&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|no local player model on player-list packet - لا يوجد نموذج الاعب المحلي في مجموعة معلومات قائمة الاعبيين&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|no local player on player-list packet - لا يوجد لاعب محلي في مجموعة معلومات الاعبيين&lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
|invalid custom data length on entity-add packet - طول البيانات المخصصة غير صالح على اضافة مجموعة المعلومات&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|invalid bitstream data on entity-add packet &lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|system entity on entity-add packet&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|failed to create object on entity-add packet&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|failed to create pickup on entity-add packet&lt;br /&gt;
|-&lt;br /&gt;
|11&lt;br /&gt;
|failed to create vehicle on entity-add packet&lt;br /&gt;
|-&lt;br /&gt;
|12&lt;br /&gt;
|invalid team-name length on entity-add packet&lt;br /&gt;
|-&lt;br /&gt;
|13&lt;br /&gt;
|invalid lua-event name length in lua-event packet&lt;br /&gt;
|-&lt;br /&gt;
|14&lt;br /&gt;
|invalid resource name length in resource-start packet&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===اخطأ 'عدم القدرة علي دخول المركبة'===&lt;br /&gt;
:{| class=&amp;quot;wikitable sortable&amp;quot; style=&amp;quot;width: auto; table-layout: fixed;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!الكود&lt;br /&gt;
!scope=&amp;quot;col&amp;quot; class=&amp;quot;unsortable&amp;quot; | المعني&lt;br /&gt;
|-&lt;br /&gt;
|1&lt;br /&gt;
|script cancelled - الغاء من السكربت&lt;br /&gt;
|-&lt;br /&gt;
|2&lt;br /&gt;
|script cancelled (jack) - الغاء السرقة من السكربت&lt;br /&gt;
|-&lt;br /&gt;
|3&lt;br /&gt;
|current occupier is entering/exiting - الراكب الحالي يدخل او يخرج&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|invalid seat - مقعد خطأ&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|not close enough - غير قريب بما يكفي&lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
|already in a vehicle - في المركبة بلفعل&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|already entering/exiting - يدخل او يخرج بلفعل&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|invalid vehicle (trailer) - مركبة خطا (مقطورة)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==خاص: تشغيل ام تي اي علي لينكس او ماك؟==&lt;br /&gt;
اذا كنت تستخدم انظمة اخري , و تريد ان تشغل العبة علي الكمبيوتر, من فضلك اقراء [[Client on Linux Manual | تشغيل العبة علي لينكس]] او [[Client on Mac OS X Manual | تشغيل العبة علي ماك]].&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
[[cs:Client Manual]]&lt;br /&gt;
[[de:MTA DM Client Anleitung]]&lt;br /&gt;
[[en:Client Manual]]&lt;br /&gt;
[[es:Manual Cliente Deathmatch]]&lt;br /&gt;
[[fr:Manuel Client]]&lt;br /&gt;
[[hu:Client Manual]]&lt;br /&gt;
[[it:Manuale del Client]]&lt;br /&gt;
[[nl:Deathmatch Client Manual]]&lt;br /&gt;
[[pl:Client Manual]]&lt;br /&gt;
[[pt-br:Manual do Cliente]]&lt;br /&gt;
[[ru:Deathmatch Client Manual]]&lt;br /&gt;
[[zh-cn:客户端手册]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Support]]&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Modules&amp;diff=80605</id>
		<title>Modules</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Modules&amp;diff=80605"/>
		<updated>2024-09-28T19:17:49Z</updated>

		<summary type="html">&lt;p&gt;Prox: /* How to write modules? */  removing useless parts that does not exist and rename the reference&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Modules are extensions for Multi Theft Auto's Lua core, allowing the integration and use of custom Lua functions that have been written in C++, and compiled as a DLL or SO file. Modules are commonly used to create functions for such purposes that Multi Theft Auto lacks, such as sockets. All modules listed here are not distributed with Multi Theft Auto, and must be manually installed.&lt;br /&gt;
&lt;br /&gt;
==Modules list==&lt;br /&gt;
&amp;lt;!-- You can view a list of all the documented modules in this wiki [[:Category:Modules|here]]. --&amp;gt;&lt;br /&gt;
You can view a list of all the documented modules here:&lt;br /&gt;
{{ModulesList}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
==Modules SDK==&lt;br /&gt;
To be able to create your own modules, you must use the Modules SDK. You can download it from one of the links below - choose a link in accordance with your server's operating system.&lt;br /&gt;
&lt;br /&gt;
* Linux&lt;br /&gt;
** [http://files.mtasa.com/apps/1.0/dm/ml_devkit.tar.gz Official]&lt;br /&gt;
*** (Delete the .d files, and add #include &amp;lt;cstring&amp;gt; to Common.h)&lt;br /&gt;
**** (On 64bit add -m32 to CPPFLAGS and LDFLAGS lines in Makefile)&lt;br /&gt;
* Microsoft Windows&lt;br /&gt;
** [http://www.mediafire.com/?b8b3asgegn0xkm4 Mirror (Mediafire)]&lt;br /&gt;
** [https://mega.co.nz/#!nBNGUCgQ!3AHEJt684Heu9bN5de8xwAQ3h-qq5-V6fjUeU7rj5hI Mirror (MEGA)]&lt;br /&gt;
&lt;br /&gt;
===SDK Functions===&lt;br /&gt;
*Currently in there:&lt;br /&gt;
**Base:&lt;br /&gt;
***HelloWorld&lt;br /&gt;
**MySQL&lt;br /&gt;
***MySQLCreate&lt;br /&gt;
***MySQLOpen&lt;br /&gt;
***MySQLDestroy&lt;br /&gt;
***MySQLQuery&lt;br /&gt;
***MySQLSafeString&lt;br /&gt;
&lt;br /&gt;
===Using Lua inside of Linux Modules===&lt;br /&gt;
If you want to make use of Lua functions as exported by the MTA Server you have to link against the official deathmatch.so file. Then the export resolution during dlopen of your module will respect the symbol table of deathmatch.so which contains all of the Lua exports. '''Do NOT link against a static version of a freshly-compiled Lua library because that will create code conflicts and potentially crashes in the long run.'''&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==How to write modules?==&lt;br /&gt;
* [[Modules_Introduction|Modules Introduction]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Scripting Concepts]]&lt;br /&gt;
[[Category:Modules]]&lt;br /&gt;
&lt;br /&gt;
[[hu:Modules]]&lt;br /&gt;
[[pl:Modules]]&lt;br /&gt;
[[pt-br:Módulos]]&lt;br /&gt;
[[ru:Modules]]&lt;br /&gt;
[[ro:Module]]&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/%D8%A7%D9%84%D8%B5%D9%81%D8%AD%D9%87_%D8%A7%D9%84%D8%B1%D8%A6%D9%8A%D8%B3%D9%8A%D9%87&amp;diff=80604</id>
		<title>AR/الصفحه الرئيسيه</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/%D8%A7%D9%84%D8%B5%D9%81%D8%AD%D9%87_%D8%A7%D9%84%D8%B1%D8%A6%D9%8A%D8%B3%D9%8A%D9%87&amp;diff=80604"/>
		<updated>2024-09-28T19:15:29Z</updated>

		<summary type="html">&lt;p&gt;Prox: transtion improvment&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{| width=&amp;quot;100%&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
[[File:Mtalogo.png|right|100px]]&lt;br /&gt;
&lt;br /&gt;
أهلاً بك في الويكي الخاص بـ '''Multi Theft Auto''' , ستجد هنا معلومات غنية عن إستخدام Multi Theft Auto&lt;br /&gt;
&lt;br /&gt;
هناك العديد من [[ AR/كيف يمكنك المساعدة |الأشياء التي يمكنك القيام بها للمساعدة]] علي تحسين ام تي اي - إنشاء خريطة - او تطوير نوع لعب , او المساعدة في كتابة السكربتات , او كتابة مثال للأكواد , او , او كتابة شروحات تعليمية او لعب ام تي اي والابلاغ عن الاخطاء التي تجدها&lt;br /&gt;
&lt;br /&gt;
إذا كان لديك أسئلة أو مشاكل تتلعق بالبرمجة , يمكنك السؤال على : [[Discord]] أو [https://forum.multitheftauto.com/forum/134-%D8%A7%D9%84%D8%A8%D8%B1%D9%85%D8%AC%D8%A9/ قسم البرمجة الخاص باللغة العربية]&lt;br /&gt;
&lt;br /&gt;
[ توقف عن اللعب مع نفسك ]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
{| width=&amp;quot;100%&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
|-&lt;br /&gt;
|width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot; |&amp;lt;div style=&amp;quot;border: 1px solid #D8D8D8; padding:4px 8px 8px 8px; margin:10px; background: #FFFCF2;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:left; width: 32px;&amp;quot;&amp;gt;[[File:Input-gaming.png‎]]&amp;lt;/div&amp;gt;&lt;br /&gt;
=== لعب ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;background: #FFEEAA; border: 1px solid #FFCD19;&amp;quot;&amp;gt;&lt;br /&gt;
[[File:Go-down.png|link=http://mtasa.com/]] ''' [http://mtasa.com/ تحميل لعبة ام تي اي اخر اصدار  {{Current Version|full}}]'''&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* [[Where to buy GTASA | اين يمكن شراء جي تي اي سان اندرس]]&lt;br /&gt;
* [[AR/دليل اللاعب| دليل اللاعب (Client)]] [[Image:Sa.png|اللغة العربية|20px]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
* [[Changes_in_{{padleft:|3|{{Current Version|full}}}}| {{padleft:|3|{{Current Version|full}}}} التغيرات فى ]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
* [[Known_Issues_-_FAQ|مشاكل معروفه]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
&amp;lt;!-- لم تعد متوفر في صفحة الويكي الاصلية&lt;br /&gt;
* [[Upgrading_from_MTA:Race|MTA:SA {{padleft:|3|{{Current Version|full}}}} الى MTA:RACE المهاجرة من]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
* [[Server_Manual| دليل السيرفر(Server)]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
* [[Map_manager|ادارة الخرائط]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
&lt;br /&gt;
=== صنع الخرائط ===&lt;br /&gt;
*[[Resource:Editor|دليل]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
*[[Resource:Editor/EDF|EDF صيغة]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
*[[Resource:Editor/Plugins|الاضافات]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
*[[Resource:Editor#FAQ|أسئلة وأجوبة]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 1px solid #D8D8D8; padding:4px 8px 8px 8px; margin:10px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:left; width: 32px;&amp;quot;&amp;gt;[[File:Package-x-generic.png‎]]&amp;lt;/div&amp;gt;&lt;br /&gt;
=== قواعد البيانات ===&lt;br /&gt;
يوضح هذا القسم جميع إمكانيات Lua التي توفرها MTA او المودات&lt;br /&gt;
* [[:Category:Resource|كتالوج المودات]] - يجب أن تتعلم هذه لإنشاء البرامج النصية المناسبة&lt;br /&gt;
* [[Client side scripts|سكربتات العميل]]&lt;br /&gt;
* [[Modules|مكاتب dll ]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 1px solid #D8D8D8; padding:4px 8px 8px 8px; margin:10px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:left; width: 32px;&amp;quot;&amp;gt;[[File:Applications-development.png‎‎‎]]&amp;lt;/div&amp;gt;&lt;br /&gt;
===  تطوير Multi Theft Auto ===&lt;br /&gt;
[[File:Go-down.png|link=http://nightly.mtasa.com/]] [http://nightly.mtasa.com/ Nightly builds]&lt;br /&gt;
* [[Compiling_MTASA|Compiling MTASA on Windows]]&lt;br /&gt;
* [[Building_MTASA_Server_on_Mac_OS_X|Compiling MTASA on Mac OS X]]&lt;br /&gt;
* [[Building_MTASA_Server_on_GNU_Linux|Compiling MTASA on GNU/Linux]]&lt;br /&gt;
* [[Coding guidelines]]&lt;br /&gt;
* [https://github.com/multitheftauto/mtasa-blue Main Github repository]&lt;br /&gt;
* [[Roadmap]]&lt;br /&gt;
* [http://bugs.mtasa.com/ Bugtracker]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 1px solid #D8D8D8; padding:4px 8px 8px 8px; margin:10px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:left; width: 32px;&amp;quot;&amp;gt;[[File:Applications-office.png‎]]&amp;lt;/div&amp;gt;&lt;br /&gt;
=== ويكي- كيف يمكنك المساعدة ===&lt;br /&gt;
* [[:Category:Incomplete|تكملة الوثائق الغير مكتملة]]&lt;br /&gt;
* [[:Category:Needs_Example |اضف مثال لل functions ولل events]].&lt;br /&gt;
* [[:Category:Needs Checking|مراجعة والتحقق من الصفحات التي تحتاج التحقق]]&lt;br /&gt;
* كتابة دروس لمساعدة الناس&lt;br /&gt;
* ترجمة صفحات الويكي&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 1px solid #D8D8D8; padding:4px 8px 8px 8px; margin:10px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:left; width: 32px;&amp;quot;&amp;gt;[[File:Internet-group-chat.png‎]]&amp;lt;/div&amp;gt;&lt;br /&gt;
=== المجتمع ===&lt;br /&gt;
* [http://forum.multitheftauto.com/ المنتدى]&lt;br /&gt;
* [https://discord.com/invite/mtasa Community Discord]&lt;br /&gt;
* [https://discord.com/invite/GNN6PRtTnu Development Discord]&lt;br /&gt;
* [https://discord.gg/RygaCSD سيرفر الديسكورد ]  &lt;br /&gt;
* [http://community.mtasa.com/ MTA Community] - تنزيل ومشاركة المودات&lt;br /&gt;
* [http://twitter.com/#!/MTAQA/ Twitter] - [http://www.youtube.com/user/MTAQA Youtube] - [http://plus.google.com/102014133442331779727/ Google+] - [http://www.moddb.com/mods/multi-theft-auto-san-andreas ModDB]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
| width=&amp;quot;50%&amp;quot; style=&amp;quot;vertical-align:top;&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 1px solid #D8D8D8; padding:4px 8px 8px 8px; margin:10px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:left; width: 32px;&amp;quot;&amp;gt;[[File:Accessories-text-editor.png]]&amp;lt;/div&amp;gt;&lt;br /&gt;
===  البرمجة (Scripting) ===&lt;br /&gt;
* [[AR/مقدمه في البرمجه|مقدمه في البرمجه]] [[Image:Sa.png|اللغة العربية|20px]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
* [[Introduction to Scripting the GUI| مقدمة فى برمجة الواجهة الرسومية]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
* [[Debugging|كيفية البحث عن الأخطاء فى السكربت]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
* [[Resources|(Resources) مقدمة فى المودات]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
** [[Resource Web Access|الوصول الى المودات عن طريق الويب]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
** [[:Category:Resource|(Resources) كتالوج المودات]] [[Image:flag_us.png|اللغة الأنجليزية|20px]]&lt;br /&gt;
** [[Meta.xml]] - الذى يحدد ذلك (meta.xml) ملف التعريف (Resources) وراء كل المودات&lt;br /&gt;
** [[ACL]] - و هذا أمر حيوى لسكربتات معقدة للعمل Access Control List&lt;br /&gt;
* [[Writing_Gamemodes|Gamemodes كتابة قيم مود جديد]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:left; width: 32px;&amp;quot;&amp;gt;[[File:start-here.png]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====مكتبات====&lt;br /&gt;
* [[AR/Math|  math مكتبة ]] &lt;br /&gt;
* [[AR/String|  string مكتبة ]]&lt;br /&gt;
* [[AR/Table|  table مكتبة ]] &lt;br /&gt;
* [[AR/Other|  مكتبات اخرى ]] &lt;br /&gt;
&lt;br /&gt;
====تعلميات عامه حول LUA ====	&lt;br /&gt;
صفحات مصممه للمساعدة في فهم اللغه&lt;br /&gt;
*[http://www.lua.org/pil/index.html دليل &amp;quot;البرمجة في Lua&amp;quot;]&lt;br /&gt;
**[http://www.lua.org/manual/5.1/#index  دليل وظائف Lua]&lt;br /&gt;
*[http://lua-users.org/wiki/TutorialDirectory ويكي Lua]&lt;br /&gt;
*[http://nixstaller.berlios.de/manual/0.2/nixstaller_9.html شرح عام ل Lua من Nixstaller]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 1px solid #D8D8D8; padding:4px 8px 8px 8px; margin:10px; background:#E5E5FF;&amp;quot;&amp;gt;&lt;br /&gt;
====المراجع====&lt;br /&gt;
* [[AR/Client Scripting Functions|وظائف الـ Client]] [[Image:Sa.png|اللغة العربية|20px]] تحت الترجمه حالياّ&lt;br /&gt;
* [[Client Scripting Events|أحداث الـ Client]]&lt;br /&gt;
* [[AR/Server Scripting Functions|وظائف الـ Server]] [[Image:Sa.png|اللغة العربية|20px]] تم الترجمة جزئياً&lt;br /&gt;
* [[Server Scripting Events|أحداث الـ Server]]&lt;br /&gt;
* [[AR/وظائف_مفيدة|وظائف مفيدة]]&lt;br /&gt;
* [[MTA Classes]] - وصف مفصل لجميع أنواع MTA المخصصة&lt;br /&gt;
** [[Element|MTA Elements]] / [[Element tree]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;border: 1px solid #D8D8D8; padding:4px 8px 8px 8px; margin:10px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:left; width: 32px;&amp;quot;&amp;gt;[[File:System-file-manager.png]]&amp;lt;/div&amp;gt;&lt;br /&gt;
====[[Id|قائمة الأي دي]]====&lt;br /&gt;
*[[Animations|الحركات]]&lt;br /&gt;
*[[Character Skins|الشخصيات]]&lt;br /&gt;
*[[CJ_Clothes|CJ ملابس]]&lt;br /&gt;
*[[Garage|الكراجات]]&lt;br /&gt;
*[[Interior IDs|المحلات]]&lt;br /&gt;
*[[Material IDs|الادوات]]&lt;br /&gt;
*[[Projectiles|الصواريخ والمقذوفات]]&lt;br /&gt;
*[[Radar Blips|ايقونات الرادار]]&lt;br /&gt;
*[[Sounds|الإصوات]]&lt;br /&gt;
*[[Vehicle IDs|السيارات]]&lt;br /&gt;
*[[Vehicle Colors|الوان السيارات]]&lt;br /&gt;
*[[Vehicle Upgrades|اضافات السيارات]]&lt;br /&gt;
*[[Vehicle variants|متغيرات السيارات]]&lt;br /&gt;
*[[Weapons|الاسلحه]]&lt;br /&gt;
*[[Weather|الطقس]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;padding:4px 8px 8px 8px; margin:10px;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: flex; flex-wrap: wrap; align-items: center; padding-left: 15px; padding-right: 15px;&amp;quot; class=&amp;quot;plainlinks&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;margin-right: 1em;&amp;quot;&amp;gt;[[File:MTALogo_8ball.png||85px|link=Archive]]&amp;lt;/span&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| width=&amp;quot;100%&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot;&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;padding: 5px;&amp;quot; class=&amp;quot;plainlinks&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;ul style=&amp;quot;list-style: none; width: 200px; float: right;&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;'''About Multi Theft Auto'''&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;[[Archive| أرشيف]]&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;[[Press Coverage|تغطية صحفية]]&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;[http://code.google.com/p/mtasa-blue/people/list المطورين]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;ul style=&amp;quot;list-style: none; width: 200px; float: right;&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;'''Multi Theft Auto 0.5'''&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;[[Archive#Multi_Theft_Auto_0.5|تحميل]]&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;[[MTA 0.5r2 Known Issues|مشاكل معروفة]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;ul style=&amp;quot;list-style: none; width: 200px; float: right;&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;'''إحصائيات ويكي'''&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;{{NUMBEROFARTICLES}} مقالات&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;{{NUMBEROFPAGES}} الصفحات&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;{{NUMBEROFUSERS}} المستخدمون المسجلون&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div&amp;gt;&lt;br /&gt;
[[File:Osi symbol.png|75px|link=https://opensource.org]]&lt;br /&gt;
'''Multi Theft Auto''' هي '''مفتوحة المصدر'''.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
هذا يعني أنه يمكن لأي شخص المساهمة في جعل Multi Theft Auto أفضل! &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
__NOEDITSECTION__&lt;br /&gt;
{{Languages list|ar}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=AR/isChatVisible&amp;diff=80603</id>
		<title>AR/isChatVisible</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=AR/isChatVisible&amp;diff=80603"/>
		<updated>2024-09-28T19:09:10Z</updated>

		<summary type="html">&lt;p&gt;Prox: should works with all game versions&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Client function}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
{{New items|4.0132|1.4|&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 isChatVisible ( )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns ''true'' if the chat is visible, ''false'' otherwise.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
addCommandHandler(&amp;quot;sc&amp;quot;,&lt;br /&gt;
	function ()&lt;br /&gt;
		showChat(not isChatVisible())&lt;br /&gt;
	end)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Client_output_functions}}&lt;br /&gt;
[[ru:isChatVisible]]&lt;br /&gt;
[[en:isChatVisible]]&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=SetTimeFrozen&amp;diff=80602</id>
		<title>SetTimeFrozen</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=SetTimeFrozen&amp;diff=80602"/>
		<updated>2024-09-28T13:24:36Z</updated>

		<summary type="html">&lt;p&gt;Prox: /* Required arguments */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Client function}} &lt;br /&gt;
__NOTOC__&lt;br /&gt;
{{Added feature/item|1.6.1|1.6.0|22676| &lt;br /&gt;
This function will freeze the game time. It will affect the sky as well prevent it from changes.&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 setTimeFrozen ( bool state )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Required arguments===&lt;br /&gt;
*'''state''': if set to true it will freeze the time, false otherwise.&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Always returns ''true''.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
This example let you freeze the time&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
setTimeFrozen ( true )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Client world functions}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=SetTimeFrozen&amp;diff=80601</id>
		<title>SetTimeFrozen</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=SetTimeFrozen&amp;diff=80601"/>
		<updated>2024-09-28T13:22:32Z</updated>

		<summary type="html">&lt;p&gt;Prox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Client function}} &lt;br /&gt;
__NOTOC__&lt;br /&gt;
{{Added feature/item|1.6.1|1.6.0|22676| &lt;br /&gt;
This function will freeze the game time. It will affect the sky as well prevent it from changes.&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 setTimeFrozen ( bool state )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Required arguments===&lt;br /&gt;
*'''state''': if true it will freeze the time, false otherwise.&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Always returns ''true''.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
This example let you freeze the time&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
setTimeFrozen ( true )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Client world functions}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=SetTimeFrozen&amp;diff=80600</id>
		<title>SetTimeFrozen</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=SetTimeFrozen&amp;diff=80600"/>
		<updated>2024-09-28T13:21:20Z</updated>

		<summary type="html">&lt;p&gt;Prox: minor change&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Client function}} &lt;br /&gt;
__NOTOC__&lt;br /&gt;
{{Added feature/item|1.6.1|1.6.0|22676| &lt;br /&gt;
This function will freeze the game time. It will affect the sky as well.&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 setTimeFrozen ( bool state )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Required arguments===&lt;br /&gt;
*'''state''': if true it will freeze the time, false otherwise.&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Always returns ''true''.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
This example let you freeze the time&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
setTimeFrozen ( true )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Client world functions}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=GetElementsByType&amp;diff=80591</id>
		<title>GetElementsByType</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=GetElementsByType&amp;diff=80591"/>
		<updated>2024-09-17T16:54:16Z</updated>

		<summary type="html">&lt;p&gt;Prox: /* Required Arguments */  added building&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Server_client_function}}&lt;br /&gt;
__NOTOC__ &lt;br /&gt;
This function is used to retrieve a list of all elements of the specified type. This can be useful, as it disregards ''where'' in the element tree it is. It can be used with either the built in types (listed below) or with any custom type used in a .map file. For example, if there is an element of type &amp;quot;flag&amp;quot; (e.g. &amp;lt;flag /&amp;gt;) in the .map file, the using &amp;quot;flag&amp;quot; as the type argument would find it.&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;
table getElementsByType ( string theType, [ element startat=getRootElement() ] ) &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;section name=&amp;quot;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;
table getElementsByType ( string theType, [ element startat=getRootElement(), bool streamedIn=false ] ) &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{OOP|This function is a static function underneath the Element class.|[[Element]].getAllByType||}}&lt;br /&gt;
&lt;br /&gt;
===Required Arguments=== &lt;br /&gt;
*'''theType:''' The type of element you want a list of. This is the same as the tag name in the .map file, so this can be used with a custom element type if desired. Built in types can be found here: [[Element]]&lt;br /&gt;
**'''&amp;quot;player&amp;quot;:''' A player connected to the server&lt;br /&gt;
**'''&amp;quot;ped&amp;quot;:''' A ped&lt;br /&gt;
**'''&amp;quot;water&amp;quot;:''' A water polygon&lt;br /&gt;
**'''&amp;quot;sound&amp;quot;:''' A playing sound&lt;br /&gt;
**'''&amp;quot;vehicle&amp;quot;:''' A vehicle&lt;br /&gt;
**'''&amp;quot;object&amp;quot;:''' An object&lt;br /&gt;
**'''&amp;quot;pickup&amp;quot;:''' A pickup&lt;br /&gt;
**'''&amp;quot;marker&amp;quot;:''' A marker&lt;br /&gt;
**'''&amp;quot;colshape&amp;quot;:''' A collision shape&lt;br /&gt;
**'''&amp;quot;blip&amp;quot;:''' A blip&lt;br /&gt;
**'''&amp;quot;radararea&amp;quot;:''' A radar area&lt;br /&gt;
**'''&amp;quot;team&amp;quot;:''' A team&lt;br /&gt;
**'''&amp;quot;spawnpoint&amp;quot;:''' A spawnpoint&lt;br /&gt;
**'''&amp;quot;console&amp;quot;:''' The server Console&lt;br /&gt;
**'''&amp;quot;projectile&amp;quot;:''' A clientside projectile&lt;br /&gt;
**'''&amp;quot;effect&amp;quot;:''' A clientside effect&lt;br /&gt;
**'''&amp;quot;light&amp;quot;:''' A clientside light&lt;br /&gt;
**'''&amp;quot;searchlight&amp;quot;:''' A clientside searchlight&lt;br /&gt;
**'''&amp;quot;shader&amp;quot;:''' A shader&lt;br /&gt;
**'''&amp;quot;texture&amp;quot;:''' A texture&lt;br /&gt;
**'''&amp;quot;gui-window&amp;quot;:''' A GUI window (there's others like this for other GUI types)&lt;br /&gt;
**'''&amp;quot;building&amp;quot;:''' A building (client side only)&lt;br /&gt;
&lt;br /&gt;
==Optional Arguments==&lt;br /&gt;
{{OptionalArg}}&lt;br /&gt;
*'''startat:''' The [[element]] the search should start at. Children of this element are searched, siblings or parents will not be found. By default, this is the root element which should suit most uses.&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;
*'''streamedIn:''' If true, function will only return elements that are streamed in.&lt;br /&gt;
&amp;lt;/section&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns a ''table'' containing all the elements of the specified type. Returns an empty ''table'' if there are no elements of the specified type. Returns ''false'' if the string specified is invalid (or not a string).&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
'''Example 1:''' This example retrieves a table of the players in the server, and checks whether or not each one is in a vehicle:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
local players = getElementsByType ( &amp;quot;player&amp;quot; ) -- get a table of all the players in the server&lt;br /&gt;
for theKey,thePlayer in ipairs(players) do -- use a generic for loop to step through each player&lt;br /&gt;
   if ( isPlayerInVehicle ( thePlayer ) ) then -- if the player is in a vehicle, announce it&lt;br /&gt;
      outputChatBox ( getPlayerName ( thePlayer ) .. &amp;quot; is in a vehicle&amp;quot; )&lt;br /&gt;
   else -- if the player isn't in a vehicle, announce that he/she is on foot&lt;br /&gt;
      outputChatBox ( getPlayerName ( thePlayer ) .. &amp;quot; is on foot&amp;quot; )&lt;br /&gt;
   end&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Example 2:''' This example retrieves a table of the teams in the server, and display them in chat:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
local teams = getElementsByType(&amp;quot;team&amp;quot;)&lt;br /&gt;
for i,team in ipairs(teams) do&lt;br /&gt;
   local teamName = getTeamName(team) -- get the team name&lt;br /&gt;
   outputChatBox(teamName) -- display the team name in chat&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Example 3:''' This shows how you could create a new element to describe a gas station:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
function createGasStations(below)&lt;br /&gt;
    local gasstations = getElementsByType ( &amp;quot;gasstation&amp;quot;, below ) -- get a table of all the gas station elements in the element tree&lt;br /&gt;
    for theKey,theGasStation in ipairs(gasstations) do &lt;br /&gt;
        local x = getElementData(theGasStation, &amp;quot;posX&amp;quot;) -- get the position of the element&lt;br /&gt;
        local y = getElementData(theGasStation, &amp;quot;posY&amp;quot;)&lt;br /&gt;
        local z = getElementData(theGasStation, &amp;quot;posZ&amp;quot;)&lt;br /&gt;
        setElementParent(createColSphere(x, y, z, 10), theGasStation) -- create a colshape for the gas station at the gas station's position&lt;br /&gt;
        addEventHandler(&amp;quot;onColShapeHit&amp;quot;, theGasStation, giveGas) -- when the player hits&lt;br /&gt;
    end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function mapLoad()&lt;br /&gt;
    createGasStations(source) -- create gas stations for the map that's just loaded&lt;br /&gt;
end&lt;br /&gt;
addEventHandler(&amp;quot;onResourceStart&amp;quot;, resourceRoot, mapLoad)&lt;br /&gt;
&lt;br /&gt;
function giveGas(hittingElement)&lt;br /&gt;
    local theGasStation = source&lt;br /&gt;
    if getElementType(hittingElement) == &amp;quot;vehicle&amp;quot; then&lt;br /&gt;
        local gas_left = getElementData(theGasStation, &amp;quot;amount&amp;quot;)&lt;br /&gt;
        local gas_speed = getElementData(theGasStation, &amp;quot;speed&amp;quot;)&lt;br /&gt;
        if gas_left &amp;gt; 0 then&lt;br /&gt;
&lt;br /&gt;
            local gas_to_remove = gas_speed &lt;br /&gt;
            if gas_left &amp;lt; gas_speed then&lt;br /&gt;
                gas_to_remove = gas_left&lt;br /&gt;
&lt;br /&gt;
            local current_vehicle_gas = getElementData(hittingElement, &amp;quot;gas&amp;quot;)&lt;br /&gt;
            current_vehicle_gas = current_vehicle_gas + gas_to_remove&lt;br /&gt;
            gas_left = gas_left - gas_to_remove&lt;br /&gt;
&lt;br /&gt;
            setElementData(hittingElement, &amp;quot;gas&amp;quot;, current_vehicle_gas)&lt;br /&gt;
            setElementData(theGasStation, &amp;quot;amount&amp;quot;, gas_left)&lt;br /&gt;
        else&lt;br /&gt;
            outputChatBox(&amp;quot;Pump is out of gas!&amp;quot;)&lt;br /&gt;
        end&lt;br /&gt;
    end&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Example 4:''' This example loops trough all connected players and redirects them to another server host:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
local serverIP = &amp;quot;99.88.77.66&amp;quot; -- Change to your server IP to redirect everyone&lt;br /&gt;
local serverPort = 22005 -- The destination server's port&lt;br /&gt;
&lt;br /&gt;
function redirectAllPlayers()&lt;br /&gt;
	for _,p in ipairs (getElementsByType(&amp;quot;player&amp;quot;)) do&lt;br /&gt;
		if p then&lt;br /&gt;
			redirectPlayer (p, serverIP, serverPort)&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
addEventHandler (&amp;quot;onResourceStart&amp;quot;, resourceRoot, redirectAllPlayers)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Element_functions}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Changes_in_1.6.1&amp;diff=80590</id>
		<title>Changes in 1.6.1</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Changes_in_1.6.1&amp;diff=80590"/>
		<updated>2024-09-17T15:02:06Z</updated>

		<summary type="html">&lt;p&gt;Prox: /* Client */  added recent functions&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;
== 2 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 '''Nico8340''')&lt;br /&gt;
* Changed [[setHelicopterRotorSpeed]] to throw a warning on use, please upgrade to [[setVehicleRotorSpeed]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/82000c34830b51ace2d14e39f3b487feb1aac1da 82000c3] by '''FileEX''')&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 '''Nicol8340''')&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;
&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;
* '''36''' new functions&lt;br /&gt;
* '''8''' new events&lt;br /&gt;
* '''2''' 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;
== 77 New Features ==&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Added [[isWorldSpecialPropertyEnabled]] and [[setWorldSpecialPropertyEnabled]] also to serverside ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
* Added [[fileGetContents]] ([https://github.com/multitheftauto/mtasa-blue/commit/22930d854ce67d84a4a3b65a61b98a9ffd3f9e38 22930d8] by '''botder''')&lt;br /&gt;
* Added new object functions and updated existing to be shared&lt;br /&gt;
:* Added [[isObjectMoving]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/7c939adb892c08836462a78cd9b987884cdb49ee 7c939ad] by '''FileEX''')&lt;br /&gt;
:* Added [[breakObject]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/aa1a7853f46fc796a94f38b7df2a5293fb941ba2 aa1a785] by '''FileEX''')&lt;br /&gt;
:* Added [[respawnObject]] and [[toggleObjectRespawn]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/9d65bb673c4df16def27e97a4af74d3b0c7eedc9 9d65bb6] by '''FileEX''')&lt;br /&gt;
:* Added [[isObjectRespawnable]] ([https://github.com/multitheftauto/mtasa-blue/commit/9d65bb673c4df16def27e97a4af74d3b0c7eedc9 9d65bb6] by '''FileEX''')&lt;br /&gt;
&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 [[pathListDir]], [[pathIsFile]], [[pathIsDirectory]] ([https://github.com/multitheftauto/mtasa-blue/commit/74781c6295b5b6dc81cd95d4cfab7900d88d7524 74781c6] by '''Tracer''')&lt;br /&gt;
* Added [[setMarkerTargetArrowProperties]], [[getMarkerTargetArrowProperties]] ([https://github.com/multitheftauto/mtasa-blue/commit/071378ec4326408a9520c79c96befca995d097f6 071378e] by '''FileEX''')&lt;br /&gt;
* Added new timer functions ([https://github.com/multitheftauto/mtasa-blue/commit/69aa420f21fde3ac56e3d3bbc62ef0f060295c0a 69aa420] by '''jvstns''')&lt;br /&gt;
:* [[setTimerPaused]]&lt;br /&gt;
:* [[isTimerPaused]]&lt;br /&gt;
* Added [[resetWorldProperties]]  ([https://github.com/multitheftauto/mtasa-blue/commit/6df889e78328b80f8e4bdc02f8761472cf87c54c 6df889e] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
=== Client ===&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;
&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;
&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;
&lt;br /&gt;
* Added 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;
* Added buildings 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;
:* [[removeAllGameBuildings]] &lt;br /&gt;
:* [[restoreAllGameBuildings]] &lt;br /&gt;
&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;
&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;
* Added [[processLineAgainstMesh]] ([https://github.com/multitheftauto/mtasa-blue/commit/acb80a3945d0d5e0230b8a41394a3fe3e70b8d0b acb80a3] by '''Pirulax''')&lt;br /&gt;
* Added [[resetPedVoice]] ([https://github.com/multitheftauto/mtasa-blue/commit/18986a4542db5eb72f6d0dfffb80cb8bb6eb1442 18986a4] by '''Tracer''')&lt;br /&gt;
* Added [[fxCreateParticle]] ([https://github.com/multitheftauto/mtasa-blue/commit/8f2730d2e260c3319cb51101c6aedb45e22bbd89 8f2730d] by '''FileEX''')&lt;br /&gt;
* Added [[getPlayerScriptDebugLevel]] to client-side ([https://github.com/multitheftauto/mtasa-blue/commit/8403da54ecfd20d6b9740fb79d90ac936d316112 8403da5] by '''Nico8340''')&lt;br /&gt;
* Added [[setVehicleWheelsRotation]] ([https://github.com/multitheftauto/mtasa-blue/commit/aeb113d269fffee7d9ac435ce87b51e905e9efa6 aeb113d] by '''gta191977649''')&lt;br /&gt;
&lt;br /&gt;
* Added 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;
* Added [[onClientCoreCommand]] event ([https://github.com/multitheftauto/mtasa-blue/commit/b2cf02943924c4972d2a695cdbfd7c9873fc3cbb b2cf029] by '''Pieter-Dewachter''')&lt;br /&gt;
* Added [[getVehicleEntryPoints]] ([https://github.com/multitheftauto/mtasa-blue/commit/bf588c163cd5bc134771e3842a6585212f06307f bf588c1] by '''MegadreamsBE''')&lt;br /&gt;
&lt;br /&gt;
* Added new 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;
* Added [[enginePreloadWorldArea]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b72fb9d3c9e6813cdf56e53d1a1e72958abd3cf 5b72fb9] by '''MegadreamsBE''')&lt;br /&gt;
&lt;br /&gt;
* Added new world 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;
&lt;br /&gt;
* Added new functions related to element bone ([https://github.com/multitheftauto/mtasa-blue/commit/10098b0984bf5d5955ea1764e28f616c8a60714f 10098b0] by '''gownosatana''')&lt;br /&gt;
:* [[setElementBoneQuaternion]] &lt;br /&gt;
:* [[getElementBoneQuaternion]]&lt;br /&gt;
&lt;br /&gt;
=== Server ===&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 [[aclObjectGetGroups]] ([https://github.com/multitheftauto/mtasa-blue/commit/cf46bd8487bdb2d0cafdab1f43936357f670fe10 cf46bd8] by '''Tracer''')&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;
&lt;br /&gt;
* Added new acl account features ([https://github.com/multitheftauto/mtasa-blue/commit/545f54b6ae0bfc721abba12402ad3787ed9ae811 545f54b] by '''Tracer''')&lt;br /&gt;
:* [[onAccountCreate]]&lt;br /&gt;
:* [[onAccountRemove]]&lt;br /&gt;
:* [[getAccountType]]&lt;br /&gt;
&lt;br /&gt;
* Added [[onPlayerTriggerInvalidEvent]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b4122d35f725e4d258b408253c93e7cbd2ec783 5b4122d] by '''Lpsd''')&lt;br /&gt;
&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;
== 76 Changes and Bug Fixes ==&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* '''[Deprecation]''' 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 '''Nico8340''')&lt;br /&gt;
* '''[Deprecation]''' Changed [[setHelicopterRotorSpeed]] to throw a warning on use, please upgrade to [[setVehicleRotorSpeed]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/82000c34830b51ace2d14e39f3b487feb1aac1da 82000c3] by '''FileEX''')&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 '''Nico8340''')&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 '''Nico8340''' 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;
&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 '''Nico8340''')&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 '''Nico8340''')&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 fix ([https://github.com/multitheftauto/mtasa-blue/commit/4e7afa2586c6992a75ac5312378c1096d87148ae 4e7afa2] by '''tederis''')&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;
&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;
* 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;
&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;
:* 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;
&lt;br /&gt;
== 13 Vendor Updates ==&lt;br /&gt;
=== Client ===&lt;br /&gt;
* Updated libpng to 1.6.43 ([https://github.com/multitheftauto/mtasa-blue/commit/5c71180ecdadc86fde56d4aef07fd2bca1fb56b2 5c71180] by '''Dutchman101''')&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.8.0 ([https://github.com/multitheftauto/mtasa-blue/commit/66ebffdbaa3a9c98372b06dc5efca7dc5724bb7a 66ebffd] by '''Dutchman101''')&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.0 ([https://github.com/multitheftauto/mtasa-blue/commit/0ba65bb826cecc1d95392ffea9833e30c8dd592c 0ba65bb] by '''Lpsd''')&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 '''F2BShady''')&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;
&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;
&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 '''F2BShady''')&lt;br /&gt;
&lt;br /&gt;
'''hedit'''&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 '''Nico8340''')&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;
&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 '''Nico8340''')&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;
&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 '''Nico8340''')&lt;br /&gt;
:* Preventing pointer overflow ([https://github.com/multitheftauto/mtasa-resources/commit/8689cdc247a3fd16125524aac04eb054c398084c 8689cdc] by '''Nico8340''')&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;
'''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>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Changes_in_1.6.1&amp;diff=80589</id>
		<title>Changes in 1.6.1</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Changes_in_1.6.1&amp;diff=80589"/>
		<updated>2024-09-17T14:39:42Z</updated>

		<summary type="html">&lt;p&gt;Prox: /* 77 New Features */  Added recently function&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;
== 2 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 '''Nico8340''')&lt;br /&gt;
* Changed [[setHelicopterRotorSpeed]] to throw a warning on use, please upgrade to [[setVehicleRotorSpeed]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/82000c34830b51ace2d14e39f3b487feb1aac1da 82000c3] by '''FileEX''')&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 '''Nicol8340''')&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;
&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;
* '''36''' new functions&lt;br /&gt;
* '''8''' new events&lt;br /&gt;
* '''2''' 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;
== 77 New Features ==&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* Added [[isWorldSpecialPropertyEnabled]] and [[setWorldSpecialPropertyEnabled]] also to serverside ([https://github.com/multitheftauto/mtasa-blue/commit/938b306add48245e578ba6036f1a77521e277194 938b306] by '''samr46''')&lt;br /&gt;
* Added [[fileGetContents]] ([https://github.com/multitheftauto/mtasa-blue/commit/22930d854ce67d84a4a3b65a61b98a9ffd3f9e38 22930d8] by '''botder''')&lt;br /&gt;
* Added new object functions and updated existing to be shared&lt;br /&gt;
:* Added [[isObjectMoving]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/7c939adb892c08836462a78cd9b987884cdb49ee 7c939ad] by '''FileEX''')&lt;br /&gt;
:* Added [[breakObject]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/aa1a7853f46fc796a94f38b7df2a5293fb941ba2 aa1a785] by '''FileEX''')&lt;br /&gt;
:* Added [[respawnObject]] and [[toggleObjectRespawn]] to server-side ([https://github.com/multitheftauto/mtasa-blue/commit/9d65bb673c4df16def27e97a4af74d3b0c7eedc9 9d65bb6] by '''FileEX''')&lt;br /&gt;
:* Added [[isObjectRespawnable]] ([https://github.com/multitheftauto/mtasa-blue/commit/9d65bb673c4df16def27e97a4af74d3b0c7eedc9 9d65bb6] by '''FileEX''')&lt;br /&gt;
&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 [[pathListDir]], [[pathIsFile]], [[pathIsDirectory]] ([https://github.com/multitheftauto/mtasa-blue/commit/74781c6295b5b6dc81cd95d4cfab7900d88d7524 74781c6] by '''Tracer''')&lt;br /&gt;
* Added [[setMarkerTargetArrowProperties]], [[getMarkerTargetArrowProperties]] ([https://github.com/multitheftauto/mtasa-blue/commit/071378ec4326408a9520c79c96befca995d097f6 071378e] by '''FileEX''')&lt;br /&gt;
* Added new timer functions ([https://github.com/multitheftauto/mtasa-blue/commit/69aa420f21fde3ac56e3d3bbc62ef0f060295c0a 69aa420] by '''jvstns''')&lt;br /&gt;
:* [[setTimerPaused]]&lt;br /&gt;
:* [[isTimerPaused]]&lt;br /&gt;
* Added [[resetWorldProperties]]  ([https://github.com/multitheftauto/mtasa-blue/commit/6df889e78328b80f8e4bdc02f8761472cf87c54c 6df889e] by '''FileEX''')&lt;br /&gt;
&lt;br /&gt;
=== Client ===&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;
&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;
&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;
&lt;br /&gt;
* Added 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;
* Added buildings 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;
:* [[removeAllGameBuildings]] &lt;br /&gt;
:* [[restoreAllGameBuildings]] &lt;br /&gt;
&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;
&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;
* Added [[processLineAgainstMesh]] ([https://github.com/multitheftauto/mtasa-blue/commit/acb80a3945d0d5e0230b8a41394a3fe3e70b8d0b acb80a3] by '''Pirulax''')&lt;br /&gt;
* Added [[resetPedVoice]] ([https://github.com/multitheftauto/mtasa-blue/commit/18986a4542db5eb72f6d0dfffb80cb8bb6eb1442 18986a4] by '''Tracer''')&lt;br /&gt;
* Added [[fxCreateParticle]] ([https://github.com/multitheftauto/mtasa-blue/commit/8f2730d2e260c3319cb51101c6aedb45e22bbd89 8f2730d] by '''FileEX''')&lt;br /&gt;
* Added [[getPlayerScriptDebugLevel]] to client-side ([https://github.com/multitheftauto/mtasa-blue/commit/8403da54ecfd20d6b9740fb79d90ac936d316112 8403da5] by '''Nico8340''')&lt;br /&gt;
* Added [[setVehicleWheelsRotation]] ([https://github.com/multitheftauto/mtasa-blue/commit/aeb113d269fffee7d9ac435ce87b51e905e9efa6 aeb113d] by '''gta191977649''')&lt;br /&gt;
&lt;br /&gt;
* Added 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;
* Added [[onClientCoreCommand]] event ([https://github.com/multitheftauto/mtasa-blue/commit/b2cf02943924c4972d2a695cdbfd7c9873fc3cbb b2cf029] by '''Pieter-Dewachter''')&lt;br /&gt;
* Added [[getVehicleEntryPoints]] ([https://github.com/multitheftauto/mtasa-blue/commit/bf588c163cd5bc134771e3842a6585212f06307f bf588c1] by '''MegadreamsBE''')&lt;br /&gt;
&lt;br /&gt;
* Added new 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;
* Added [[enginePreloadWorldArea]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b72fb9d3c9e6813cdf56e53d1a1e72958abd3cf 5b72fb9] by '''MegadreamsBE''')&lt;br /&gt;
&lt;br /&gt;
* Added new world 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;
&lt;br /&gt;
=== Server ===&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 [[aclObjectGetGroups]] ([https://github.com/multitheftauto/mtasa-blue/commit/cf46bd8487bdb2d0cafdab1f43936357f670fe10 cf46bd8] by '''Tracer''')&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;
&lt;br /&gt;
* Added new acl account features ([https://github.com/multitheftauto/mtasa-blue/commit/545f54b6ae0bfc721abba12402ad3787ed9ae811 545f54b] by '''Tracer''')&lt;br /&gt;
:* [[onAccountCreate]]&lt;br /&gt;
:* [[onAccountRemove]]&lt;br /&gt;
:* [[getAccountType]]&lt;br /&gt;
&lt;br /&gt;
* Added [[onPlayerTriggerInvalidEvent]] ([https://github.com/multitheftauto/mtasa-blue/commit/5b4122d35f725e4d258b408253c93e7cbd2ec783 5b4122d] by '''Lpsd''')&lt;br /&gt;
&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;
== 76 Changes and Bug Fixes ==&lt;br /&gt;
=== Shared ===&lt;br /&gt;
* '''[Deprecation]''' 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 '''Nico8340''')&lt;br /&gt;
* '''[Deprecation]''' Changed [[setHelicopterRotorSpeed]] to throw a warning on use, please upgrade to [[setVehicleRotorSpeed]] instead ([https://github.com/multitheftauto/mtasa-blue/commit/82000c34830b51ace2d14e39f3b487feb1aac1da 82000c3] by '''FileEX''')&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 '''Nico8340''')&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 '''Nico8340''' 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;
&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 '''Nico8340''')&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 '''Nico8340''')&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 fix ([https://github.com/multitheftauto/mtasa-blue/commit/4e7afa2586c6992a75ac5312378c1096d87148ae 4e7afa2] by '''tederis''')&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;
&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;
* 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;
&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;
:* 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;
&lt;br /&gt;
== 13 Vendor Updates ==&lt;br /&gt;
=== Client ===&lt;br /&gt;
* Updated libpng to 1.6.43 ([https://github.com/multitheftauto/mtasa-blue/commit/5c71180ecdadc86fde56d4aef07fd2bca1fb56b2 5c71180] by '''Dutchman101''')&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.8.0 ([https://github.com/multitheftauto/mtasa-blue/commit/66ebffdbaa3a9c98372b06dc5efca7dc5724bb7a 66ebffd] by '''Dutchman101''')&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.0 ([https://github.com/multitheftauto/mtasa-blue/commit/0ba65bb826cecc1d95392ffea9833e30c8dd592c 0ba65bb] by '''Lpsd''')&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 '''F2BShady''')&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;
&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;
&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 '''F2BShady''')&lt;br /&gt;
&lt;br /&gt;
'''hedit'''&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 '''Nico8340''')&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;
&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 '''Nico8340''')&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;
&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 '''Nico8340''')&lt;br /&gt;
:* Preventing pointer overflow ([https://github.com/multitheftauto/mtasa-resources/commit/8689cdc247a3fd16125524aac04eb054c398084c 8689cdc] by '''Nico8340''')&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;
'''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>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Template:World_functions&amp;diff=80477</id>
		<title>Template:World functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Template:World_functions&amp;diff=80477"/>
		<updated>2024-09-10T16:57:01Z</updated>

		<summary type="html">&lt;p&gt;Prox: beta version fixes&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
{{#if: {{{1|}}}&lt;br /&gt;
 | {{#ifeq: {{lc:{{{1}}}}} | client&lt;br /&gt;
 |&lt;br /&gt;
    &amp;lt;!-- CLIENT functions --&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[createSWATRope]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getBirdsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22188|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getColorFilter]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getCoronaReflectionsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getGarageBoundingBox]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getGaragePosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getGarageSize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getGroundPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getInteriorFurnitureEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getNearClipDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getPedsLODDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getRoofPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getScreenFromWorldPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getVehiclesLODDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getWorldFromScreenPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22592|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getWorldProperty]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[isAmbientSoundEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[isLineOfSightClear]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22676|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[isTimeFrozen]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22721|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[isVolumetricShadowsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[isWorldSoundEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22219|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[processLineAgainstMesh]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[processLineOfSight]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetAmbientSounds]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetBlurLevel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetColorFilter]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetCoronaReflectionsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetNearClipDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetPedsLODDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22676|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetTimeFrozen]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22721|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetVolumetricShadows]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetVehiclesLODDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22592|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetWorldProperty]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetWorldSounds]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setAmbientSoundEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setBirdsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setColorFilter]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setCoronaReflectionsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setInteriorFurnitureEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setInteriorSoundsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setNearClipDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setPedsLODDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22676|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setTimeFrozen]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVehiclesLODDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22592|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setWorldProperty]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setWorldSoundEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|21902|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setGrainLevel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|21902|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setGrainMultiplier]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[testLineAgainstWater]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22721|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVolumetricShadowsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
 | {{#ifeq: {{lc:{{{1}}}}} | server&lt;br /&gt;
 |&lt;br /&gt;
    &amp;lt;!-- SERVER functions --&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getJetpackWeaponEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setJetpackWeaponEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&amp;lt;li style=&amp;quot;list-style: none; margin-left: -1.6em;&amp;quot;&amp;gt;'''Shared'''&amp;lt;/li&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- SHARED functions--&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[areTrafficLightsLocked]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getAircraftMaxHeight]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getAircraftMaxVelocity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getCloudsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getFarClipDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getFogDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getGameSpeed]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getGravity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getHeatHaze]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getInteriorSoundsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getJetpackMaxHeight]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getMinuteDuration]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getMoonSize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getOcclusionsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getRainLevel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getSunColor]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getSunSize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getTime]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getTrafficLightState]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getWeather]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getWindVelocity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getSkyGradient]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getPlayerBlurLevel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
{{New items|3.0161|1.6.0|&lt;br /&gt;
&amp;lt;li&amp;gt;[[isWorldSpecialPropertyEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
|22195}}&lt;br /&gt;
&amp;lt;li&amp;gt;[[getZoneName]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[isGarageOpen]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[removeWorldModel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetFarClipDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetFogDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetHeatHaze]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetMoonSize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetRainLevel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetSkyGradient]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetSunColor]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetSunSize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetWindVelocity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[restoreAllWorldModels]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[restoreWorldModel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setAircraftMaxHeight]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setAircraftMaxVelocity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setCloudsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setFarClipDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setFogDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setGameSpeed]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setGarageOpen]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setGravity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setHeatHaze]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setInteriorSoundsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setMinuteDuration]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setMoonSize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setOcclusionsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setRainLevel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setSkyGradient]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setSunColor]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setSunSize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setTime]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setTrafficLightState]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setTrafficLightsLocked]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setWeather]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setWeatherBlended]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setWindVelocity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setJetpackMaxHeight]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setPlayerBlurLevel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
{{New items|3.0161|1.6.0|&lt;br /&gt;
&amp;lt;li&amp;gt;[[setWorldSpecialPropertyEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
|22195}}&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{Functions list info}}&lt;br /&gt;
[[Category:Functions templates]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=ResetVolumetricShadows&amp;diff=80476</id>
		<title>ResetVolumetricShadows</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=ResetVolumetricShadows&amp;diff=80476"/>
		<updated>2024-09-10T16:54:11Z</updated>

		<summary type="html">&lt;p&gt;Prox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Client function}} &lt;br /&gt;
__NOTOC__&lt;br /&gt;
{{Added feature/item|1.6.1|1.6.0|22721| &lt;br /&gt;
This function is used to reset the volumetric shadows to the game video setting.&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 resetVolumetricShadows()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Always returns ''true''.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
resetVolumetricShadows()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{World functions|client}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=IsVolumetricShadowsEnabled&amp;diff=80475</id>
		<title>IsVolumetricShadowsEnabled</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=IsVolumetricShadowsEnabled&amp;diff=80475"/>
		<updated>2024-09-10T16:53:33Z</updated>

		<summary type="html">&lt;p&gt;Prox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Client function}} &lt;br /&gt;
__NOTOC__&lt;br /&gt;
{{Added feature/item|1.6.1|1.6.0|22721| &lt;br /&gt;
This function is used to check whether the shadow enabled or not.&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 isVolumetricShadowsEnabled ()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns ''true'' if enabled, ''false'' otherwise.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
This example used a command to check if volumetric shadows enabled or not.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
addCommandHandler('isvolumetricshadows', function()&lt;br /&gt;
   print(isVolumetricShadowsEnabled())&lt;br /&gt;
end)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{World functions|client}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=SetVolumetricShadowsEnabled&amp;diff=80474</id>
		<title>SetVolumetricShadowsEnabled</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=SetVolumetricShadowsEnabled&amp;diff=80474"/>
		<updated>2024-09-10T16:52:26Z</updated>

		<summary type="html">&lt;p&gt;Prox: correct beta version&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Client function}} &lt;br /&gt;
__NOTOC__&lt;br /&gt;
{{Added feature/item|1.6.1|1.6.0|22721| &lt;br /&gt;
This function used to enable or disable volumetric shadows.&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 setVolumetricShadowsEnabled ( bool state )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Required arguments===&lt;br /&gt;
*'''state''': if set true it will enable the volumetric shadows, false otherwise.&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Always returns ''true''.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
This example check if volumetric shadows enabled, if not enabled then enable it and set the shadow alpha.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
if not ( isVolumetricShadowsEnabled () ) then -- check if the volumetric shadows not enabled&lt;br /&gt;
    setVolumetricShadowsEnabled ( true )&lt;br /&gt;
    setWorldProperty ( &amp;quot;ShadowStrength&amp;quot;, 500 ) -- set shadows alpha&lt;br /&gt;
else&lt;br /&gt;
    setWorldProperty ( &amp;quot;ShadowStrength&amp;quot;, 500 )&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{World functions|client}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Template:World_functions&amp;diff=80462</id>
		<title>Template:World functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Template:World_functions&amp;diff=80462"/>
		<updated>2024-09-07T10:39:24Z</updated>

		<summary type="html">&lt;p&gt;Prox: fix removed function&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
{{#if: {{{1|}}}&lt;br /&gt;
 | {{#ifeq: {{lc:{{{1}}}}} | client&lt;br /&gt;
 |&lt;br /&gt;
    &amp;lt;!-- CLIENT functions --&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[createSWATRope]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getBirdsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22188|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getColorFilter]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getCoronaReflectionsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getGarageBoundingBox]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getGaragePosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getGarageSize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getGroundPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getInteriorFurnitureEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getNearClipDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getPedsLODDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getRoofPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getScreenFromWorldPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getVehiclesLODDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getWorldFromScreenPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22592|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getWorldProperty]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[isAmbientSoundEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[isLineOfSightClear]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22676|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[isTimeFrozen]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22716|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[isVolumetricShadowsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[isWorldSoundEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22219|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[processLineAgainstMesh]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[processLineOfSight]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetAmbientSounds]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetBlurLevel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetColorFilter]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetCoronaReflectionsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetNearClipDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetPedsLODDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22676|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetTimeFrozen]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22716|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetVolumetricShadows]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetVehiclesLODDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22592|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetWorldProperty]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetWorldSounds]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setAmbientSoundEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setBirdsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setColorFilter]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setCoronaReflectionsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setInteriorFurnitureEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setInteriorSoundsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setNearClipDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setPedsLODDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22676|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setTimeFrozen]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVehiclesLODDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22592|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setWorldProperty]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setWorldSoundEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|21902|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setGrainLevel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|21902|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setGrainMultiplier]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[testLineAgainstWater]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22716|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVolumetricShadowsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
 | {{#ifeq: {{lc:{{{1}}}}} | server&lt;br /&gt;
 |&lt;br /&gt;
    &amp;lt;!-- SERVER functions --&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getJetpackWeaponEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setJetpackWeaponEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&amp;lt;li style=&amp;quot;list-style: none; margin-left: -1.6em;&amp;quot;&amp;gt;'''Shared'''&amp;lt;/li&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- SHARED functions--&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[areTrafficLightsLocked]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getAircraftMaxHeight]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getAircraftMaxVelocity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getCloudsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getFarClipDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getFogDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getGameSpeed]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getGravity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getHeatHaze]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getInteriorSoundsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getJetpackMaxHeight]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getMinuteDuration]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getMoonSize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getOcclusionsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getRainLevel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getSunColor]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getSunSize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getTime]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getTrafficLightState]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getWeather]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getWindVelocity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getSkyGradient]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getPlayerBlurLevel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
{{New items|3.0161|1.6.0|&lt;br /&gt;
&amp;lt;li&amp;gt;[[isWorldSpecialPropertyEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
|22195}}&lt;br /&gt;
&amp;lt;li&amp;gt;[[getZoneName]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[isGarageOpen]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[removeWorldModel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetFarClipDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetFogDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetHeatHaze]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetMoonSize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetRainLevel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetSkyGradient]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetSunColor]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetSunSize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetWindVelocity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[restoreAllWorldModels]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[restoreWorldModel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setAircraftMaxHeight]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setAircraftMaxVelocity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setCloudsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setFarClipDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setFogDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setGameSpeed]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setGarageOpen]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setGravity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setHeatHaze]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setInteriorSoundsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setMinuteDuration]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setMoonSize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setOcclusionsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setRainLevel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setSkyGradient]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setSunColor]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setSunSize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setTime]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setTrafficLightState]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setTrafficLightsLocked]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setWeather]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setWeatherBlended]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setWindVelocity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setJetpackMaxHeight]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setPlayerBlurLevel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
{{New items|3.0161|1.6.0|&lt;br /&gt;
&amp;lt;li&amp;gt;[[setWorldSpecialPropertyEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
|22195}}&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{Functions list info}}&lt;br /&gt;
[[Category:Functions templates]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Template:World_functions&amp;diff=80460</id>
		<title>Template:World functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Template:World_functions&amp;diff=80460"/>
		<updated>2024-09-07T09:36:01Z</updated>

		<summary type="html">&lt;p&gt;Prox: fix doubled item list&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
{{#if: {{{1|}}}&lt;br /&gt;
 | {{#ifeq: {{lc:{{{1}}}}} | client&lt;br /&gt;
 |&lt;br /&gt;
    &amp;lt;!-- CLIENT functions --&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[createSWATRope]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getBirdsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22188|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getColorFilter]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getCoronaReflectionsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getGarageBoundingBox]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getGaragePosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getGarageSize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getGroundPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getInteriorFurnitureEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getNearClipDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getPedsLODDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getRoofPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getScreenFromWorldPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getVehiclesLODDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getWorldFromScreenPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22592|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getWorldProperty]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[isAmbientSoundEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[isLineOfSightClear]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22676|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[isTimeFrozen]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22716|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[isVolumetricShadowsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[isWorldSoundEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22219|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[processLineAgainstMesh]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[processLineOfSight]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetAmbientSounds]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetBlurLevel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetColorFilter]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetCoronaReflectionsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetNearClipDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetPedsLODDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22676|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetVolumetricShadows]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetVehiclesLODDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22592|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetWorldProperty]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetWorldSounds]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setAmbientSoundEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setBirdsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setColorFilter]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setCoronaReflectionsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setInteriorFurnitureEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setInteriorSoundsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setNearClipDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setPedsLODDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22676|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setTimeFrozen]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVehiclesLODDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22592|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setWorldProperty]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setWorldSoundEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|21902|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setGrainLevel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|21902|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setGrainMultiplier]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[testLineAgainstWater]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22716|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVolumetricShadowsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
 | {{#ifeq: {{lc:{{{1}}}}} | server&lt;br /&gt;
 |&lt;br /&gt;
    &amp;lt;!-- SERVER functions --&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getJetpackWeaponEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setJetpackWeaponEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&amp;lt;li style=&amp;quot;list-style: none; margin-left: -1.6em;&amp;quot;&amp;gt;'''Shared'''&amp;lt;/li&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- SHARED functions--&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[areTrafficLightsLocked]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getAircraftMaxHeight]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getAircraftMaxVelocity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getCloudsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getFarClipDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getFogDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getGameSpeed]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getGravity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getHeatHaze]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getInteriorSoundsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getJetpackMaxHeight]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getMinuteDuration]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getMoonSize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getOcclusionsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getRainLevel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getSunColor]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getSunSize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getTime]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getTrafficLightState]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getWeather]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getWindVelocity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getSkyGradient]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getPlayerBlurLevel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
{{New items|3.0161|1.6.0|&lt;br /&gt;
&amp;lt;li&amp;gt;[[isWorldSpecialPropertyEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
|22195}}&lt;br /&gt;
&amp;lt;li&amp;gt;[[getZoneName]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[isGarageOpen]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[removeWorldModel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetFarClipDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetFogDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetHeatHaze]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetMoonSize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetRainLevel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetSkyGradient]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetSunColor]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetSunSize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetWindVelocity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[restoreAllWorldModels]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[restoreWorldModel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setAircraftMaxHeight]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setAircraftMaxVelocity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setCloudsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setFarClipDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setFogDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setGameSpeed]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setGarageOpen]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setGravity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setHeatHaze]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setInteriorSoundsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setMinuteDuration]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setMoonSize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setOcclusionsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setRainLevel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setSkyGradient]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setSunColor]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setSunSize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setTime]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setTrafficLightState]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setTrafficLightsLocked]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setWeather]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setWeatherBlended]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setWindVelocity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setJetpackMaxHeight]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setPlayerBlurLevel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
{{New items|3.0161|1.6.0|&lt;br /&gt;
&amp;lt;li&amp;gt;[[setWorldSpecialPropertyEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
|22195}}&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{Functions list info}}&lt;br /&gt;
[[Category:Functions templates]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=Template:World_functions&amp;diff=80459</id>
		<title>Template:World functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=Template:World_functions&amp;diff=80459"/>
		<updated>2024-09-07T09:34:58Z</updated>

		<summary type="html">&lt;p&gt;Prox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
{{#if: {{{1|}}}&lt;br /&gt;
 | {{#ifeq: {{lc:{{{1}}}}} | client&lt;br /&gt;
 |&lt;br /&gt;
    &amp;lt;!-- CLIENT functions --&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[createSWATRope]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getBirdsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22188|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getColorFilter]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getCoronaReflectionsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getGarageBoundingBox]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getGaragePosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getGarageSize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getGroundPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getInteriorFurnitureEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getNearClipDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getPedsLODDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getRoofPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getScreenFromWorldPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getVehiclesLODDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getWorldFromScreenPosition]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22592|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getWorldProperty]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[isAmbientSoundEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[isLineOfSightClear]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22676|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[isTimeFrozen]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22716|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[isVolumetricShadowsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[isWorldSoundEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22219|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[processLineAgainstMesh]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[processLineOfSight]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetAmbientSounds]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetBlurLevel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetColorFilter]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetCoronaReflectionsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetNearClipDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetPedsLODDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22676|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetVolumetricShadows]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22716|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVolumetricShadowsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetVehiclesLODDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22592|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetWorldProperty]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[resetWorldSounds]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setAmbientSoundEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setBirdsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setColorFilter]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setCoronaReflectionsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setInteriorFurnitureEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setInteriorSoundsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setNearClipDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setPedsLODDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22676|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setTimeFrozen]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVehiclesLODDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22592|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setWorldProperty]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setWorldSoundEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|21902|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setGrainLevel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|21902|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setGrainMultiplier]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
    &amp;lt;li&amp;gt;[[testLineAgainstWater]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    {{New feature/item|3.0161|1.6.0|22716|&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setVolumetricShadowsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
 | {{#ifeq: {{lc:{{{1}}}}} | server&lt;br /&gt;
 |&lt;br /&gt;
    &amp;lt;!-- SERVER functions --&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[getJetpackWeaponEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    &amp;lt;li&amp;gt;[[setJetpackWeaponEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&amp;lt;li style=&amp;quot;list-style: none; margin-left: -1.6em;&amp;quot;&amp;gt;'''Shared'''&amp;lt;/li&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- SHARED functions--&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[areTrafficLightsLocked]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getAircraftMaxHeight]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getAircraftMaxVelocity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getCloudsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getFarClipDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getFogDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getGameSpeed]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getGravity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getHeatHaze]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getInteriorSoundsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getJetpackMaxHeight]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getMinuteDuration]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getMoonSize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getOcclusionsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getRainLevel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getSunColor]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getSunSize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getTime]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getTrafficLightState]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getWeather]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getWindVelocity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getSkyGradient]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[getPlayerBlurLevel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
{{New items|3.0161|1.6.0|&lt;br /&gt;
&amp;lt;li&amp;gt;[[isWorldSpecialPropertyEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
|22195}}&lt;br /&gt;
&amp;lt;li&amp;gt;[[getZoneName]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[isGarageOpen]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[removeWorldModel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetFarClipDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetFogDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetHeatHaze]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetMoonSize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetRainLevel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetSkyGradient]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetSunColor]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetSunSize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[resetWindVelocity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[restoreAllWorldModels]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[restoreWorldModel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setAircraftMaxHeight]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setAircraftMaxVelocity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setCloudsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setFarClipDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setFogDistance]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setGameSpeed]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setGarageOpen]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setGravity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setHeatHaze]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setInteriorSoundsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setMinuteDuration]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setMoonSize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setOcclusionsEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setRainLevel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setSkyGradient]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setSunColor]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setSunSize]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setTime]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setTrafficLightState]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setTrafficLightsLocked]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setWeather]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setWeatherBlended]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setWindVelocity]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setJetpackMaxHeight]]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[setPlayerBlurLevel]]&amp;lt;/li&amp;gt;&lt;br /&gt;
{{New items|3.0161|1.6.0|&lt;br /&gt;
&amp;lt;li&amp;gt;[[setWorldSpecialPropertyEnabled]]&amp;lt;/li&amp;gt;&lt;br /&gt;
|22195}}&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{Functions list info}}&lt;br /&gt;
[[Category:Functions templates]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=ResetVolumetricShadows&amp;diff=80320</id>
		<title>ResetVolumetricShadows</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=ResetVolumetricShadows&amp;diff=80320"/>
		<updated>2024-09-06T21:19:10Z</updated>

		<summary type="html">&lt;p&gt;Prox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Client function}} &lt;br /&gt;
__NOTOC__&lt;br /&gt;
{{Added feature/item|1.6.1|1.6.0|22716| &lt;br /&gt;
This function is used to reset the volumetric shadows to the game video setting.&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 resetVolumetricShadows()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Always returns ''true''.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
resetVolumetricShadows()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{World functions}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=ResetVolumetricShadows&amp;diff=80319</id>
		<title>ResetVolumetricShadows</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=ResetVolumetricShadows&amp;diff=80319"/>
		<updated>2024-09-06T21:18:57Z</updated>

		<summary type="html">&lt;p&gt;Prox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Client function}} &lt;br /&gt;
__NOTOC__&lt;br /&gt;
{{Added feature/item|1.6.1|1.6.0|22716| &lt;br /&gt;
This function is used to reset the volumetric shadows to the video setting.&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 resetVolumetricShadows()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Always returns ''true''.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
resetVolumetricShadows()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{World functions}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=ResetVolumetricShadows&amp;diff=80318</id>
		<title>ResetVolumetricShadows</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=ResetVolumetricShadows&amp;diff=80318"/>
		<updated>2024-09-06T21:18:27Z</updated>

		<summary type="html">&lt;p&gt;Prox: new page 1.6.1&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Client function}} &lt;br /&gt;
__NOTOC__&lt;br /&gt;
{{Added feature/item|1.6.1|1.6.0|22716| &lt;br /&gt;
This function is used to reset the volumetric shadows.&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 resetVolumetricShadows()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Always returns ''true''.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
resetVolumetricShadows()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{World functions}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=SetVolumetricShadowsEnabled&amp;diff=80317</id>
		<title>SetVolumetricShadowsEnabled</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=SetVolumetricShadowsEnabled&amp;diff=80317"/>
		<updated>2024-09-06T21:13:51Z</updated>

		<summary type="html">&lt;p&gt;Prox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Client function}} &lt;br /&gt;
__NOTOC__&lt;br /&gt;
{{Added feature/item|1.6.1|1.6.0|22716| &lt;br /&gt;
This function used to enable or disable volumetric shadows.&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 setVolumetricShadowsEnabled ( bool state )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Required arguments===&lt;br /&gt;
*'''state''': if set true it will enable the volumetric shadows, false otherwise.&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Always returns ''true''.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
This example check if volumetric shadows enabled, if not enabled then enable it and set the shadow alpha.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
if not ( isVolumetricShadowsEnabled () ) then -- check if the volumetric shadows not enabled&lt;br /&gt;
    setVolumetricShadowsEnabled ( true )&lt;br /&gt;
    setWorldProperty ( &amp;quot;ShadowStrength&amp;quot;, 500 ) -- set shadows alpha&lt;br /&gt;
else&lt;br /&gt;
    setWorldProperty ( &amp;quot;ShadowStrength&amp;quot;, 500 )&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{World functions|client}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=IsVolumetricShadowsEnabled&amp;diff=80316</id>
		<title>IsVolumetricShadowsEnabled</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=IsVolumetricShadowsEnabled&amp;diff=80316"/>
		<updated>2024-09-06T21:10:11Z</updated>

		<summary type="html">&lt;p&gt;Prox: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Client function}} &lt;br /&gt;
__NOTOC__&lt;br /&gt;
{{Added feature/item|1.6.1|1.6.0|22716| &lt;br /&gt;
This function is used to check whether the shadow enabled or not.&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 isVolumetricShadowsEnabled ()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns ''true'' if enabled, ''false'' otherwise.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
This example used a command to check if volumetric shadows enabled or not.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
addCommandHandler('isvolumetricshadows', function()&lt;br /&gt;
   print(isVolumetricShadowsEnabled())&lt;br /&gt;
end)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{World functions}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=IsVolumetricShadowsEnabled&amp;diff=80315</id>
		<title>IsVolumetricShadowsEnabled</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=IsVolumetricShadowsEnabled&amp;diff=80315"/>
		<updated>2024-09-06T21:08:43Z</updated>

		<summary type="html">&lt;p&gt;Prox: Created page with &amp;quot;{{Client function}}  __NOTOC__ {{Added feature/item|1.6.1|1.6.0|22716|  This function is used to check whether the shadow enabled or not. }}  ==Syntax==  &amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt; bool isVolumetricShadowsEnabled () &amp;lt;/syntaxhighlight&amp;gt;   ===Returns=== Returns ''true'' if enabled, ''false'' otherwise.  ==Example==  This example check if volumetric shadows enabled or not. &amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt; addCommandHandler('isvolumetricshadows', function()    print(isVolumetri...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Client function}} &lt;br /&gt;
__NOTOC__&lt;br /&gt;
{{Added feature/item|1.6.1|1.6.0|22716| &lt;br /&gt;
This function is used to check whether the shadow enabled or not.&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 isVolumetricShadowsEnabled ()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Returns ''true'' if enabled, ''false'' otherwise.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
This example check if volumetric shadows enabled or not.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
addCommandHandler('isvolumetricshadows', function()&lt;br /&gt;
   print(isVolumetricShadowsEnabled())&lt;br /&gt;
end)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{World functions}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=SetVolumetricShadowsEnabled&amp;diff=80313</id>
		<title>SetVolumetricShadowsEnabled</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=SetVolumetricShadowsEnabled&amp;diff=80313"/>
		<updated>2024-09-06T20:28:02Z</updated>

		<summary type="html">&lt;p&gt;Prox: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Client function}} &lt;br /&gt;
__NOTOC__&lt;br /&gt;
This function use to enable or disable volumetric shadows.&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 setVolumetricShadowsEnabled ( bool state )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Required arguments===&lt;br /&gt;
*'''state''': if set true it will enable the volumetric shadows, false otherwise.&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Always returns ''true''.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
This example check if volumetric shadows enabled, if not enabled then enable it and set the shadow alpha.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
if not ( isVolumetricShadowsEnabled () ) then -- check if the volumetric shadows not enabled&lt;br /&gt;
    setVolumetricShadowsEnabled ( true )&lt;br /&gt;
    setWorldProperty ( &amp;quot;ShadowStrength&amp;quot;, 500 ) -- set shadows alpha&lt;br /&gt;
else&lt;br /&gt;
    setWorldProperty ( &amp;quot;ShadowStrength&amp;quot;, 500 )&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Client world functions}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=SetVolumetricShadowsEnabled&amp;diff=80312</id>
		<title>SetVolumetricShadowsEnabled</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=SetVolumetricShadowsEnabled&amp;diff=80312"/>
		<updated>2024-09-06T20:27:18Z</updated>

		<summary type="html">&lt;p&gt;Prox: /* Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Client function}} &lt;br /&gt;
__NOTOC__&lt;br /&gt;
This function use to enable or disable volumetric shadows.&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 setVolumetricShadowsEnabled ( bool state )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Required arguments===&lt;br /&gt;
*'''state''': if set true it will enable the volumetric shadows, false otherwise.&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Always returns ''true''.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
This example check if volumetric shadows enabled, if not enabled then enable it and set the shadow alpha.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
if not ( isVolumetricShadowsEnabled () ) then -- check if the volumetric shadows not enabled&lt;br /&gt;
    setVolumetricShadowsEnabled( true )&lt;br /&gt;
    setWorldProperty ( &amp;quot;ShadowStrength&amp;quot;, 500 ) -- set shadows alpha&lt;br /&gt;
else&lt;br /&gt;
    setWorldProperty ( &amp;quot;ShadowStrength&amp;quot;, 500 )&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Client world functions}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
	<entry>
		<id>https://wiki.multitheftauto.com/index.php?title=SetVolumetricShadowsEnabled&amp;diff=80311</id>
		<title>SetVolumetricShadowsEnabled</title>
		<link rel="alternate" type="text/html" href="https://wiki.multitheftauto.com/index.php?title=SetVolumetricShadowsEnabled&amp;diff=80311"/>
		<updated>2024-09-06T20:27:06Z</updated>

		<summary type="html">&lt;p&gt;Prox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Client function}} &lt;br /&gt;
__NOTOC__&lt;br /&gt;
This function use to enable or disable volumetric shadows.&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 setVolumetricShadowsEnabled ( bool state )&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Required arguments===&lt;br /&gt;
*'''state''': if set true it will enable the volumetric shadows, false otherwise.&lt;br /&gt;
&lt;br /&gt;
===Returns===&lt;br /&gt;
Always returns ''true''.&lt;br /&gt;
&lt;br /&gt;
==Example== &lt;br /&gt;
This example check if volumetric shadows enabled, if not enabled then enable it and set the shadow alpha.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;lua&amp;quot;&amp;gt;&lt;br /&gt;
if not( isVolumetricShadowsEnabled () ) then -- check if the volumetric shadows not enabled&lt;br /&gt;
    setVolumetricShadowsEnabled( true )&lt;br /&gt;
    setWorldProperty ( &amp;quot;ShadowStrength&amp;quot;, 500 ) -- set shadows alpha&lt;br /&gt;
else&lt;br /&gt;
    setWorldProperty ( &amp;quot;ShadowStrength&amp;quot;, 500 )&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
{{Client world functions}}&lt;/div&gt;</summary>
		<author><name>Prox</name></author>
	</entry>
</feed>