AMX

New Member
Joined
Aug 2, 2002
Messages
410
Best answers
0
I did al this

1. Download MetaMod from http://www.metamod.org and install it
following its instructions.

Just to make sure, after installation, you should get:
$moddir/addons/metamod/dlls/metamod.dll
$moddir/addons/metamod/dlls/metamod_i386.so
$moddir/addons/metamod/plugins.ini

In $moddir/liblist.gam file instead of:
gamedll "dlls\mp.dll"
gamedll_linux "dlls/cs_i386.so"

You should have:
gamedll "addons\metamod\dlls\metamod.dll"
gamedll_linux "addons/metamod/dlls/metamod_i386.so"

2. Unzip this file to $moddir (f.e.: $moddir is "cstrike"
if you run Counter-Strike) with directory structure.
You should get:
$moddir/addons/amx/dlls/amx_mm.dll
$moddir/addons/amx/dlls/amx_mm_i386.so
$moddir/addons/amx/dlls/fun_ms.dll
$moddir/addons/amx/dlls/fun_ms_i386.so
$moddir/addons/amx/dlls/csstats_ms.dll
$moddir/addons/amx/dlls/csstats_ms_i386.so
$moddir/addons/amx/dlls/logd_ms.dll
$moddir/addons/amx/dlls/logd_ms_i386.so
$moddir/addons/amx/dlls/mysql_ms.dll
$moddir/addons/amx/dlls/mysql_ms_i386.so
$moddir/addons/amx/dlls/udp_ms.dll
$moddir/addons/amx/dlls/udp_ms_i386.so
$moddir/addons/amx/examples/*.sma
$moddir/addons/amx/examples/include/*.inc
$moddir/addons/amx/logs/...
$moddir/addons/amx/plugins/plugins.ini
$moddir/addons/amx/plugins/*.amx
$moddir/addons/amx/modules.ini
$moddir/addons/amx/...

3. Open $moddir/addons/metamod/plugins.ini and add there
(line with ; char is a comment):
; AMX Mod
win32 addons\amx\dlls\amx_mm.dll
linux addons/amx/dlls/amx_mm_i386.so
; More script functions for AMX Mod
win32 addons\amx\dlls\fun_ms.dll
linux addons/amx/dlls/fun_ms_i386.so
; Stats for Counter-Strike
win32 addons\amx\dlls\csstats_ms.dll
linux addons/amx/dlls/csstats_ms_i386.so

4. Open $moddir/addons/amx/modules.ini and add
there lines (if not already exist there):
; More script functions for AMX Mod
addons/amx/dlls/fun_ms.dll
addons/amx/dlls/fun_ms_i386.so
; Counter-Strike Statistics (only if you use stats)
addons/amx/dlls/csstats_ms.dll
addons/amx/dlls/csstats_ms_i386.so
; AMX LogD (only if you run plugins to use with that)
addons/amx/dlls/logd_ms.dll
addons/amx/dlls/logd_ms_i386.so
; MySQL access (only if you run plugins to use with that)
addons/amx/dlls/mysql_ms.dll
addons/amx/dlls/mysql_ms_i386.so
; Rcon and Query (only if you run plugins to use with that)
addons/amx/dlls/udp_ms.dll
addons/amx/dlls/udp_ms_i386.so

5. Make sure you have plugins.ini and AMX scripts files
under $moddir/addons/amx/plugins path.

You can also override plugins list filename by setting
amx_plugins localinfo as a HLDS parameter.
(f.e. +localinfo amx_plugins plugins.ini)




And still amx doesn work over here , i am sure meta mod works perfect. any an sugestion?
 
New Member
Joined
Jan 4, 2003
Messages
250
Best answers
0
Make sure that your liblist.gam points the game dll to your metamod.dll file. Sometimes when installed bots, it will over-write this with its own .dll file.

Another thing to check is do you have the amx.dll referenced in the metamod plugins list? It won't run amx if the plugin isn't listed.

Lastly, amx could be working correctly, but your admin.cfg file might not be configured correctly to allow you to use the amx menu or its plugins.

Slowly go through the instructions you posted above and make sure all the directories are true to what it says. I am very experienced with setting up and executing amx and admin mod so feel free to aim me if you need further help.
 

Users who are viewing this thread

Top Bottom