// Command Menu definition
// 
// Basic Format:
//		"<Bound Key>" "<Button Text>" "<Command sent to server>"
//
// 
//
//
// Buttons can also open up submenus, as follows:
// {
// 	"Wiecej Opcji",
//	{
//		...
//	}
// }
//
//
// 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

"6" "OKEJ" 	"spec_menu 0"

"5" "Pomoc"	"spec_help"

"4" "Ustawienia"
{	
	TOGGLE 	"6" "Wiadomosci czatu"	"hud_saytext"
	
	TOGGLE	"5" "Pokaz Status"	"spec_drawstatus"
	
	TOGGLE	"4" "Zobacz Stozek"		"spec_drawcone"
	
	TOGGLE	"3" "Nazwy Graczy"	"spec_drawnames"
}

TOGGLE	"3" "Obraz-w-Obrazie" "spec_pip"
TOGGLE	"2" "Auto Rezyser"	"spec_autodirector"

"1" "Pokaz Wyniki"	"togglescores"

// Here are the rest of the buttons and submenus
// You can change these safely if you want.






