<?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[Fullserver.org CS 1.6 Community Forum - General Questions about Mods and Plugins]]></title>
		<link>https://fullserver.org/forum/</link>
		<description><![CDATA[Fullserver.org CS 1.6 Community Forum - https://fullserver.org/forum]]></description>
		<pubDate>Mon, 25 May 2026 10:51:50 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Installing Plugins]]></title>
			<link>https://fullserver.org/forum/thread-11.html</link>
			<pubDate>Sun, 04 Jun 2023 09:48:04 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://fullserver.org/forum/member.php?action=profile&uid=1">Fullserver</a>]]></dc:creator>
			<guid isPermaLink="false">https://fullserver.org/forum/thread-11.html</guid>
			<description><![CDATA[This article discusses the "Installation of plugins on a game server." Plugins that have been compiled using compiler services have the .amxx extension.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Installation Instructions:</span><br />
<ol type="1" class="mycode_list"><li>Download the .amxx plugin.<br />
</li>
<li>Access the FTP of the game server.<br />
</li>
<li>Upload the plugin to the cstrike/addons/amxmodx/plugins/ directory.<br />
</li>
<li>Go back to cstrike/addons/amxmodx/configs/plugins.ini.<br />
</li>
<li>Add the name of the plugin with the extension (plugin.amxx) to the configuration file.<br />
</li>
</ol>
<span style="font-weight: bold;" class="mycode_b">Let's break it down with an example:</span><br />
<ol type="1" class="mycode_list"><li>Downloaded plugin.amxx.<br />
</li>
<li>Accessed the FTP of the game server.<br />
</li>
<li>Uploaded the plugin to the cstrike/addons/amxmodx/plugins/ directory.<br />
</li>
<li>Go back to cstrike/addons/amxmodx/configs/plugins.ini.<br />
</li>
<li>Added the name of the plugin with the extension (plugin.amxx) to the configuration file.<br />
</li>
</ol>
<span style="font-weight: bold;" class="mycode_b">Done! Use this guide!</span>]]></description>
			<content:encoded><![CDATA[This article discusses the "Installation of plugins on a game server." Plugins that have been compiled using compiler services have the .amxx extension.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Installation Instructions:</span><br />
<ol type="1" class="mycode_list"><li>Download the .amxx plugin.<br />
</li>
<li>Access the FTP of the game server.<br />
</li>
<li>Upload the plugin to the cstrike/addons/amxmodx/plugins/ directory.<br />
</li>
<li>Go back to cstrike/addons/amxmodx/configs/plugins.ini.<br />
</li>
<li>Add the name of the plugin with the extension (plugin.amxx) to the configuration file.<br />
</li>
</ol>
<span style="font-weight: bold;" class="mycode_b">Let's break it down with an example:</span><br />
<ol type="1" class="mycode_list"><li>Downloaded plugin.amxx.<br />
</li>
<li>Accessed the FTP of the game server.<br />
</li>
<li>Uploaded the plugin to the cstrike/addons/amxmodx/plugins/ directory.<br />
</li>
<li>Go back to cstrike/addons/amxmodx/configs/plugins.ini.<br />
</li>
<li>Added the name of the plugin with the extension (plugin.amxx) to the configuration file.<br />
</li>
</ol>
<span style="font-weight: bold;" class="mycode_b">Done! Use this guide!</span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Compiling Plugins]]></title>
			<link>https://fullserver.org/forum/thread-10.html</link>
			<pubDate>Sun, 04 Jun 2023 09:44:47 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://fullserver.org/forum/member.php?action=profile&uid=1">Fullserver</a>]]></dc:creator>
			<guid isPermaLink="false">https://fullserver.org/forum/thread-10.html</guid>
			<description><![CDATA[<span style="font-size: x-large;" class="mycode_size">For Windows:</span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Drag and Drop Method:</span><br />
<ol type="1" class="mycode_list"><li>Drag the .sma file onto "compile.exe".<br />
</li>
<li>The compiled .amxx file will be located in the ../compiled/ directory.<br />
</li>
</ol>
<br />
<span style="font-weight: bold;" class="mycode_b">Compiling All Plugins:</span><br />
<ol type="1" class="mycode_list"><li>Double-click on compile.exe to compile all plugins and place them in the ../compiled/ directory.<br />
</li>
</ol>
<br />
<span style="font-weight: bold;" class="mycode_b">Command Line Method:</span><br />
<ol type="1" class="mycode_list"><li>Go to "Start" -&gt; "Run" -&gt; type "cmd" and press Ok.<br />
</li>
<li>Use cd to change the directory, for example: <br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>cd c:&#92;hlserver&#92;cstrike&#92;addons&#92;amxmodx&#92;scripting</code></div></div></li>
<li>Use amxxpc to compile the plugin: <br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>amxxpc.exe myplugin.sma</code></div></div></li>
<li>The compiled plugin will be in the same directory.<br />
</li>
</ol>
<br />
<br />
<span style="font-size: x-large;" class="mycode_size">For Linux:</span><br />
<br />
First, navigate to the scripting directory in your shell:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>cd addons/amxmodx/scripting</code></div></div><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Compiling All Plugins:</span><br />
<ol type="1" class="mycode_list"><li>Run the compile.sh script using one of the following methods:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>sh compile.sh</code></div></div> or <br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>chmod +x compile.sh</code></div></div><span style="font-weight: bold;" class="mycode_b"> ./compile.sh</span><br />
</li>
</ol>
<br />
<span style="font-weight: bold;" class="mycode_b">Compiling a Single Plugin:</span><br />
<ol type="1" class="mycode_list"><li>Run amxxpc, for example: <br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>./amxxpc myplugin.sma</code></div></div></li>
<li>The compiled plugin will be in the same directory.<br />
</li>
</ol>
]]></description>
			<content:encoded><![CDATA[<span style="font-size: x-large;" class="mycode_size">For Windows:</span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Drag and Drop Method:</span><br />
<ol type="1" class="mycode_list"><li>Drag the .sma file onto "compile.exe".<br />
</li>
<li>The compiled .amxx file will be located in the ../compiled/ directory.<br />
</li>
</ol>
<br />
<span style="font-weight: bold;" class="mycode_b">Compiling All Plugins:</span><br />
<ol type="1" class="mycode_list"><li>Double-click on compile.exe to compile all plugins and place them in the ../compiled/ directory.<br />
</li>
</ol>
<br />
<span style="font-weight: bold;" class="mycode_b">Command Line Method:</span><br />
<ol type="1" class="mycode_list"><li>Go to "Start" -&gt; "Run" -&gt; type "cmd" and press Ok.<br />
</li>
<li>Use cd to change the directory, for example: <br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>cd c:&#92;hlserver&#92;cstrike&#92;addons&#92;amxmodx&#92;scripting</code></div></div></li>
<li>Use amxxpc to compile the plugin: <br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>amxxpc.exe myplugin.sma</code></div></div></li>
<li>The compiled plugin will be in the same directory.<br />
</li>
</ol>
<br />
<br />
<span style="font-size: x-large;" class="mycode_size">For Linux:</span><br />
<br />
First, navigate to the scripting directory in your shell:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>cd addons/amxmodx/scripting</code></div></div><br />
<br />
<span style="font-weight: bold;" class="mycode_b">Compiling All Plugins:</span><br />
<ol type="1" class="mycode_list"><li>Run the compile.sh script using one of the following methods:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>sh compile.sh</code></div></div> or <br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>chmod +x compile.sh</code></div></div><span style="font-weight: bold;" class="mycode_b"> ./compile.sh</span><br />
</li>
</ol>
<br />
<span style="font-weight: bold;" class="mycode_b">Compiling a Single Plugin:</span><br />
<ol type="1" class="mycode_list"><li>Run amxxpc, for example: <br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>./amxxpc myplugin.sma</code></div></div></li>
<li>The compiled plugin will be in the same directory.<br />
</li>
</ol>
]]></content:encoded>
		</item>
	</channel>
</rss>