//******************************************************************************
//  _____                  _    _             __
// |  _  |                | |  | |           / _|
// | | | |_ __   ___ _ __ | |  | | __ _ _ __| |_ __ _ _ __ ___
// | | | | '_ \ / _ \ '_ \| |/\| |/ _` | '__|  _/ _` | '__/ _ \
// \ \_/ / |_) |  __/ | | \  /\  / (_| | |  | || (_| | | |  __/
//  \___/| .__/ \___|_| |_|\/  \/ \__,_|_|  |_| \__,_|_|  \___|
//       | |               We don't make the game you play.
//       |_|                 We make the game you play BETTER.
//
//            Website: http://openwarfaremod.com/
//******************************************************************************

//*****************************
// DESCRIPTION/HELP
//*****************************
// For each map under "CTF" you will need to add this dvar. The value should be the number of 
// configuration files you plan to use for that map under the "CTF" gametype. If you start with
// "_0" for your item placements, the # of configs is the <value> - 1. 
// Otherwise it's just the <value>.
// 
// Format: set scr_visual_mover_<mapname>_<gametype>_num_configs "<value>"
// Ex. set scr_visual_mover_mp_roundhouse_ctf_num_configs "1"
// 0 = default, 0 = min, 999 = max
//
// set scr_visual_mover_<mapname>_ctf_num_configs "0"


// Use this to set either randomization of configs for a map under the "CTF" gametype
// or select a particular configuration to play. You need this for each map under "CTF".
// 
// Format: set scr_visual_mover_<mapname>_<gametype>_config "<value>" 
// Ex: set scr_visual_mover_mp_roundhouse_ctf_config "1"
// -1 = disabled (default), 0-999 = enabled 
//
// set scr_visual_mover_<mapname>_ctf_config "-1"


//-----------------------------------
// Example of multiple configurations for "mp_roundhouse" on "ctf" (Capture The Flag)
//-----------------------------------
// set scr_visual_mover_mp_roundhouse_ctf_num_configs "3" 	//Number of configs 
// set scr_visual_mover_mp_roundhouse_ctf_config "-1"		// Random Setting
//
// Default Configuration (The first configuration you made in the mover guide)
// set mp_roundhouse_move_ctf_allies_spawns_1 "0,-87,-526,64,23/1,-78,-593,62,4"
// set mp_roundhouse_move_ctf_axis_spawns_1 "0,187,-544,66,7/1,195,-588,59,2"
//
// The second configuration:
// set mp_roundhouse_move_ctf_axis_start_spawns_2 "0,-317,-687,59,-65/1,-332,-793,61,-81"
// set mp_roundhouse_move_ctf_flags_2 "0,49,-477,61,94/1,69,-630,58,-95"
//
// The third configuration:
// set mp_roundhouse_move_ctf_allies_start_spawns_3 "0,-317,-687,59,-65/1,-28,-493,64,15"
// set mp_roundhouse_move_ctf_flags_3 "0,-113,-496,63,19"
//*****************************
// END DESCRIPTION/HELP
//*****************************