 |
About AMX Mod |
 |
Installation |
 |
Configuration |
 |
Plugins |
 |
Modules |
|
|
Compiling Plugins
Although Windows and Linux plugins are interchangeable, you
may need to compile one while on the current operating system you are using.
Click here for Linux
Click here for Windows
Windows Compiling of Plugins (easy)
- Download AMX Mod X for Windows
- Extract the zip archive
- Move all .sma files to amxx/scripting/
- Run compile.bat
- Wait until you see the compiler report
- Press any key
- Your compiled plugin is in amxx/scripting/compiled/
Windows Compiling of Plugins (advanced)
- Download AMX Mod X for Windows
- Extract the zip archive
- Go to Start, Run, "cmd", and click Ok.
- Type: cd
c:\hlserver\cstrike\addons\amxx\scripting
(Where the folder is your
amxx\scripting folder)
- Type: sc
myplugin.sma
(Where myplugin.sma is your
plugin file)
- If no errors appear, your compiled amx file will be
in: addons/amxx/scripting
Linux Compiling of Plugins (easy)
- Extract the AMX Mod tarball. (
tar zxvf amxmodx.tar.gz)
- Place your .sma file in amxx/scripting
- Run the shell script compile.sh (
/bin/bash compile.sh )
- Your compiled plugin is in amxx/scripting/compiled
Linux Compiling of Plugins (easy)
- Extract the AMX Mod tarball. (
tar zxvf amxmodx.tar.gz)
- Place your .sma file in amxx/scripting
- Run in a shell:
chmod +x sc
./sc myplugin.sma
- Your compiled plugin is in amxx/scripting
|