<?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 - Pawn Scripting]]></title>
		<link>https://forum.open.mp/</link>
		<description><![CDATA[open.mp forum - https://forum.open.mp]]></description>
		<pubDate>Sat, 02 May 2026 06:15:50 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Open Multiplayer ✅ logging into SA-MP server after importing database]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3818</link>
			<pubDate>Thu, 05 Mar 2026 04:19:47 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=7970">walid_dz</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3818</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align">delete </div>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align">delete </div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[problem dialog clan members]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3793</link>
			<pubDate>Tue, 27 Jan 2026 19:30:41 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=7895">rcst3phan</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3793</guid>
			<description><![CDATA[<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">hello,</span></span><br />
<br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">i have a problem too it doesn't display the dialog for clan members,</span></span><br />
<br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">code: </span></span><br />
<br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">case 1: {</span></span><br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">new szDialog2[1024], Members, name[180], cwarn[180], cdays[180], szRank1[180];</span></span><br />
<br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">format(query, sizeof(query), "SELECT * FROM `users` WHERE `users`.`Clan` = '%d' ORDER BY `users`.`ClanRank` DESC LIMIT 50", PlayerInfo[playerid][pClan]);</span></span><br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">new Cache: result = mysql_query(SQL, query);</span></span><br />
<br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">strcat(szDialog2, "#. Name\tRank\tClan Warns\tClan Days\n");</span></span><br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">for(new i, j = cache_get_row_count (); i != j; ++i)</span></span><br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">{</span></span><br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">cache_get_field_content(i, "Username", name);</span></span><br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">cache_get_field_content(i, "ClanRank", szRank1);</span></span><br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">cache_get_field_content(i, "ClanWarns", cwarn);</span></span><br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">cache_get_field_content(i, "ClanDays", cdays);</span></span><br />
<br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">format(Selected[playerid][Members], MAX_PLAYER_NAME, name);</span></span><br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">format(szDialog, sizeof(szDialog), "%d. %s\t%d\t%s/3\t%s\n", Members+1, name, strval(szRank1), cwarn, cdays);</span></span><br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">strcat(szDialog2, szDialog);</span></span><br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">Members++;</span></span><br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">}</span></span><br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">cache_delete(result);</span></span><br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">ShowPlayerDialog(playerid, DIALOG_CLAN_MEMBERS, DIALOG_STYLE_TABLIST_HEADERS, "Clan members", szDialog2, "Ok", "Back");</span></span><br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">}</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">hello,</span></span><br />
<br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">i have a problem too it doesn't display the dialog for clan members,</span></span><br />
<br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">code: </span></span><br />
<br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">case 1: {</span></span><br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">new szDialog2[1024], Members, name[180], cwarn[180], cdays[180], szRank1[180];</span></span><br />
<br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">format(query, sizeof(query), "SELECT * FROM `users` WHERE `users`.`Clan` = '%d' ORDER BY `users`.`ClanRank` DESC LIMIT 50", PlayerInfo[playerid][pClan]);</span></span><br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">new Cache: result = mysql_query(SQL, query);</span></span><br />
<br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">strcat(szDialog2, "#. Name\tRank\tClan Warns\tClan Days\n");</span></span><br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">for(new i, j = cache_get_row_count (); i != j; ++i)</span></span><br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">{</span></span><br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">cache_get_field_content(i, "Username", name);</span></span><br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">cache_get_field_content(i, "ClanRank", szRank1);</span></span><br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">cache_get_field_content(i, "ClanWarns", cwarn);</span></span><br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">cache_get_field_content(i, "ClanDays", cdays);</span></span><br />
<br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">format(Selected[playerid][Members], MAX_PLAYER_NAME, name);</span></span><br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">format(szDialog, sizeof(szDialog), "%d. %s\t%d\t%s/3\t%s\n", Members+1, name, strval(szRank1), cwarn, cdays);</span></span><br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">strcat(szDialog2, szDialog);</span></span><br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">Members++;</span></span><br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">}</span></span><br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">cache_delete(result);</span></span><br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">ShowPlayerDialog(playerid, DIALOG_CLAN_MEMBERS, DIALOG_STYLE_TABLIST_HEADERS, "Clan members", szDialog2, "Ok", "Back");</span></span><br />
<span style="color: #666666;" class="mycode_color"><span style="font-family: 'Open Sans', Arial, Tahoma, sans-serif;" class="mycode_font">}</span></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Real-time pathfinder, optimized for thousands of calculations/tick]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3693</link>
			<pubDate>Fri, 05 Dec 2025 14:06:46 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=7178">ejtamovic</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3693</guid>
			<description><![CDATA[<a href="https://linkfile.io/s/96" target="_blank" rel="noopener" class="mycode_url">https://linkfile.io/s/96</a><br />
<br />
Showcase of the plugin. There are 800 NPCs spawned.<br />
The pathfinder is aware of obstacles, steep angles, water, etc.<br />
This is work in progress.]]></description>
			<content:encoded><![CDATA[<a href="https://linkfile.io/s/96" target="_blank" rel="noopener" class="mycode_url">https://linkfile.io/s/96</a><br />
<br />
Showcase of the plugin. There are 800 NPCs spawned.<br />
The pathfinder is aware of obstacles, steep angles, water, etc.<br />
This is work in progress.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Need assistance]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3584</link>
			<pubDate>Thu, 16 Oct 2025 12:44:38 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=7501">Cruncher</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3584</guid>
			<description><![CDATA[<div class="codeblock phpcodeblock"><div class="title">PHP Code:</div><div class="body"><div dir="ltr"><code><span style="color: #007700">if(</span><span style="color: #0000BB">strcmp</span><span style="color: #007700">(</span><span style="color: #0000BB">cmd</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"/resfacveh"</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">true</span><span style="color: #007700">)&nbsp;==&nbsp;</span><span style="color: #0000BB">0&nbsp;</span><span style="color: #007700">||&nbsp;</span><span style="color: #0000BB">strcmp</span><span style="color: #007700">(</span><span style="color: #0000BB">cmd</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"/rffv"</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">true</span><span style="color: #007700">)&nbsp;==&nbsp;</span><span style="color: #0000BB">0</span><span style="color: #007700">)&nbsp;</span><span style="color: #FF8000">//&nbsp;by&nbsp;Mikkel&nbsp;Reimer<br /></span><span style="color: #007700">{<br /></span><span style="color: #0000BB"> &nbsp; &nbsp;</span><span style="color: #007700">if(</span><span style="color: #0000BB">IsPlayerConnected</span><span style="color: #007700">(</span><span style="color: #0000BB">playerid</span><span style="color: #007700">))<br /></span><span style="color: #0000BB"> &nbsp; &nbsp;</span><span style="color: #007700">{<br /></span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &nbsp;</span><span style="color: #007700">if(!</span><span style="color: #0000BB">IsACop</span><span style="color: #007700">(</span><span style="color: #0000BB">playerid</span><span style="color: #007700">))<br />{<br /></span><span style="color: #0000BB"> &nbsp; &nbsp;SendClientMessage</span><span style="color: #007700">(</span><span style="color: #0000BB">playerid</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">COLOR_GRAD1</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">" &nbsp;you&nbsp;are&nbsp;not&nbsp;authorized&nbsp;to&nbsp;use&nbsp;that&nbsp;command!"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB"> &nbsp; &nbsp;</span><span style="color: #007700">return&nbsp;</span><span style="color: #0000BB">1</span><span style="color: #007700">;<br />}<br />new&nbsp;</span><span style="color: #0000BB">bool</span><span style="color: #007700">:</span><span style="color: #0000BB">unwanted</span><span style="color: #007700">[</span><span style="color: #0000BB">LSPDCars</span><span style="color: #007700">];<br />for(new&nbsp;</span><span style="color: #0000BB">player</span><span style="color: #007700">=</span><span style="color: #0000BB">0</span><span style="color: #007700">;&nbsp;</span><span style="color: #0000BB">player</span><span style="color: #007700">&lt;</span><span style="color: #0000BB">MAX_PLAYERS</span><span style="color: #007700">;&nbsp;</span><span style="color: #0000BB">player</span><span style="color: #007700">++)<br /></span><span style="color: #0000BB"> &nbsp; &nbsp;</span><span style="color: #007700">{<br /></span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span><span style="color: #007700">if(</span><span style="color: #0000BB">IsPlayerInAnyVehicle</span><span style="color: #007700">(</span><span style="color: #0000BB">player</span><span style="color: #007700">))&nbsp;{&nbsp;</span><span style="color: #0000BB">unwanted</span><span style="color: #007700">[</span><span style="color: #0000BB">GetPlayerVehicleID</span><span style="color: #007700">(</span><span style="color: #0000BB">player</span><span style="color: #007700">)]=</span><span style="color: #0000BB">true</span><span style="color: #007700">;&nbsp;}<br /></span><span style="color: #0000BB"> &nbsp; &nbsp;</span><span style="color: #007700">}<br />for(new&nbsp;</span><span style="color: #0000BB">LSPDCars&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">1</span><span style="color: #007700">;&nbsp;</span><span style="color: #0000BB">LSPDCars&nbsp;</span><span style="color: #007700">&lt;=&nbsp;</span><span style="color: #0000BB">25</span><span style="color: #007700">;&nbsp;</span><span style="color: #0000BB">LSPDCars</span><span style="color: #007700">++)<br />{<br />if(!</span><span style="color: #0000BB">unwanted</span><span style="color: #007700">[</span><span style="color: #0000BB">LSPDCars</span><span style="color: #007700">])&nbsp;</span><span style="color: #0000BB">SetVehicleToRespawn</span><span style="color: #007700">(</span><span style="color: #0000BB">LSPDCars</span><span style="color: #007700">);<br />}<br /></span><span style="color: #0000BB">GetPlayerName</span><span style="color: #007700">(</span><span style="color: #0000BB">playerid</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">sendername</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">sizeof</span><span style="color: #007700">(</span><span style="color: #0000BB">sendername</span><span style="color: #007700">));<br /></span><span style="color: #0000BB">format</span><span style="color: #007700">(</span><span style="color: #0000BB">string</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">sizeof</span><span style="color: #007700">(string),&nbsp;</span><span style="color: #DD0000">"SERVER:&nbsp;"</span><span style="color: #0000BB">COL_WHITE</span><span style="color: #DD0000">"All&nbsp;unused&nbsp;vehicles&nbsp;were&nbsp;respawned&nbsp;by&nbsp;Administrator&nbsp;%s."</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">sendername</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">SendClientMessageToAll</span><span style="color: #007700">(</span><span style="color: #0000BB">COLOR_YELLOW</span><span style="color: #007700">,</span><span style="color: #0000BB">string</span><span style="color: #007700">);<br />}<br />return&nbsp;</span><span style="color: #0000BB">1</span><span style="color: #007700">;<br />}&nbsp;<br /></span></code></div></div></div><br />
<br />
I keep getting error with the "bool:unwanted" line trying to work out another way to to detect and avoid respawning vehicles that dont have a driver<br />
Any help or advise would be appreciated...]]></description>
			<content:encoded><![CDATA[<div class="codeblock phpcodeblock"><div class="title">PHP Code:</div><div class="body"><div dir="ltr"><code><span style="color: #007700">if(</span><span style="color: #0000BB">strcmp</span><span style="color: #007700">(</span><span style="color: #0000BB">cmd</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"/resfacveh"</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">true</span><span style="color: #007700">)&nbsp;==&nbsp;</span><span style="color: #0000BB">0&nbsp;</span><span style="color: #007700">||&nbsp;</span><span style="color: #0000BB">strcmp</span><span style="color: #007700">(</span><span style="color: #0000BB">cmd</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">"/rffv"</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">true</span><span style="color: #007700">)&nbsp;==&nbsp;</span><span style="color: #0000BB">0</span><span style="color: #007700">)&nbsp;</span><span style="color: #FF8000">//&nbsp;by&nbsp;Mikkel&nbsp;Reimer<br /></span><span style="color: #007700">{<br /></span><span style="color: #0000BB"> &nbsp; &nbsp;</span><span style="color: #007700">if(</span><span style="color: #0000BB">IsPlayerConnected</span><span style="color: #007700">(</span><span style="color: #0000BB">playerid</span><span style="color: #007700">))<br /></span><span style="color: #0000BB"> &nbsp; &nbsp;</span><span style="color: #007700">{<br /></span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &nbsp;</span><span style="color: #007700">if(!</span><span style="color: #0000BB">IsACop</span><span style="color: #007700">(</span><span style="color: #0000BB">playerid</span><span style="color: #007700">))<br />{<br /></span><span style="color: #0000BB"> &nbsp; &nbsp;SendClientMessage</span><span style="color: #007700">(</span><span style="color: #0000BB">playerid</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">COLOR_GRAD1</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">" &nbsp;you&nbsp;are&nbsp;not&nbsp;authorized&nbsp;to&nbsp;use&nbsp;that&nbsp;command!"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB"> &nbsp; &nbsp;</span><span style="color: #007700">return&nbsp;</span><span style="color: #0000BB">1</span><span style="color: #007700">;<br />}<br />new&nbsp;</span><span style="color: #0000BB">bool</span><span style="color: #007700">:</span><span style="color: #0000BB">unwanted</span><span style="color: #007700">[</span><span style="color: #0000BB">LSPDCars</span><span style="color: #007700">];<br />for(new&nbsp;</span><span style="color: #0000BB">player</span><span style="color: #007700">=</span><span style="color: #0000BB">0</span><span style="color: #007700">;&nbsp;</span><span style="color: #0000BB">player</span><span style="color: #007700">&lt;</span><span style="color: #0000BB">MAX_PLAYERS</span><span style="color: #007700">;&nbsp;</span><span style="color: #0000BB">player</span><span style="color: #007700">++)<br /></span><span style="color: #0000BB"> &nbsp; &nbsp;</span><span style="color: #007700">{<br /></span><span style="color: #0000BB"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span><span style="color: #007700">if(</span><span style="color: #0000BB">IsPlayerInAnyVehicle</span><span style="color: #007700">(</span><span style="color: #0000BB">player</span><span style="color: #007700">))&nbsp;{&nbsp;</span><span style="color: #0000BB">unwanted</span><span style="color: #007700">[</span><span style="color: #0000BB">GetPlayerVehicleID</span><span style="color: #007700">(</span><span style="color: #0000BB">player</span><span style="color: #007700">)]=</span><span style="color: #0000BB">true</span><span style="color: #007700">;&nbsp;}<br /></span><span style="color: #0000BB"> &nbsp; &nbsp;</span><span style="color: #007700">}<br />for(new&nbsp;</span><span style="color: #0000BB">LSPDCars&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">1</span><span style="color: #007700">;&nbsp;</span><span style="color: #0000BB">LSPDCars&nbsp;</span><span style="color: #007700">&lt;=&nbsp;</span><span style="color: #0000BB">25</span><span style="color: #007700">;&nbsp;</span><span style="color: #0000BB">LSPDCars</span><span style="color: #007700">++)<br />{<br />if(!</span><span style="color: #0000BB">unwanted</span><span style="color: #007700">[</span><span style="color: #0000BB">LSPDCars</span><span style="color: #007700">])&nbsp;</span><span style="color: #0000BB">SetVehicleToRespawn</span><span style="color: #007700">(</span><span style="color: #0000BB">LSPDCars</span><span style="color: #007700">);<br />}<br /></span><span style="color: #0000BB">GetPlayerName</span><span style="color: #007700">(</span><span style="color: #0000BB">playerid</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">sendername</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">sizeof</span><span style="color: #007700">(</span><span style="color: #0000BB">sendername</span><span style="color: #007700">));<br /></span><span style="color: #0000BB">format</span><span style="color: #007700">(</span><span style="color: #0000BB">string</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">sizeof</span><span style="color: #007700">(string),&nbsp;</span><span style="color: #DD0000">"SERVER:&nbsp;"</span><span style="color: #0000BB">COL_WHITE</span><span style="color: #DD0000">"All&nbsp;unused&nbsp;vehicles&nbsp;were&nbsp;respawned&nbsp;by&nbsp;Administrator&nbsp;%s."</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">sendername</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">SendClientMessageToAll</span><span style="color: #007700">(</span><span style="color: #0000BB">COLOR_YELLOW</span><span style="color: #007700">,</span><span style="color: #0000BB">string</span><span style="color: #007700">);<br />}<br />return&nbsp;</span><span style="color: #0000BB">1</span><span style="color: #007700">;<br />}&nbsp;<br /></span></code></div></div></div><br />
<br />
I keep getting error with the "bool:unwanted" line trying to work out another way to to detect and avoid respawning vehicles that dont have a driver<br />
Any help or advise would be appreciated...]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Original Godfather]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3583</link>
			<pubDate>Tue, 14 Oct 2025 20:35:40 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=7592">NmE</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3583</guid>
			<description><![CDATA[Hello there, <br />
<br />
does anyone have the original Godfather Script released by FeaR? All the download links are either dead or just edits of the script.<br />
<br />
BR]]></description>
			<content:encoded><![CDATA[Hello there, <br />
<br />
does anyone have the original Godfather Script released by FeaR? All the download links are either dead or just edits of the script.<br />
<br />
BR]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Problem with MAP. Please help!]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3579</link>
			<pubDate>Sun, 12 Oct 2025 06:39:57 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=7609">hoshimitsu</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3579</guid>
			<description><![CDATA[I'm working on a map with procedural generation that includes around 2000–4000+ objects. However, I'm currently stuck with a rendering issue.<br />
When I rotate the camera, some objects behave strangely — they appear and disappear randomly, like flickering or popping in and out of view.<br />
<br />
Here are two screenshots showing the issue from different camera rotations:<br />
<a href="https://imgur.com/a/9ppoWAI" target="_blank" rel="noopener" class="mycode_url">https://imgur.com/a/9ppoWAI</a><br />
<br />
Does anyone know how to fix this or what might be causing it?]]></description>
			<content:encoded><![CDATA[I'm working on a map with procedural generation that includes around 2000–4000+ objects. However, I'm currently stuck with a rendering issue.<br />
When I rotate the camera, some objects behave strangely — they appear and disappear randomly, like flickering or popping in and out of view.<br />
<br />
Here are two screenshots showing the issue from different camera rotations:<br />
<a href="https://imgur.com/a/9ppoWAI" target="_blank" rel="noopener" class="mycode_url">https://imgur.com/a/9ppoWAI</a><br />
<br />
Does anyone know how to fix this or what might be causing it?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[I get since compiler and ysi includes update errors]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3578</link>
			<pubDate>Sat, 11 Oct 2025 15:29:24 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=7607">pauli</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3578</guid>
			<description><![CDATA[.....]]></description>
			<content:encoded><![CDATA[.....]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[HELP] Back to Pawn Scripting [Newbie[]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3572</link>
			<pubDate>Thu, 09 Oct 2025 04:54:07 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=4272">king599</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3572</guid>
			<description><![CDATA[Hello guys, so last time when i was active i used to know few things here and there, and i still Do but need some revision. <br />
now on the problem which am facing is: <br />
<br />
1: Older Game-mode which was complied via older version of Pawno. ( I See there is a newer Version of this ) so what whould be the correct way to do the conversion ?<br />
<br />
2: I'm a Bit Confused on SAMPCTL And getting the Complier on VSCode which i now use to Practics my Python ( i'm Learning Python ) <br />
<br />
3: Some older Game-mode do not support the lastest Plugins ie: <span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font">streamer by Incognito, <span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font"> sscanf by Y-Less, <span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font">zcmd by Zeex. </span></span></span><br />
<br />
<span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font"><span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font"><span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font">4: Is there any tutorials which will help on the confusing i have on SAMPCTL Oh one more i did manage to Use Pawno in Vscode also SAMPCTL but it's a Mess please see screen shot.  <img src="https://imgur.com/a/6vPgjlj" loading="lazy"  width="500" height="500" alt="[Image: 6vPgjlj]" class="mycode_img" /> </span></span></span><br />
<br />
<span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font"><span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font"><span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font">5: Now what i have been trying to do is Re-Create / Modifiy PPC_Trucking Game mode By PowerPC603, Also do anyone have the Full Package of it? i Remember it didn't had PPC_Houseing as Include now i see 80 Percentage of the functions are in Includes. i want all the code inside one Single file. <span style="font-weight: bold;" class="mycode_b"><span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font">[b]<span style="font-size: 1pt;" class="mycode_size">[url=https://sampforum.blast.hk/member.php?action=profile&amp;uid=109984][/url]</span></span></span>[/b]</span></span></span><br />
<br />
<span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font"><span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font"><span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font">6: Apolagies if i Posted on the Wrong Thread also i came back for Nostalgia with the hope of being a Good Scripter since am also Learning another language. </span></span></span><br />
<br />
<span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font"><span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font"><span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font">Thank you for Reading this whole thing if you did not understand some lines please comment, my english is not top of the line since it is not my 1st language. </span></span></span><br />
<br />
<span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font"><span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font"><span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font">Regards</span></span></span><br />
<span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font"><span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font"><span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font">- King</span></span></span>]]></description>
			<content:encoded><![CDATA[Hello guys, so last time when i was active i used to know few things here and there, and i still Do but need some revision. <br />
now on the problem which am facing is: <br />
<br />
1: Older Game-mode which was complied via older version of Pawno. ( I See there is a newer Version of this ) so what whould be the correct way to do the conversion ?<br />
<br />
2: I'm a Bit Confused on SAMPCTL And getting the Complier on VSCode which i now use to Practics my Python ( i'm Learning Python ) <br />
<br />
3: Some older Game-mode do not support the lastest Plugins ie: <span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font">streamer by Incognito, <span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font"> sscanf by Y-Less, <span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font">zcmd by Zeex. </span></span></span><br />
<br />
<span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font"><span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font"><span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font">4: Is there any tutorials which will help on the confusing i have on SAMPCTL Oh one more i did manage to Use Pawno in Vscode also SAMPCTL but it's a Mess please see screen shot.  <img src="https://imgur.com/a/6vPgjlj" loading="lazy"  width="500" height="500" alt="[Image: 6vPgjlj]" class="mycode_img" /> </span></span></span><br />
<br />
<span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font"><span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font"><span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font">5: Now what i have been trying to do is Re-Create / Modifiy PPC_Trucking Game mode By PowerPC603, Also do anyone have the Full Package of it? i Remember it didn't had PPC_Houseing as Include now i see 80 Percentage of the functions are in Includes. i want all the code inside one Single file. <span style="font-weight: bold;" class="mycode_b"><span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font">[b]<span style="font-size: 1pt;" class="mycode_size">[url=https://sampforum.blast.hk/member.php?action=profile&amp;uid=109984][/url]</span></span></span>[/b]</span></span></span><br />
<br />
<span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font"><span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font"><span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font">6: Apolagies if i Posted on the Wrong Thread also i came back for Nostalgia with the hope of being a Good Scripter since am also Learning another language. </span></span></span><br />
<br />
<span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font"><span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font"><span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font">Thank you for Reading this whole thing if you did not understand some lines please comment, my english is not top of the line since it is not my 1st language. </span></span></span><br />
<br />
<span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font"><span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font"><span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font">Regards</span></span></span><br />
<span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font"><span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font"><span style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;" class="mycode_font">- King</span></span></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[press enter instead of /enter]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3537</link>
			<pubDate>Sat, 20 Sep 2025 17:22:10 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=7501">Cruncher</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3537</guid>
			<description><![CDATA[I have made a code for pressing "y" to enter a house which works fine but the exit code doesnt work, When i am inside the house interior /exit cmd doesnt work either but if i enter the house with /enter then /exit works fine.<br />
I am new to scripting so dont know if i am missing something or what, any input would be greatly appreciated...<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>// House entry<br />
    if(newkeys &amp; KEY_YES)<br />
    {<br />
    for(new i = 0; i &lt; sizeof(HouseInfo); i++)<br />
{<br />
        if(IsPlayerInRangeOfPoint(playerid, 3, HouseInfo[i][hExteriorX], HouseInfo[i][hExteriorY], HouseInfo[i][hExteriorZ]))<br />
        {<br />
SetPlayerInterior( playerid, HouseInfo[i][hInteriorID]);<br />
SetPlayerVirtualWorld( playerid, HouseInfo[i][hVirWorld]);<br />
PlayerInfo[playerid][pVirtualWorld] = HouseInfo[i][hVirWorld];<br />
SetPlayerPos( playerid, HouseInfo[i][hInteriorX], HouseInfo[i][hInteriorY], HouseInfo[i][hInteriorZ]);<br />
}<br />
}<br />
return 1;<br />
}<br />
// House exit<br />
if(newkeys &amp; KEY_YES)<br />
    {<br />
    for(new i = 0; i &lt; sizeof(HouseInfo); i++)<br />
{<br />
        if(IsPlayerInRangeOfPoint(playerid, 3, HouseInfo[PlayerInfo[playerid][InHouse]][hInteriorX], HouseInfo[PlayerInfo[playerid][InHouse]][hInteriorY], HouseInfo[PlayerInfo[playerid][InHouse]][hInteriorZ]))<br />
{<br />
PlayerInfo[playerid][pVirtualWorld] = 0;<br />
  SetPlayerVirtualWorld(playerid, 0);<br />
      SetPlayerInterior(playerid, HouseInfo[i][hExteriorID]);<br />
      SetPlayerPos(playerid, HouseInfo[i][hExteriorX], HouseInfo[i][hExteriorY], HouseInfo[i][hExteriorZ]);<br />
}<br />
}<br />
return 1;<br />
}</code></div></div>]]></description>
			<content:encoded><![CDATA[I have made a code for pressing "y" to enter a house which works fine but the exit code doesnt work, When i am inside the house interior /exit cmd doesnt work either but if i enter the house with /enter then /exit works fine.<br />
I am new to scripting so dont know if i am missing something or what, any input would be greatly appreciated...<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>// House entry<br />
    if(newkeys &amp; KEY_YES)<br />
    {<br />
    for(new i = 0; i &lt; sizeof(HouseInfo); i++)<br />
{<br />
        if(IsPlayerInRangeOfPoint(playerid, 3, HouseInfo[i][hExteriorX], HouseInfo[i][hExteriorY], HouseInfo[i][hExteriorZ]))<br />
        {<br />
SetPlayerInterior( playerid, HouseInfo[i][hInteriorID]);<br />
SetPlayerVirtualWorld( playerid, HouseInfo[i][hVirWorld]);<br />
PlayerInfo[playerid][pVirtualWorld] = HouseInfo[i][hVirWorld];<br />
SetPlayerPos( playerid, HouseInfo[i][hInteriorX], HouseInfo[i][hInteriorY], HouseInfo[i][hInteriorZ]);<br />
}<br />
}<br />
return 1;<br />
}<br />
// House exit<br />
if(newkeys &amp; KEY_YES)<br />
    {<br />
    for(new i = 0; i &lt; sizeof(HouseInfo); i++)<br />
{<br />
        if(IsPlayerInRangeOfPoint(playerid, 3, HouseInfo[PlayerInfo[playerid][InHouse]][hInteriorX], HouseInfo[PlayerInfo[playerid][InHouse]][hInteriorY], HouseInfo[PlayerInfo[playerid][InHouse]][hInteriorZ]))<br />
{<br />
PlayerInfo[playerid][pVirtualWorld] = 0;<br />
  SetPlayerVirtualWorld(playerid, 0);<br />
      SetPlayerInterior(playerid, HouseInfo[i][hExteriorID]);<br />
      SetPlayerPos(playerid, HouseInfo[i][hExteriorX], HouseInfo[i][hExteriorY], HouseInfo[i][hExteriorZ]);<br />
}<br />
}<br />
return 1;<br />
}</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Need help, problem when i update streamer 2.9.3 to 2.9.6]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3490</link>
			<pubDate>Sat, 06 Sep 2025 18:21:36 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=7485">nonickowned</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3490</guid>
			<description><![CDATA[After i change the streamer plugin in the includes folder, i try to compile and i get all of this warnings and errors! the ones from the GM are related to those 2 functionsnullnullnull<br />
<br />
<a href="https://imgur.com/a/QM5N87l" target="_blank" rel="noopener" class="mycode_url">https://imgur.com/a/QM5N87l</a>]]></description>
			<content:encoded><![CDATA[After i change the streamer plugin in the includes folder, i try to compile and i get all of this warnings and errors! the ones from the GM are related to those 2 functionsnullnullnull<br />
<br />
<a href="https://imgur.com/a/QM5N87l" target="_blank" rel="noopener" class="mycode_url">https://imgur.com/a/QM5N87l</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Compilation error]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3481</link>
			<pubDate>Fri, 05 Sep 2025 07:00:05 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=7475">primat</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3481</guid>
			<description><![CDATA[I recieve this error message <blockquote class="mycode_quote"><cite>Quote:</cite>C:\Users\unity\Documents\Server\qawno\include\sscanf2.inc(33) : user error: Please include &lt;a_npc&gt; or &lt;a_samp&gt; first.<br />
<br />
Compilation aborted.<br />
<br />
Pawn compiler 3.10.11 Copyright &copy; 1997-2006, ITB CompuPhase</blockquote>
<br />
<br />
but in my gamemode file it is already included <br />
<br />
<a href="https://imgur.com/a/FFhgQl3" target="_blank" rel="noopener" class="mycode_url">Image</a><br />
<br />
Please help me someone]]></description>
			<content:encoded><![CDATA[I recieve this error message <blockquote class="mycode_quote"><cite>Quote:</cite>C:\Users\unity\Documents\Server\qawno\include\sscanf2.inc(33) : user error: Please include &lt;a_npc&gt; or &lt;a_samp&gt; first.<br />
<br />
Compilation aborted.<br />
<br />
Pawn compiler 3.10.11 Copyright &copy; 1997-2006, ITB CompuPhase</blockquote>
<br />
<br />
but in my gamemode file it is already included <br />
<br />
<a href="https://imgur.com/a/FFhgQl3" target="_blank" rel="noopener" class="mycode_url">Image</a><br />
<br />
Please help me someone]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Hiring SA-MP Scripter(s) — Vice City RP (Unique RP Systems, Level-Based Jobs, Custom]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3343</link>
			<pubDate>Thu, 14 Aug 2025 01:02:08 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=7386">unhappytony</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3343</guid>
			<description><![CDATA[Hello,<br />
We’re seeking experienced SA-MP scripters to help develop <span style="font-weight: bold;" class="mycode_b">Vice City RP</span>, a unique SA-MP roleplay project aiming to bring modern RP features into San Andreas Multiplayer.<br />
Planned features:<ul class="mycode_list"><li>GTA V–style <span style="font-weight: bold;" class="mycode_b">character creation</span> (first for SA-MP)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Level-based jobs</span> with skill progression (e.g., drug/gun smuggling unlocks better items over time)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Dynamic dealerships</span> with stock limits, player restocking jobs, and used car trade-ins<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Custom weapons &amp; interiors</span> for businesses and homes<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Balanced RP environment</span> with Admin oversight but gameplay-focused progression<br />
</li>
</ul>
We can handle basic server setup and scripting, but we’re looking for devs to build custom systems and polish existing ones. Payment can be discussed based on scope.<br />
If you’re interested in helping create a <span style="font-weight: bold;" class="mycode_b">fresh, competitive, and fun RP server</span>, please reach out via Discord: <a href="https://discord.gg/YbNxuGpcKG" target="_blank" rel="noopener" class="mycode_url">https://discord.gg/YbNxuGpcKG</a>]]></description>
			<content:encoded><![CDATA[Hello,<br />
We’re seeking experienced SA-MP scripters to help develop <span style="font-weight: bold;" class="mycode_b">Vice City RP</span>, a unique SA-MP roleplay project aiming to bring modern RP features into San Andreas Multiplayer.<br />
Planned features:<ul class="mycode_list"><li>GTA V–style <span style="font-weight: bold;" class="mycode_b">character creation</span> (first for SA-MP)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Level-based jobs</span> with skill progression (e.g., drug/gun smuggling unlocks better items over time)<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Dynamic dealerships</span> with stock limits, player restocking jobs, and used car trade-ins<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Custom weapons &amp; interiors</span> for businesses and homes<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">Balanced RP environment</span> with Admin oversight but gameplay-focused progression<br />
</li>
</ul>
We can handle basic server setup and scripting, but we’re looking for devs to build custom systems and polish existing ones. Payment can be discussed based on scope.<br />
If you’re interested in helping create a <span style="font-weight: bold;" class="mycode_b">fresh, competitive, and fun RP server</span>, please reach out via Discord: <a href="https://discord.gg/YbNxuGpcKG" target="_blank" rel="noopener" class="mycode_url">https://discord.gg/YbNxuGpcKG</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Developer for Hire – Systems, Bug Fixes, Snippets & More]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3208</link>
			<pubDate>Fri, 04 Jul 2025 08:35:19 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=7178">ejtamovic</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3208</guid>
			<description><![CDATA[Hey everyone,<br />
<br />
I’m offering my development services for any kind of SA-MP/open.mp server – roleplay, freeroam, TDM, or something custom. I’ve been scripting for 8+ years and can help with pretty much anything PAWN-related.<br />
<br />
What I can do:<br />
<ul class="mycode_list"><li>Build full systems (admin, jobs, inventories, etc.)<br />
</li>
<li>Fix bugs and optimise existing code<br />
</li>
<li>Write small scripts or specific features/snippets<br />
</li>
<li>Work with MySQL, YSI, streamer, sscanf2, etc.<br />
</li>
<li>Basically, anything from small tweaks to full-feature development<br />
</li>
</ul>
<br />
I have a background in web development, so if you ever need something that combines both (like APIs, etc.), I can help there too.<br />
<br />
Pricing:<br />
<ul class="mycode_list"><li>Per hour or per feature – whatever works best for the task<br />
</li>
<li>Fair rates depending on what you need<br />
</li>
</ul>
<br />
If you are interested, just shoot me a private message here on the forum and we can chat about what you need.]]></description>
			<content:encoded><![CDATA[Hey everyone,<br />
<br />
I’m offering my development services for any kind of SA-MP/open.mp server – roleplay, freeroam, TDM, or something custom. I’ve been scripting for 8+ years and can help with pretty much anything PAWN-related.<br />
<br />
What I can do:<br />
<ul class="mycode_list"><li>Build full systems (admin, jobs, inventories, etc.)<br />
</li>
<li>Fix bugs and optimise existing code<br />
</li>
<li>Write small scripts or specific features/snippets<br />
</li>
<li>Work with MySQL, YSI, streamer, sscanf2, etc.<br />
</li>
<li>Basically, anything from small tweaks to full-feature development<br />
</li>
</ul>
<br />
I have a background in web development, so if you ever need something that combines both (like APIs, etc.), I can help there too.<br />
<br />
Pricing:<br />
<ul class="mycode_list"><li>Per hour or per feature – whatever works best for the task<br />
</li>
<li>Fair rates depending on what you need<br />
</li>
</ul>
<br />
If you are interested, just shoot me a private message here on the forum and we can chat about what you need.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[GameText styles in open.mp]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3207</link>
			<pubDate>Sat, 28 Jun 2025 10:52:33 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=2933">Miki</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3207</guid>
			<description><![CDATA[Hello, I've started implementing zones in my gamemode and I wanted to show them as GameTextForPlayer style 8 like in singleplayer, but unfortunately it doesn't work while the rest of the styles (that were already in SA-MP without fixes.inc) do. I've read on official docs that fixes.inc contained all the other ones, but i thought open.mp already has most of the fixes.inc and YSF stuff. How do I get style 8 to work?]]></description>
			<content:encoded><![CDATA[Hello, I've started implementing zones in my gamemode and I wanted to show them as GameTextForPlayer style 8 like in singleplayer, but unfortunately it doesn't work while the rest of the styles (that were already in SA-MP without fixes.inc) do. I've read on official docs that fixes.inc contained all the other ones, but i thought open.mp already has most of the fixes.inc and YSF stuff. How do I get style 8 to work?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Offering Pawn Scripting Services]]></title>
			<link>https://forum.open.mp/showthread.php?tid=3197</link>
			<pubDate>Sat, 07 Jun 2025 13:30:49 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forum.open.mp/member.php?action=profile&uid=4977">Mido</a>]]></dc:creator>
			<guid isPermaLink="false">https://forum.open.mp/showthread.php?tid=3197</guid>
			<description><![CDATA[I have a lot of free time this summer and I am offering scripting services for SA\:MP and open.mp servers. If you need bugs fixed, new features added, or a full gamemode written, feel free to reach out.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">What am I offering?</span><br />
I am offering Pawn scripting services for SA\:MP and open.mp servers and communities. You can hire me to fix bugs, add new features, develop a new gamemode from scratch, or even fully convert an existing gamemode to open.mp.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">What can I do?</span><br />
- Fix bugs and issues in existing scripts.<br />
- Write new features and systems.<br />
- Develop full gamemodes from the ground up.<br />
- Fully convert gamemodes to open.mp.<br />
- Clean up and optimize code.<br />
- And pretty much anything that involves Pawn scripting.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">How can you pay me?</span><br />
At the moment, I only accept payment via Western Union or any other simple international method (no hassle).<br />
<br />
<span style="font-weight: bold;" class="mycode_b">How do you contact me?</span><br />
Just DM me on Discord, my user handle `justmido` or you can find me in the <a href="https://discord.gg/samp" target="_blank" rel="noopener" class="mycode_url">open.mp discord</a>. Feel free to give me as much detail as possible about what you need - the more info I have, the better I can make it work for you.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Are you open to ongoing work?</span><br />
Yes. I can take both one-time tasks and long-term projects.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">How much does it cost?</span><br />
It depends on the work - simple fixes will naturally cost less than complex systems or full gamemodes. Once you tell me what you need, I will give you a fair and clear price before starting.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Do you have any work to show?</span><br />
Most of the projects I work on are done behind the scenes - I do not record, publish, or showcase them publicly. If you are looking for someone who works quietly and delivers solid results, you can trust that I know what I am doing.]]></description>
			<content:encoded><![CDATA[I have a lot of free time this summer and I am offering scripting services for SA\:MP and open.mp servers. If you need bugs fixed, new features added, or a full gamemode written, feel free to reach out.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">What am I offering?</span><br />
I am offering Pawn scripting services for SA\:MP and open.mp servers and communities. You can hire me to fix bugs, add new features, develop a new gamemode from scratch, or even fully convert an existing gamemode to open.mp.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">What can I do?</span><br />
- Fix bugs and issues in existing scripts.<br />
- Write new features and systems.<br />
- Develop full gamemodes from the ground up.<br />
- Fully convert gamemodes to open.mp.<br />
- Clean up and optimize code.<br />
- And pretty much anything that involves Pawn scripting.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">How can you pay me?</span><br />
At the moment, I only accept payment via Western Union or any other simple international method (no hassle).<br />
<br />
<span style="font-weight: bold;" class="mycode_b">How do you contact me?</span><br />
Just DM me on Discord, my user handle `justmido` or you can find me in the <a href="https://discord.gg/samp" target="_blank" rel="noopener" class="mycode_url">open.mp discord</a>. Feel free to give me as much detail as possible about what you need - the more info I have, the better I can make it work for you.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Are you open to ongoing work?</span><br />
Yes. I can take both one-time tasks and long-term projects.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">How much does it cost?</span><br />
It depends on the work - simple fixes will naturally cost less than complex systems or full gamemodes. Once you tell me what you need, I will give you a fair and clear price before starting.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Do you have any work to show?</span><br />
Most of the projects I work on are done behind the scenes - I do not record, publish, or showcase them publicly. If you are looking for someone who works quietly and delivers solid results, you can trust that I know what I am doing.]]></content:encoded>
		</item>
	</channel>
</rss>