// Command Menu definition
// 
// Basic Format:
//		"<Bound Key>" "<Button Text>" "<Command sent to server>"
//
// 
//
//
// Buttons can also open up submenus, as follows:
// {
// 	"Some More Options",
//	{
//		...
//	}
// }
//
//
// Buttons preceded with "CUSTOM" are handled in special ways. They can only be moved
// around or deleted.
//
//
// Limitations:
//		Maximum of 50 menus.
//		Maximum of 100 buttons per menu.

//--------------------------------------------------------
// Everything below here is editable

"3" "OK" 			"cl_map_menu 0"
"2" "Clear Markers"		"cl_map_clear"
"1" "Show\Hide"
{
	TOGGLE	"6" "Map Markers"		"cl_dmshowmarkers"
	TOGGLE	"5" "Small Map"			"cl_dmsmallmap"
	TOGGLE	"4" "Grenades"			"cl_dmshowgrenades"
	TOGGLE	"3" "Objects (tnt, ect)"	"cl_dmshowobjects"
	TOGGLE	"2" "Flags (cap points)"	"cl_dmshowflags"
	TOGGLE	"1" "Players (teammates)"	"cl_dmshowplayers"
}