///////////////////////////////////////// // // Medal of Honor Pacific Assault Dedicated Server - Free for All // // WrittenBy : fallout // Game : Medal of Honor Pacific Assault 1.2 // Contact : falloutdc(at)gmail(dot)com // Web : fallout.bplaced.net // Date : 14.02.2011 // Revision : 1.2 // FileName : ffa.cfg // // If you want that any of these variables stay permament use "seta instead of set" // // Set = Set the variable for the current session // Seta = Write the variable to the config file 'xxx.cfg' // Sets = Outputs the variable in the serverinfo // Setu = ? // // // This work is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License. // To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/ or send a letter to // Creative Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA. // // General Server Settings set sv_hostname "mohpa_ffa" // Name that will appear on the server browser set g_motd "Welcome to Medal of Honor Pacific Assault" // Will show up on the client when they join the server // The following cvars should be set via the commandline switches //sets sv_pure "1" // When set to 1, the client and server must match. This is pure //sets punkbuster "1" // Turns on punkbuster requirements for the server //sets sv_punkbuster "1" // Enable Punkbuster aticheat technology http://www.evenbalace.com . Required to run a stats server // // This cvar has a default value of 1, and will be saved to server.cfg whenever it is changed. The cvar specifies the number of milliseconds that a dedicated server will completely relinquish control to the operating system each frame. // Increasing the value of the cvar effectively reduces the CPU utilization of a MOH:PA dedicated server process. Increase this cvar if you are running multiple instances of dedicated servers or other necessary processes on your // CPU. Set this cvar to 0 if you want an instance of the MOH:PA dedicated server to use the CPU whenever it is available (100% utilization). A value of 0 can result in a slight performance increase, especially on low spec machines with // several connected users. Increasing this cvar can result in a performance decrease. You may change this cvar at runtime or at the command line; we recommend a range of 0 to 10 (integer only). // set win_dedicated_sleep "1" ///////////////////////////////////////// // Execute additional files exec "configs/ffa/gameplay.cfg" exec "configs/ffa/log.cfg" exec "configs/ffa/physics.cfg" exec "configs/ffa/weapons.cfg" exec "configs/ffa/maprotation.cfg" exec "configs/global_banlist.cfg" exec "configs/global_masterservers.cfg" exec "configs/global_network.cfg" exec "configs/global_pubvars.cfg" exec "configs/global_passwords.cfg" ECHO Finished parsing ffa.cfg // EOF