// =============================================================================== // DESCRIPTION: Contains the mod settings - Change at will // CALLED BY: maploaded // PARAMS: none // TYPE: Server-Side // =============================================================================== // Init ========================================================================== @INIT // Allow all abilities and spawns Set sv_unith4x "false" // Allow team change Set g_allowTeamChange "false" // No corpses. Set g_corpseTime 0 // Squad size Set sv_squadSize 20 if [__debug == 1] goto DEBUG goto SCRIPT // =============================================================================== // Debug ========================================================================= @DEBUG Echo #__debug_prefix#"Calling script __SETTINGS" goto SCRIPT // =============================================================================== // Script ======================================================================== @SCRIPT goto EOF @EOF // ===============================================================================