AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   General (https://forums.alliedmods.net/forumdisplay.php?f=7)
-   -   Starting a Server (https://forums.alliedmods.net/showthread.php?t=52083)

unt0uchable 03-02-2007 14:16

Starting a Server
 
I don't know if this is posted anywhere or w/e because I just signed up. I ordered a Counter Strike: CZ server and I need to know how to put the amx mod x onto. I need in something I can understand.... what to download... what plug-ins I need etc.

Sirupsen 03-02-2007 15:31

Re: Starting a Server
 
Well.. First u need to dl' dedicated server!
U do that via Steam, the game window under: "TOlls" then right click install game. When u have downloaded dedicated server. It's time for getting... Amx Mod! Goto this site: http://sourceforge.net/project/downl..._mirror=belnet
For downloading the full amx mod installer.
Open the .exe file and install.
When u finish that, we can begin to get you admin access!

When u need to be admin, u open the users.ini in:
C:\Program Files\Valve\Steam\SteamApps\USER\dedicated server\GAME\addons\amxmodx\configs

Open: users.ini

It should look like this:
Quote:

; Users configuration file
; File location: $moddir/addons/amxmodx/configs/users.ini

; Line starting with ; is a comment

; Access flags:
; a - immunity (can't be kicked/baned/slayed/slaped and affected by other commmands)
; b - reservation (can join on reserved slots)
; c - amx_kick command
; d - amx_ban and amx_unban commands
; e - amx_slay and amx_slap commands
; f - amx_map command
; g - amx_cvar command (not all cvars will be available)
; h - amx_cfg command
; i - amx_chat and other chat commands
; j - amx_vote and other vote commands
; k - access to sv_password cvar (by amx_cvar command)
; l - access to amx_rcon command and rcon_password cvar (by amx_cvar command)
; m - custom level A (for additional plugins)
; n - custom level B
; o - custom level C
; p - custom level D
; q - custom level E
; r - custom level F
; s - custom level G
; t - custom level H
; u - menu access
; z - user (no admin)

; Account flags:
; a - disconnect player on invalid password
; b - clan tag
; c - this is steamid/wonid
; d - this is ip
; e - password is not checked (only name/ip/steamid needed)

; Password:
; Add to your autoexec.cfg: setinfo _pw "<password>"
; Change _pw to the value of amx_password_field

; Format of admin account:
; <name|ip|steamid> <password> <access flags> <account flags>

; Examples of admin accounts:
; "STEAM_0:0:123456" "" "abcdefghijklmnopqrstu" "ce"
; "123.45.67.89" "" "abcdefghijklmnopqrstu" "de"
; "My Name" "my_password" "abcdefghijklmnopqrstu" "a"
; Users configuration file
; File location: $moddir/addons/amxmodx/configs/users.ini

; Line starting with ; is a comment

; Access flags:
; a - immunity (can't be kicked/baned/slayed/slaped and affected by other commmands)
; b - reservation (can join on reserved slots)
; c - amx_kick command
; d - amx_ban and amx_unban commands
; e - amx_slay and amx_slap commands
; f - amx_map command
; g - amx_cvar command (not all cvars will be available)
; h - amx_cfg command
; i - amx_chat and other chat commands
; j - amx_vote and other vote commands
; k - access to sv_password cvar (by amx_cvar command)
; l - access to amx_rcon command and rcon_password cvar (by amx_cvar command)
; m - custom level A (for additional plugins)
; n - custom level B
; o - custom level C
; p - custom level D
; q - custom level E
; r - custom level F
; s - custom level G
; t - custom level H
; u - menu access
; z - user (no admin)

; Account flags:
; a - disconnect player on invalid password
; b - clan tag
; c - this is steamid/wonid
; d - this is ip
; e - password is not checked (only name/ip/steamid needed)

; Password:
; Add to your autoexec.cfg: setinfo _pw "<password>"
; Change _pw to the value of amx_password_field

; Format of admin account:
; <name|ip|steamid> <password> <access flags> <account flags>

; Examples of admin accounts:
; "STEAM_0:0:123456" "" "abcdefghijklmnopqrstu" "ce"
; "123.45.67.89" "" "abcdefghijklmnopqrstu" "de"
; "My Name" "my_password" "abcdefghijklmnopqrstu" "a"

"loopback" "" "abcdefghijklmnopqrstu" "de"

Then u need to add your steam id instead of the loopback. (U get you steam id by go to any server and type: status in the console. it's like: STEAM_0:0:123456) so it looks like this:
Quote:

; Users configuration file
; File location: $moddir/addons/amxmodx/configs/users.ini

; Line starting with ; is a comment

; Access flags:
; a - immunity (can't be kicked/baned/slayed/slaped and affected by other commmands)
; b - reservation (can join on reserved slots)
; c - amx_kick command
; d - amx_ban and amx_unban commands
; e - amx_slay and amx_slap commands
; f - amx_map command
; g - amx_cvar command (not all cvars will be available)
; h - amx_cfg command
; i - amx_chat and other chat commands
; j - amx_vote and other vote commands
; k - access to sv_password cvar (by amx_cvar command)
; l - access to amx_rcon command and rcon_password cvar (by amx_cvar command)
; m - custom level A (for additional plugins)
; n - custom level B
; o - custom level C
; p - custom level D
; q - custom level E
; r - custom level F
; s - custom level G
; t - custom level H
; u - menu access
; z - user (no admin)

; Account flags:
; a - disconnect player on invalid password
; b - clan tag
; c - this is steamid/wonid
; d - this is ip
; e - password is not checked (only name/ip/steamid needed)

; Password:
; Add to your autoexec.cfg: setinfo _pw "<password>"
; Change _pw to the value of amx_password_field

; Format of admin account:
; <name|ip|steamid> <password> <access flags> <account flags>

; Examples of admin accounts:
; "STEAM_0:0:123456" "" "abcdefghijklmnopqrstu" "ce"
; "123.45.67.89" "" "abcdefghijklmnopqrstu" "de"
; "My Name" "my_password" "abcdefghijklmnopqrstu" "a"
; Users configuration file
; File location: $moddir/addons/amxmodx/configs/users.ini

; Line starting with ; is a comment

; Access flags:
; a - immunity (can't be kicked/baned/slayed/slaped and affected by other commmands)
; b - reservation (can join on reserved slots)
; c - amx_kick command
; d - amx_ban and amx_unban commands
; e - amx_slay and amx_slap commands
; f - amx_map command
; g - amx_cvar command (not all cvars will be available)
; h - amx_cfg command
; i - amx_chat and other chat commands
; j - amx_vote and other vote commands
; k - access to sv_password cvar (by amx_cvar command)
; l - access to amx_rcon command and rcon_password cvar (by amx_cvar command)
; m - custom level A (for additional plugins)
; n - custom level B
; o - custom level C
; p - custom level D
; q - custom level E
; r - custom level F
; s - custom level G
; t - custom level H
; u - menu access
; z - user (no admin)

; Account flags:
; a - disconnect player on invalid password
; b - clan tag
; c - this is steamid/wonid
; d - this is ip
; e - password is not checked (only name/ip/steamid needed)

; Password:
; Add to your autoexec.cfg: setinfo _pw "<password>"
; Change _pw to the value of amx_password_field

; Format of admin account:
; <name|ip|steamid> <password> <access flags> <account flags>

; Examples of admin accounts:
; "STEAM_0:0:123456" "" "abcdefghijklmnopqrstu" "ce"
; "123.45.67.89" "" "abcdefghijklmnopqrstu" "de"
; "My Name" "my_password" "abcdefghijklmnopqrstu" "a"

"STEAM_0:0:123456" "" "abcdefghijklmnopqrstu" "ce"
To check about u now are admin, start your server and type: amxmodmenu in the console. Go out of console and there should be a admin menu! COngratz u are now admin!

If u need help adding plugins just ask

vvg125 03-02-2007 15:51

Re: Starting a Server
 
Quote:

Originally Posted by Sirupsen (Post 447679)
Well.. First u need to dl' dedicated server!
U do that via Steam, the game window under: "TOlls" then right click install game. When u have downloaded dedicated server. It's time for getting... Amx Mod!

No he doesn't... read what he said. He ORDERED a server. The AMX Mod X installer should be able to install it via FTP though. And it's AMX Mod X, not AMX Mod. They are different and AMX Mod support was shut down recently.

Sirupsen 03-02-2007 16:39

Re: Starting a Server
 
Quote:

Originally Posted by vvg125 (Post 447686)
No he doesn't... read what he said. He ORDERED a server. The AMX Mod X installer should be able to install it via FTP though. And it's AMX Mod X, not AMX Mod. They are different and AMX Mod support was shut down recently.

Doh..

unt0uchable 03-05-2007 15:55

Re: Starting a Server
 
Speaking of deticated servers from steam tools, do they show up when people search for servers, or only you?

vvg125 03-05-2007 15:56

Re: Starting a Server
 
They show up provided you have your ports forwarded.

unt0uchable 03-05-2007 15:59

Re: Starting a Server
 
How do I foward the port? I didn't get the server I bought yet and I was gonna have this one run if could, to get people in.

Spanky McNutnut 03-05-2007 17:39

Re: Starting a Server
 
If this is on your computer you will have to forward the ports if you have a router. If its hosted by a company, you don't need to worry about it. If its on your computer, follow the steps at, www.portforward.com


All times are GMT -4. The time now is 22:56.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.