You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
2.5 KiB
91 lines
2.5 KiB
// *****************************************************************************
|
|
// Action Half-Life
|
|
// Config - server.cfg
|
|
// Date - 26/04/2026
|
|
// *****************************************************************************
|
|
|
|
// .................................. Basic ................................. //
|
|
|
|
// hostname - Hostname for server.
|
|
hostname "SERVERNAME"
|
|
|
|
// rcon_password - remote console password.
|
|
rcon_password "ADMINPASSWORD"
|
|
|
|
// sv_password - Server password for entry into multiplayer games.
|
|
sv_password ""
|
|
|
|
// ................................. Security ................................ //
|
|
|
|
// sv_aim - Enable autoaim assistance.
|
|
sv_aim 0
|
|
|
|
// sv_cheats - Allow cheats on server.
|
|
sv_cheats 0
|
|
|
|
// sv_clienttrace - Player collision trace size.
|
|
sv_clienttrace 3.5
|
|
|
|
// pausable - Allow clients to pause the server.
|
|
pausable 0
|
|
|
|
// ................................ Gameplay ................................ //
|
|
|
|
// mp_gametype - Game type. 0=Deathmatch, 1=LMS, 2=LMS+equip, 3=LMS+random, 4=TeamRounds, 5=Teamplay.
|
|
mp_gametype 5
|
|
|
|
// mp_goalsoff - Disable goals in maps that have them.
|
|
mp_goalsoff 0
|
|
|
|
// mp_timelimit - game time per map in minutes.
|
|
mp_timelimit 20
|
|
|
|
// mp_roundtimelimit - Round time limit in minutes.
|
|
mp_roundtimelimit 3
|
|
|
|
// mp_forcebalance - Force team balance.
|
|
mp_forcebalance 1
|
|
|
|
// mp_fraglimit - The number of kills at which the map ends.
|
|
mp_fraglimit 50
|
|
|
|
// mp_friendlyfire - Allows team members to injure other members of their team.
|
|
mp_friendlyfire 0
|
|
|
|
// mp_teamkills - Number of teamkills before a team killer is punished.
|
|
mp_teamkills 3
|
|
|
|
// mp_tkdeal - Team killer punishment. 0=Nothing, 1=Punish, 2=Auto-kickban.
|
|
mp_tkdeal 2
|
|
|
|
// mp_tkbantime - Minutes to ban teamkillers. 0 = permanent.
|
|
mp_tkbantime 5
|
|
|
|
// mp_chasecam - Chase camera mode. 0=Off, 1=On, 2=Teammates only.
|
|
mp_chasecam 1
|
|
|
|
// sv_maxspeed - Maximum client movement speed.
|
|
sv_maxspeed 270
|
|
|
|
// sv_allowdownload - Allow clients to download files.
|
|
sv_allowdownload 1
|
|
|
|
// sv_allowupload - Allow clients to upload customizations files.
|
|
sv_allowupload 1
|
|
|
|
// mp_allowpractice - Allow practice during waiting period.
|
|
mp_allowpractice 1
|
|
|
|
// sv_floodcount - Maximum sentences or radio commands per sv_floodtime window.
|
|
sv_floodcount 25
|
|
|
|
// sv_floodtime - Time window in seconds for sv_floodcount.
|
|
sv_floodtime 30
|
|
|
|
// ................................ Ban List ................................ //
|
|
|
|
// exec listip.cfg - Load the banned IP address list.
|
|
exec listip.cfg
|
|
|
|
// exec banned.cfg - Load the banned user list.
|
|
exec banned.cfg
|
|
|