Navegación |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Metamod must be instaled becuase without it, AMXMODX doesn't work.
1) Go in cstrikeaddons. Create a folder, and named is in metamod.
2) Create a folder in addonsmetamod, called dlls.
3)Download the Linux version or the Windows version.
4) Put .dll / .so in addonsmetamoddlls
5) Go in the cstrike folder and search for liblist.gam. For windows, change the line:
Code:
with:
Code:
gamedll "addonsmetamoddllsmetamod.dll" |
For linux, change the line:
Code:
gamedll_linux "dlls/mp_i386.so" |
with
Code:
gamedll_linux "addons/metamod/dlls/metamod_i386.so" |
Go in addonsmetamod and create plugins.ini. There add the next line for windows
Code:
win32 addonsamxmodxdllsamxmodx_mm.dll |
For linux:
Code:
linux addons/amxmodx/dlls/amxmodx_mm_i386.so |
Installing Amx Modx
Download AMXMODX BASE LINUX or AMXMODX BASE WINDOWS
Extract the files in cstrike folder so in addons we have now amxmodx, too.
Download the Counter-Strike module: LINUX for linux or WINDOWS for Windows.Exctract the files like you do with Amxmodx Base. This archive adds only a few files for Counter-Strike.
AMXMODX Configuration
1) To install plugins, put the source(.sma) in addons/amxmodx/scripting and .amxx in addons/amxmodx/plugins.Go in addonsamxmodxconfigsplugins.ini and add, after the last line, EXAMPLE : name.amxx
2) Go in amxmodx/configs/amxx.cfg and edit
amx_default_access "z" user acces
amx_mode 1 (do not modify)
amx_show_activity 2 (do not modify)
amx_scrollmsg "Welcome to %hostname% -- This server is using AMX Mod X" 600 (Replace Welcome to ... with your message, and replace 600 with your time. The time is in seconds)
amx_imessage"Welcome to %hostname" "000255100" (this message will appeare in the center of the screen. is called "hud message").For more messages, multiply the amx_imessage "your message " "colorRGB"
amx_freq_imessage 180 (180 is the time interval, in seconds, when the message apper in the center of the screen)
amx_flood_time 0.75 (do not modify)
amx_reservation 0 (the number of reserved slots)
amx_hideslots 1 (do not modify)
amx_time_display "ab 1200" "ab 600" "ab 300" "ab 180" "ab 60" "bcde 11" (do not modify)
amx_time_voice 1 (do not modify)
The rest of lines, DO NOT MODIFY
Adding admins:
To add admins by nickname (like at adminmod) on steamid (DO NOT make admins on steam ID, only if he has Licensed steam. There can be a lot of Unknown admins.) and on the IP.
On SteamID
"STEAM_0:0:123456" "" "abcdefghijklmnopqrstu" "ce" (replace STEAM_0:0:123456 with your admin SteamID)
On NickName
"BAILOPAN" "mypass" "abcdefghijklmnopqrstu" "a" ( bailop = nick ; mypass = admin password). Every time he enters the game he must write in console, setinfo _cs PASSWORD .
On IP
"ip" "" "abcdefghijklmnopqrstu" "de" Replace IP with admin's IP
|
|
|
|
|
|
|
|
|
|
|
|