What do i do?

New Member
Joined
Oct 11, 2003
Messages
350
Best answers
0
I'm tryin to get into Amx mod and stuff but i dont know where to put the files, can someone help me?
 
Senior Member
★ Black Lounger ★
✔️ HL Verified
💻 Oldtimer
Joined
Feb 17, 2003
Messages
1,483
Best answers
0
There is plenty of help files on the amxmod forums. Look there.
As they always say:
RTFM
 
Fumoffu!
Retired Forum Staff
💻 Oldtimer
Joined
Nov 21, 2002
Messages
2,888
Best answers
0
One of the easiest ways of installing any software/addon, is to read the documentation that came alongwith it.

Installation
---------------------------------------------------------------------
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)

NOTES:
. You can remove CS Stats from modules.ini unless you run
Counter-Strike with AMX Statistic Plugins.
. MetaMod can use $moddir/addons/metamod/plugins.ini or
$moddir/metamod.ini file to specify its plugins. If you
don't have any then create one.


The above is courtesy of the ReadMe file inside the AMX pack.
 
New Member
Joined
Jul 4, 2003
Messages
312
Best answers
0
You can only use amx and metamod if u know a bit of coding .... correct me if i am wrong.....but i doubt someone could just figure it out its hard stuff........
 
New Member
Joined
Apr 16, 2003
Messages
507
Best answers
0
lol @ effect, really if u just read the readme, it's mostly dummy proof, easy steps allong the way to the result that is pointed out in the same file as the instructions are, and seemingly you don't have to actualy code in anything it's like easy to use, only thing that would even come near coding with those addons is actualy the input u have to give, the value you have to specefy thats every thing.
 

Users who are viewing this thread

Top Bottom