<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[open.mp forum - Questions and Suggestions]]></title>
		<link>https://forum.open.mp/</link>
		<description><![CDATA[open.mp forum - https://forum.open.mp]]></description>
		<pubDate>Sun, 19 Apr 2026 16:14:19 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[backtrace]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3821</link>
			<pubDate>Mon, 09 Mar 2026 06:32:49 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=7982">Lyvex</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3821</guid>
			<description><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>[2026-03-09T13:23:01+0700] [Info] [debug] Long callback execution detected (hang or performance issue)<br />
[2026-03-09T13:23:01+0700] [Info] [debug] AMX backtrace:<br />
[2026-03-09T13:23:01+0700] [Info] [debug] #0 00005f70 in ?? (0, 21, 3243208, 1598650688) in &lt;unknown&gt;<br />
[2026-03-09T13:23:01+0700] [Info] [debug] #1 00006058 in ?? (0, 0, 3243240, 1598650688) in &lt;unknown&gt;<br />
[2026-03-09T13:23:01+0700] [Info] [debug] #2 00009370 in ?? () in &lt;unknown&gt;<br />
[2026-03-09T13:23:01+0700] [Info] [debug] #3 00002de8 in public OnRuntimeError () in &lt;unknown&gt;</code></div></div><br />
<blockquote class="mycode_quote"><cite>Quote:</cite>Please help me this callback is not in my gm, the problem appears when I want to install crashdetect</blockquote>
]]></description>
			<content:encoded><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>[2026-03-09T13:23:01+0700] [Info] [debug] Long callback execution detected (hang or performance issue)<br />
[2026-03-09T13:23:01+0700] [Info] [debug] AMX backtrace:<br />
[2026-03-09T13:23:01+0700] [Info] [debug] #0 00005f70 in ?? (0, 21, 3243208, 1598650688) in &lt;unknown&gt;<br />
[2026-03-09T13:23:01+0700] [Info] [debug] #1 00006058 in ?? (0, 0, 3243240, 1598650688) in &lt;unknown&gt;<br />
[2026-03-09T13:23:01+0700] [Info] [debug] #2 00009370 in ?? () in &lt;unknown&gt;<br />
[2026-03-09T13:23:01+0700] [Info] [debug] #3 00002de8 in public OnRuntimeError () in &lt;unknown&gt;</code></div></div><br />
<blockquote class="mycode_quote"><cite>Quote:</cite>Please help me this callback is not in my gm, the problem appears when I want to install crashdetect</blockquote>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[IPv6 support]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3797</link>
			<pubDate>Sun, 01 Feb 2026 19:01:33 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=827">Knogle</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3797</guid>
			<description><![CDATA[Ahoy, hope you doing fine.<br />
Many folks are only capable of having public facing IPv6 prefixes due to CGNAT, or any other kind of NATting in private address space.<br />
Therefore IPv6 support would be a nice thing to have, due to increasing use of IPv6 for services.<br />
<br />
BR,]]></description>
			<content:encoded><![CDATA[Ahoy, hope you doing fine.<br />
Many folks are only capable of having public facing IPv6 prefixes due to CGNAT, or any other kind of NATting in private address space.<br />
Therefore IPv6 support would be a nice thing to have, due to increasing use of IPv6 for services.<br />
<br />
BR,]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[The size of the output amx file]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3692</link>
			<pubDate>Mon, 01 Dec 2025 19:07:38 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=7729">scandalfive</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3692</guid>
			<description><![CDATA[Hello everyone. I've encountered a situation where, when compiling an empty mod (containing only #include &lt;open.mp&gt; and main(){}) using qawno and a custom bat file, the output amx files have different sizes. <br />
<br />
bat.amx - <span style="font-weight: bold;" class="mycode_b">1389 bytes</span><br />
qawno.amx - <span style="font-weight: bold;" class="mycode_b">1420 bytes</span><br />
<br />
Is this difference normal, or have I made a mistake in configuring the compiler command for the bat file?<br />
<br />
bat:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>compiler&#92;pawncc.exe -;+ -(+ -&#92; -Z- "-isource/%name%" "-rsource/%name%" "-icompiler/include" -d3 -t4 "-orelease/gamemodes/%name%" "source/%name%.pwn"</code></div></div><br />
qawno:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>./pawncc -;+ -(+ -&#92; -Z- "-i%p/%o" "-r%p/%o" "-i%q/include" -d3 -t4 "-o%p/%o" "%p/%i"</code></div></div><br />
May the experts forgive me, because this question may be very easy, but I'm new to this and I want to understand everything.<br />
Thank you.]]></description>
			<content:encoded><![CDATA[Hello everyone. I've encountered a situation where, when compiling an empty mod (containing only #include &lt;open.mp&gt; and main(){}) using qawno and a custom bat file, the output amx files have different sizes. <br />
<br />
bat.amx - <span style="font-weight: bold;" class="mycode_b">1389 bytes</span><br />
qawno.amx - <span style="font-weight: bold;" class="mycode_b">1420 bytes</span><br />
<br />
Is this difference normal, or have I made a mistake in configuring the compiler command for the bat file?<br />
<br />
bat:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>compiler&#92;pawncc.exe -;+ -(+ -&#92; -Z- "-isource/%name%" "-rsource/%name%" "-icompiler/include" -d3 -t4 "-orelease/gamemodes/%name%" "source/%name%.pwn"</code></div></div><br />
qawno:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>./pawncc -;+ -(+ -&#92; -Z- "-i%p/%o" "-r%p/%o" "-i%q/include" -d3 -t4 "-o%p/%o" "%p/%i"</code></div></div><br />
May the experts forgive me, because this question may be very easy, but I'm new to this and I want to understand everything.<br />
Thank you.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[samp-cef]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3201</link>
			<pubDate>Wed, 18 Jun 2025 11:36:13 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=7200">jamespssamp</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3201</guid>
			<description><![CDATA[Hello everyone. I have some difficulties with rendering a web page via CEF inside the game. The thing is that I use white colors in the interfaces, but do not use the background (transparent). And from somewhere artifacts appear in the form of a black outline (1-3 pixels) around white elements. What could this be connected with? With the layout or the CEF plugin?]]></description>
			<content:encoded><![CDATA[Hello everyone. I have some difficulties with rendering a web page via CEF inside the game. The thing is that I use white colors in the interfaces, but do not use the background (transparent). And from somewhere artifacts appear in the form of a black outline (1-3 pixels) around white elements. What could this be connected with? With the layout or the CEF plugin?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Manual sorting of servers in the launcher.]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3180</link>
			<pubDate>Sun, 11 May 2025 10:21:55 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=7079">landau</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3180</guid>
			<description><![CDATA[When you have too many servers in your server list, it becomes inconvenient to search for the server you want. It would be nice to have a manual sorting that would allow you to put frequently visited servers at the top of the list.]]></description>
			<content:encoded><![CDATA[When you have too many servers in your server list, it becomes inconvenient to search for the server you want. It would be nice to have a manual sorting that would allow you to put frequently visited servers at the top of the list.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Bahnhof internet services should sponsor open-mp]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3178</link>
			<pubDate>Sat, 10 May 2025 18:29:39 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=3956">NoxxeR</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3178</guid>
			<description><![CDATA[<a href="https://bahnhof.se/" target="_blank" rel="noopener" class="mycode_url">https://bahnhof.se/</a> is a swedish internet company, they might want to sponsor sa-mp or open-mp with some servers.<br />
They sponsor some other sites as well, they might gain customers if they sponsor some gaming servers for open-mp and the site.<br />
<br />
I think y-less should talk to some other companies as well that has money, since GTA SA still active with open-mp :)]]></description>
			<content:encoded><![CDATA[<a href="https://bahnhof.se/" target="_blank" rel="noopener" class="mycode_url">https://bahnhof.se/</a> is a swedish internet company, they might want to sponsor sa-mp or open-mp with some servers.<br />
They sponsor some other sites as well, they might gain customers if they sponsor some gaming servers for open-mp and the site.<br />
<br />
I think y-less should talk to some other companies as well that has money, since GTA SA still active with open-mp :)]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Sponsors and Donations]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3158</link>
			<pubDate>Sun, 20 Apr 2025 05:48:26 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=3956">NoxxeR</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3158</guid>
			<description><![CDATA[Open multiplayer needs sponsors for the website servers, the forums and donations so the project can succeed.<br />
<br />
Y-less should talk to people so they can sponsor him with servers and donations on the main page, since Open multiplayer will replace sa-mp soon, and might need lots of donations and servers so you can host websites and servers so the game gets more attention :)<br />
<br />
GTA San andreas is awesome, in the future there should be updates to the graphics as well ingame, dunno if Open MP, can improve the graphics on the game as well, so we gain more users, everyone care for gaming in todays era.]]></description>
			<content:encoded><![CDATA[Open multiplayer needs sponsors for the website servers, the forums and donations so the project can succeed.<br />
<br />
Y-less should talk to people so they can sponsor him with servers and donations on the main page, since Open multiplayer will replace sa-mp soon, and might need lots of donations and servers so you can host websites and servers so the game gets more attention :)<br />
<br />
GTA San andreas is awesome, in the future there should be updates to the graphics as well ingame, dunno if Open MP, can improve the graphics on the game as well, so we gain more users, everyone care for gaming in todays era.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[I know Kalcor left the building but]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3155</link>
			<pubDate>Wed, 16 Apr 2025 09:25:16 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=3956">NoxxeR</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3155</guid>
			<description><![CDATA[But when will sa-mp update it's client? I know open-mp is backwards compitable and such, but this site is not registered by kalcor:<br />
<br />
<a href="https://www.sa-mp.mp/" target="_blank" rel="noopener" class="mycode_url">https://www.sa-mp.mp/</a><br />
<br />
There needs to be more updates and such every year or so.]]></description>
			<content:encoded><![CDATA[But when will sa-mp update it's client? I know open-mp is backwards compitable and such, but this site is not registered by kalcor:<br />
<br />
<a href="https://www.sa-mp.mp/" target="_blank" rel="noopener" class="mycode_url">https://www.sa-mp.mp/</a><br />
<br />
There needs to be more updates and such every year or so.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Website too damn slow!]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3079</link>
			<pubDate>Tue, 18 Feb 2025 16:38:38 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=4659">GasmoN</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3079</guid>
			<description><![CDATA[Why? <br />
<a href="https://www.open.mp/docs/" target="_blank" rel="noopener" class="mycode_url">https://www.open.mp/docs/</a> literally loads after 10-15 seconds after some time (on random moments). Is this noted or no one noticed yet?]]></description>
			<content:encoded><![CDATA[Why? <br />
<a href="https://www.open.mp/docs/" target="_blank" rel="noopener" class="mycode_url">https://www.open.mp/docs/</a> literally loads after 10-15 seconds after some time (on random moments). Is this noted or no one noticed yet?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[HWID BAN]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3068</link>
			<pubDate>Fri, 07 Feb 2025 18:23:20 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=4651">haris.grella.1</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3068</guid>
			<description><![CDATA[<span style="font-weight: bold;" class="mycode_b">I'm writing to inquire about the possibility of implementing a Hardware ID (HWID) based ban system on the open.mp platform. Many players, including myself, have expressed concerns about the prevalence of cheating in GTA San Andreas multiplayer.<br />
<br />
HWID bans have proven effective in other online games to combat cheaters who bypass traditional IP or account bans. Are there any plans to introduce such a system in the future to enhance the integrity of the game and create a fairer environment for all players?</span>]]></description>
			<content:encoded><![CDATA[<span style="font-weight: bold;" class="mycode_b">I'm writing to inquire about the possibility of implementing a Hardware ID (HWID) based ban system on the open.mp platform. Many players, including myself, have expressed concerns about the prevalence of cheating in GTA San Andreas multiplayer.<br />
<br />
HWID bans have proven effective in other online games to combat cheaters who bypass traditional IP or account bans. Are there any plans to introduce such a system in the future to enhance the integrity of the game and create a fairer environment for all players?</span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Is it possible in open.mp?]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3062</link>
			<pubDate>Tue, 04 Feb 2025 09:17:51 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=6806">Andued</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3062</guid>
			<description><![CDATA[<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">Is it possible in open.mp?to make all skins with the same skin rotation? You know, skins like 1, 269,270,271 have a better[faster] rotation and in DM these skins are better for players.</span></span>]]></description>
			<content:encoded><![CDATA[<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">Is it possible in open.mp?to make all skins with the same skin rotation? You know, skins like 1, 269,270,271 have a better[faster] rotation and in DM these skins are better for players.</span></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Help please]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3054</link>
			<pubDate>Wed, 29 Jan 2025 21:35:08 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=6783">dimon_429</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3054</guid>
			<description><![CDATA[Good afternoon, friends, there was a problem, I decided to build an omp server on my own and ran into this problem. <br />
CMAKE - 3.31 <br />
Conan - 1.57.0 <br />
Python - 3.13.1<br />
<br />
Error's<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>cmake .. -A Win32 -T ClangCL<br />
-- Building for: NMake Makefiles<br />
CMake Error at CMakeLists.txt:4 (project):<br />
  Generator<br />
<br />
    NMake Makefiles<br />
<br />
  does not support platform specification, but platform<br />
<br />
    Win32<br />
<br />
  was specified.<br />
<br />
<br />
-- Configuring incomplete, errors occurred!</code></div></div><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>---<br />
events:<br />
  -<br />
    kind: "message-v1"<br />
    backtrace:<br />
      - "C:/Program Files/CMake/share/cmake-3.31/Modules/CMakeDetermineSystem.cmake:205 (message)"<br />
      - "CMakeLists.txt:4 (project)"<br />
    message: |<br />
      The system is: Windows - 10.0.19045 - AMD64<br />
...</code></div></div>]]></description>
			<content:encoded><![CDATA[Good afternoon, friends, there was a problem, I decided to build an omp server on my own and ran into this problem. <br />
CMAKE - 3.31 <br />
Conan - 1.57.0 <br />
Python - 3.13.1<br />
<br />
Error's<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>cmake .. -A Win32 -T ClangCL<br />
-- Building for: NMake Makefiles<br />
CMake Error at CMakeLists.txt:4 (project):<br />
  Generator<br />
<br />
    NMake Makefiles<br />
<br />
  does not support platform specification, but platform<br />
<br />
    Win32<br />
<br />
  was specified.<br />
<br />
<br />
-- Configuring incomplete, errors occurred!</code></div></div><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>---<br />
events:<br />
  -<br />
    kind: "message-v1"<br />
    backtrace:<br />
      - "C:/Program Files/CMake/share/cmake-3.31/Modules/CMakeDetermineSystem.cmake:205 (message)"<br />
      - "CMakeLists.txt:4 (project)"<br />
    message: |<br />
      The system is: Windows - 10.0.19045 - AMD64<br />
...</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[0.3.7 and 0.3DL]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3051</link>
			<pubDate>Sun, 26 Jan 2025 18:46:45 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=2495">Torque</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3051</guid>
			<description><![CDATA[If I'm correct, open.mp launcher supports connecting to both 0.3DL and 0.3.7 servers. Do you need both versions installed into separate GTA San Andreas folders for this to work properly? Do you need SAMP installed at all for the open.mp launcher to do its thing?]]></description>
			<content:encoded><![CDATA[If I'm correct, open.mp launcher supports connecting to both 0.3DL and 0.3.7 servers. Do you need both versions installed into separate GTA San Andreas folders for this to work properly? Do you need SAMP installed at all for the open.mp launcher to do its thing?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[connection logging]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3050</link>
			<pubDate>Sat, 25 Jan 2025 02:05:54 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=6766">INVALID-PLAYER-ID</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3050</guid>
			<description><![CDATA[Hello everyone!<br />
config.json - <span style="color: #e1e4e8;" class="mycode_color"><span style="font-family: Consolas, 'Courier New', monospace;" class="mycode_font"><span style="color: #e1e4e8;" class="mycode_color"><span style="font-family: Consolas, 'Courier New', monospace;" class="mycode_font"><span style="color: #79b8ff;" class="mycode_color">"logging"</span></span></span></span></span>:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>"log_connection_messages": false</code></div></div>Why do I still get these messages in the console?<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>[connection] incoming connection: 127.0.0.1:54447 id: 0<br />
[join] Player has joined the server (0:127.0.0.1)<br />
[part] Player has left the server (0:1)</code></div></div>How do I turn them off?]]></description>
			<content:encoded><![CDATA[Hello everyone!<br />
config.json - <span style="color: #e1e4e8;" class="mycode_color"><span style="font-family: Consolas, 'Courier New', monospace;" class="mycode_font"><span style="color: #e1e4e8;" class="mycode_color"><span style="font-family: Consolas, 'Courier New', monospace;" class="mycode_font"><span style="color: #79b8ff;" class="mycode_color">"logging"</span></span></span></span></span>:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>"log_connection_messages": false</code></div></div>Why do I still get these messages in the console?<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>[connection] incoming connection: 127.0.0.1:54447 id: 0<br />
[join] Player has joined the server (0:127.0.0.1)<br />
[part] Player has left the server (0:1)</code></div></div>How do I turn them off?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Toggleable HUD / Underground MP changes]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3018</link>
			<pubDate>Wed, 01 Jan 2025 21:52:11 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=1028">Corne</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3018</guid>
			<description><![CDATA[So, my main suggestion was that it would be very nice to be able to toggle the HUD (cash, health, weapon, minimap, etc). Underground Multiplayer has done this in the past as an extension to SA-MP as well.<br />
<br />
But then I was thinking, while we're at it, why not look into all the changes that Underground MP did? Other changes like being able to give cars any color you want are pretty amazing too. Has there ever been any communication from the Open MP team with the former Underground MP dev team about this?<br />
<br />
It would/could break compatibility with SA-MP clients, but this could be a config setting like 0.3.7 compatibility, right?]]></description>
			<content:encoded><![CDATA[So, my main suggestion was that it would be very nice to be able to toggle the HUD (cash, health, weapon, minimap, etc). Underground Multiplayer has done this in the past as an extension to SA-MP as well.<br />
<br />
But then I was thinking, while we're at it, why not look into all the changes that Underground MP did? Other changes like being able to give cars any color you want are pretty amazing too. Has there ever been any communication from the Open MP team with the former Underground MP dev team about this?<br />
<br />
It would/could break compatibility with SA-MP clients, but this could be a config setting like 0.3.7 compatibility, right?]]></content:encoded>
		</item>
	</channel>
</rss>