Showing posts with label AMX Commands. Show all posts
Showing posts with label AMX Commands. Show all posts

Friday, October 2, 2009

AMX Mod X Console Commands and Syntax

Requirements:
  1. CS1.6 Installed
  2. Metamod Installed
  3. AMX Mod X Installed
These are the commands you need to type in console after the installation of AMX Mod X for your CS1.6 installation. AMXX commands can be given in the console where you give the normal commads. These commands will have "amx_" prefixed in front of each command, very similar to metamod commands prefixed with "mm_". The installation post is linked below.

AMX Mod X Console Commands:
  • amx_statsx_mode
  • amx_on - Switches on AMX Plugin on the whole
  • amx_off - Switches off AMX Mod X on the whole
  • amx_pausecfg
    Usage: amx_pausecfg [name]


  • amx_time_display - Displays times in the game
  • amx_cancelvote - Cancels the result obtained from last voting
  • amx_vote - Starts a voting with the given options
    Usage: amx_vote [Question] [Ans1] [Ans2] [Ans3] - The first attribute is question
  • amx_voteban - Starts a voting for ban a player or not
    Usage: amx_voteban [Player Name]
  • amx_votekick - Voting for kick a player or not to
    Usage: amx_votekick [Player Name]
  • amx_votemap - Voting for map by showing upto 4 maps
    Usage: amx_votemap
  • amx_imessage - Sends a timely message displayed on the top of the screen to all players
    Usage: amx_imessage [mesage with quotes]
  • amx_scrollmsg - Sends a scrolling message at the bottom center to all players
    Usage: amx_scrollmsg [mesage with quotes]
  • amx_csay - Sends a massage at the top center in color
    Ex: amx_csay green Hello!!! - Green is color and Hello!!! is the actual message, use quotes if the message contains spaces.

  • amx_tsay - Sends a similar colored message but at the chat area
    Usage: amx_tsay [mesage with quotes]
  • amx_psay - Sends private message
    Usage: amx_psay

  • amx_chat - Sends message to Admins
  • amx_say - Sends message to all
    Usage: amx_say [mesage with quotes]
  • amx_plmenu_slapdmg - Sets slap damage for sequential slaps
  • amx_plmenu_bantimes - Sets time for sequential bans
  • amx_addclientmenuitem - Adds a menu item in Client Menu
    Usage: See it in the console itself
  • amx_addmenuitem - Adds a menu item in amx Menu
    Usage: See it in the console itself
  • amx_setlang - Sets the language
  • amx_help - Shows help
  • amx_last - Shows old connections saved
  • amx_nick - Changes the nick name of any player
  • amx_cfg - Takes a file as input cfg
  • amx_map - Changes map, same as "changelevel" command
    Usage: amx_map [Map Name]
  • amx_modules - Shows loaded modules
  • amx_plugins - Shows loaded plugins
  • amx_cvar - Changes the value of a cvar
  • amx_who - Shows players list and their access
  • amx_pause - Pauses the server
  • amx_leave - Takes leave tags
  • amx_slap - Slaps a player
  • amx_slay - Slays a player
  • amx_unban - Unbans a player
  • amx_addban - Adds a player by his ip or id to ban list
  • amx_banip - Adds a player to ban list by his ip
  • amx_ban - Bans a player
  • amx_kick - Kicks a player
  • amx_addadmin - Adds a player to admin list in users.ini
  • amx_reloadadmins - Reloads the admins in users.ini
AMX Mod X Console Commands for Menus
  • amxmodmenu - Shows Main Menu of AMX Mod
  • amx_menu - Shows the Clients Menu
  • amx_langmenu - Shows Language Menu
  • amx_cmdmenu - Shows Command Menu
  • amx_cfgmenu - Shows Configuration Menu
  • amx_speechmenu - Shows Speech Menu
  • amx_cvarmenu - Shows Cvar Menu
  • amx_kickmenu - Shows Kick Menu
  • amx_banmenu - Shows Ban Menu
  • amx_slapmenu - Shows Slap Menu
  • amx_teammenu - Shows Team Menu
  • amx_clcmdmenu - Shows Client Command Menu
  • amx_mapmenu - Shows Map Menu
  • amx_votemapmenu - Shows Vote Map Menu
There are many more commands for normal dedicated server. The full list of commands are listed in this post on CS1.6 Commands. Use quotes if the message or text contains spaces.

Tuesday, January 13, 2009

Cmdaccess.ini of AMX Mod X

This file stores the commands and the flags or powers which can access it (Considering Flags as Powers for simplicity). For example amx_map command can be accessesd by user with power " f " or flag " f ", but you want a user with flags "hej". So you can change the flag of that command to "h" or "e" or "j".

Users.ini already had set the flags to something, but the commands in the new plugins added wont be set by the users.ini file. So you need to change the flag values of the third party plugins in this file like the commands of CSDM, GunGame, AMX Match Deluxe commands etc.

clcmds.ini File of AMX Mod X

This is a file which saves the Client Command Menu of AMX Mod X Menu which is shown when the command 'amxmodmenu' is given in the console. This menu shows many sub menus. The Client Command menu is also the same. This has kick slap ban commands in it. This is not kick menu, it is Client Command menu present in the second page of "amxmodmenu".



This file can be changed to have many more commands like drop the clients weapon etc. The following is an example to show the addition of commands to this menu.

Add a line like this after the four lines previously present.

"Drop his Weapon" "drop" "c" "u"

You can see the "c" in the third parameter means that the command is executed from that players console. Like this many more commands can be added to this file.


You can see in the above screenshot the command "Drop his Weapon" is shown. The key 8 will change the command in these five commands each time it is pressed.

Thursday, December 4, 2008

Counter Strike 1.6 Dedicated Server Console Commands List

These all commands should be entered in the console. The console is the window which appears on the screen while in the game on clicking the tilde key "`". The game counter strike can be controlled completely from the console. The Client or the User will have the console. The Listen Server will have the console and the Dedicated Server also has the console. The Dedicaed server shows the console on going to Tab named Console in the top Tabs. While you are in the game, you can always access the console as said.

There are normal commands which can be understood by the Counter Strike Game. And there are AMX commands which can be understood by the game only by installing AMX Mod. To know more about AMX Mod, see CS1.6 Mods.

These are some of the AMX Commands. The normal commands are given below. Apart from these you can see number of cvars shown in the console in autofill region. These are just the Configuration Variables which change the game settings. Some examples of the Cvars are mp_roundtime, mp_friendlyfire, mp_c4timer, sv_restart etc... Cvar list is given in the next post of this blog.

AMX Mod X Console Commands:
  • amx_statsx_mode
  • amx_on - Switches on AMX
  • amx_off - Switches off AMX
  • amx_pausecfg
    Usage: amx_pausecfg [name]
  • amx_time_display
  • amx_cancelvote - Cancels a result obtained from the voting
  • amx_vote - Starts a voting
  • amx_voteban - Starts a voting for ban
  • amx_votekick - Voting for kick
  • amx_votemap - Voting for map
  • amx_imessage - Sends a timely message displayed on the top of the screen to all players
  • amx_scrollmsg - Sends a scrolling message at the bottom center to all players
  • amx_csay - Sends a massage at the top center in color
    Ex: amx_csay green Hello!!!
  • amx_tsay - Sends a similar colored message but at the chat area
  • amx_psay - Sends private message
    Usage: amx_psay
  • amx_chat - Sends message to Admins
  • amx_say - Sends message to all
  • amx_plmenu_slapdmg - Sets slap damage for sequential slaps
  • amx_plmenu_bantimes - Sets time for sequential bans
  • amx_addclientmenuitem - Adds a menu item in Client Menu
  • amx_addmenuitem - Adds a menu item in amx Menu
  • amx_setlang - Sets the language
  • amx_help - Shows help
  • amx_last - Shows old connections saved
  • amx_nick - Changes the nick name of any player
  • amx_cfg - Takes a file as input cfg
  • amx_map - Changes map
  • amx_modules - Shows loaded modules
  • amx_plugins - Shows loaded plugins
  • amx_cvar - Changes the value of a cvar
  • amx_who - Shows players list and their access
  • amx_pause - Pauses the server
  • amx_leave - Takes leave tags
  • amx_slap - Slaps a player
  • amx_slay - Slays a player
  • amx_unban - Unbans a player
  • amx_addban - Adds a player by his ip or id to ban list
  • amx_banip - Adds a player to ban list by his ip
  • amx_ban - Bans a player
  • amx_kick - Kicks a player
  • amx_addadmin - Adds a player to admin list in users.ini
  • amx_reloadadmins - Reloads the admins in users.ini

AMX Mod X Console Commands for Menus

  • amxmodmenu - Shows Main Menu of AMX Mod
  • amx_menu - Shows the Clients Menu
  • amx_langmenu - Shows Language Menu
  • amx_cmdmenu - Shows Command Menu
  • amx_cfgmenu - Shows Configuration Menu
  • amx_speechmenu - Shows Speech Menu
  • amx_cvarmenu - Shows Cvar Menu
  • amx_kickmenu - Shows Kick Menu
  • amx_banmenu - Shows Ban Menu
  • amx_slapmenu - Shows Slap Menu
  • amx_teammenu - Shows Team Menu
  • amx_clcmdmenu - Shows Client Command Menu
  • amx_mapmenu - Shows Map Menu
  • amx_votemapmenu - Shows Vote Map Menu

Till here, all the commands given above must have the amx installed in them for game to understand the commands. You can see the post related to amx installtion.

Dedicated Server Console Commands

  • addip - add an ip to the ban list
  • alias - adds an aditional keyword for the same command
  • autosave - autosaves in single player mode
  • banid - adds an id to ban list
  • bgetmod - gets batch from the main servers
  • bind - binds a command to a key
  • career - changes the map
  • cd
  • changelevel - changes the map
  • changelevel2
  • clear - clears the console
  • cmd
  • cmdlist - shows all the command list
  • condebug - enable con debug
  • contimes - shows that many overlay lines
  • cvarlist - shows complete cvar list
  • delta_clear - clears the delta stats
  • delta_stats - shows delta stats
  • demos - shows demos
  • dlfile
  • dropclient - drops the clients
  • echo - shows the given value in the console
  • escape -
  • exec - executes a .cfg file
  • exit - quits the cs application
  • flush
  • fly
  • fullinfo
  • fullupdate
  • god
  • heartbeat
  • hideconsole
  • hpkextract
  • hpklist
  • hpkremove
  • hpkval
  • interp
  • kick
  • kill
  • listid
  • listip
  • load
  • localinfo
  • log
  • logaddress
  • logaddress_add
  • logaddress_del
  • map
  • maps
  • maxplayers
  • mcache
  • messagemode - Takes input from the chat type
    Usage: messagemode - Now enter the value of cvar in chat
  • messagemode2
  • motd - shows the motd from this file
  • motd_write - adds the line to motd file
  • mp3
  • new
  • noclip
  • notarget
  • pause
  • ping
  • quit - quits the cs application
  • reconnect - reconnects to the server
  • reload
  • removeid - remove id from ban list
  • removeip - remove ip from ban list
  • resetrcon - resets rcon
  • restart - restarts the map
  • save - save in single player
  • say - chat
  • say_team - chat with team
  • sendents
  • sendres
  • serverinfo - shows server info
  • setinfo
  • setmaster
  • setpause
  • showinfo
  • shutdownserver
  • soundfade
  • spawn
  • startdemos
  • stat
  • stats
  • status
  • stopdemo
  • stuffcmds
  • tell
  • toggleconsole
  • unbind - unbind a key from its command
  • unbindall - unbinds all keys from their commands
  • unpause - unpause the server
  • user
  • users
  • version
  • viewframe
  • viewmodel
  • viewnext
  • viewprev
  • wait
  • writecfg
  • writeid
  • writeip

These are the list of commands which can be understood by the Counter Strike 1.6 Server engine. These commands are not dependent on amx installation.