Raised This Month: $ Target: $400
 0% 

Starting a Server


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
unt0uchable
Junior Member
Join Date: Mar 2007
Old 03-02-2007 , 14:16   Starting a Server
Reply With Quote #1

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.

Last edited by unt0uchable; 03-04-2007 at 15:44.
unt0uchable is offline
Sirupsen
Junior Member
Join Date: Feb 2007
Location: Denmark
Old 03-02-2007 , 15:31   Re: Starting a Server
Reply With Quote #2

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

Last edited by Sirupsen; 03-02-2007 at 15:46.
Sirupsen is offline
Send a message via MSN to Sirupsen Send a message via Skype™ to Sirupsen
vvg125
AMX Mod X Beta Tester
Join Date: Dec 2006
Location: Queens (Douglaston), New
Old 03-02-2007 , 15:51   Re: Starting a Server
Reply With Quote #3

Quote:
Originally Posted by Sirupsen View Post
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.
__________________
vvg125 is offline
Send a message via AIM to vvg125 Send a message via MSN to vvg125 Send a message via Yahoo to vvg125
Sirupsen
Junior Member
Join Date: Feb 2007
Location: Denmark
Old 03-02-2007 , 16:39   Re: Starting a Server
Reply With Quote #4

Quote:
Originally Posted by vvg125 View Post
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..
Sirupsen is offline
Send a message via MSN to Sirupsen Send a message via Skype™ to Sirupsen
unt0uchable
Junior Member
Join Date: Mar 2007
Old 03-05-2007 , 15:55   Re: Starting a Server
Reply With Quote #5

Speaking of deticated servers from steam tools, do they show up when people search for servers, or only you?
unt0uchable is offline
vvg125
AMX Mod X Beta Tester
Join Date: Dec 2006
Location: Queens (Douglaston), New
Old 03-05-2007 , 15:56   Re: Starting a Server
Reply With Quote #6

They show up provided you have your ports forwarded.
__________________
vvg125 is offline
Send a message via AIM to vvg125 Send a message via MSN to vvg125 Send a message via Yahoo to vvg125
unt0uchable
Junior Member
Join Date: Mar 2007
Old 03-05-2007 , 15:59   Re: Starting a Server
Reply With Quote #7

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.

Last edited by unt0uchable; 03-05-2007 at 16:08.
unt0uchable is offline
Spanky McNutnut
AMX Mod X Beta Tester
Join Date: Feb 2006
Old 03-05-2007 , 17:39   Re: Starting a Server
Reply With Quote #8

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
Spanky McNutnut is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 08:06.


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