New to sound packs


(nursey) #1

Hi i,m just starting out in trying to change a sound pack

i took the original one and changed some sounds and now its not working not even the original ones are playing… i would like if someone could point me in the right direction of a good tutorial or give me some much needed assistance…

could someone please look over this uiquickmessage alt file for me
thanks in advance
Nursey.x

#include "ui/menudef.h"

#define DEFAULT_TEXT_SCALE 0.25

#define ORIGIN_QUICKMESSAGE		10 10

#define QM_MENU_GRADIENT_START_OFFSET

#define QM_MENU_START( WINDOWNAME )														

				\
																		

								\

menuDef {

							\
name		WINDOWNAME															

						\
visible		0																

							\
fullscreen	0																

							\
rect		0 100 640 380															

					\
onOpen		{ setCvar cl_bypassMouseInput "1" }												

			\
onClose		{ setCvar cl_bypassMouseInput "0" }												

			\
onEsc		{ closeAll }															

					\
																		

								\
itemDef {																	

							\
	name		"window"														

						\
	rect		0 19 204 136														

					\
	origin		ORIGIN_QUICKMESSAGE													

					\
	style		WINDOW_STYLE_FILLED													

					\
	backcolor	0 0 0 .75														

						\
	border		WINDOW_BORDER_FULL													

					\
	bordercolor	0 .68 .93 .3														

						\
            visible		1															

							\
	decoration																

							\
}																		

								\
																		

								\
itemDef {																	

							\
	name		"windowtitle"														

					\
	rect		$evalfloat((0)+2) $evalfloat((19)+2) $evalfloat((204)-4) 12								

\
	origin		ORIGIN_QUICKMESSAGE													

					\
	text		"^7(^6FTP^7)^6Q^7uick^6C^7hat"												

								\
	textfont	UI_FONT_ARIBLK_16													

					\
	textscale	.19															

							\
	textalignx	3															

							\
	textaligny	10															

							\
	style		WINDOW_STYLE_FILLED													

					\
	backcolor	0 0 1 .25														

					\
	forecolor	1 1 1 1															

					\
            visible		1															

							\
	decoration																

							\
}

#define QM_MENU_END }

#define QM_MENU_ITEM( WINDOWTEXT, ACTION, KEY, POS )				\
itemDef {															\
	name			"menuitem"##WINDOWTEXT							\
	rect			6 $evalfloat( 35 + ( 12 * POS )) 128 10			\
	origin			ORIGIN_QUICKMESSAGE								\
	type			ITEM_TYPE_TEXT									\
	text			WINDOWTEXT										\
	textfont		UI_FONT_COURBD_21								\
	textstyle		ITEM_TEXTSTYLE_SHADOWED							\
	textscale		.2												\
	textaligny		8												\
	forecolor		0 1 0 1										\
	visible			1												\
	decoration														\
}																	\
execKey KEY { ACTION }

#define QM_MENU_ITEM_TEAM( WINDOWTEXT, ACTION, KEY, POS )			\
itemDef {															\
	name			"menuitem"##WINDOWTEXT							\
	rect			6 $evalfloat( 35 + ( 12 * POS )) 128 10			\
	origin			ORIGIN_QUICKMESSAGE								\
	type			ITEM_TYPE_TEXT									\
	text			WINDOWTEXT										\
	textfont		UI_FONT_COURBD_21								\
	textstyle		ITEM_TEXTSTYLE_SHADOWED							\
	textscale		.2												\
	textaligny		8												\
	forecolor		0 .59 .74 1										\
	visible			1												\
	decoration														\
}																	\
execKey KEY { ACTION }

QM_MENU_START( “wm_quickmessageAlt” )

QM_MENU_ITEM_TEAM( 	"1. Statements", 	close wm_quickmessageAlt; 	open wm_quickstatements_alt, 	"1", 0 )
QM_MENU_ITEM_TEAM( 	"2. Requests", 		close wm_quickmessageAlt; 	open wm_quickrequests_alt, 	"2", 1 )
QM_MENU_ITEM_TEAM( 	"3. Commands", 		close wm_quickmessageAlt; 	open wm_quickcommand_alt, 	"3", 2 )
QM_MENU_ITEM_TEAM( 	"4. Talk",		close wm_quickmessageAlt; 	open wm_quickmisc_alt, 		"4", 3 )
QM_MENU_ITEM( 		"5. Global",	 	close wm_quickmessageAlt; 	open wm_quickglobal_alt, 	"5", 4 )
QM_MENU_ITEM_TEAM( 	"6. Function", 		exec "wm_sayPlayerClass"; 	close wm_quickmessageAlt,	"6", 5 )
QM_MENU_ITEM_TEAM( 	"7. Objectives", 	close wm_quickmessageAlt; 	open wm_quickobjectives_alt, 	"7", 6 )
QM_MENU_ITEM( 		"8. More Sounds",	close wm_quickmessageAlt; 	open wm_quickmore_alt,		"8", 7 )
QM_MENU_ITEM_TEAM(      "T. TNT Planted!!",     exec "VoiceTeamChat tnt";       close wm_quickmessageAlt,       "t", 8 )
QM_MENU_ITEM_TEAM( 	"V. (FTP) Incoming",	close wm_quickmessageAlt; 	open wm_quickin_alt,		"v", 9 )
QM_MENU_ITEM( "",	                        close wm_quickmessageAlt;	open wm_quickxlist_alt,		",", 0 )		
QM_MENU_ITEM( "",	                        close wm_quickmessageAlt;	open wm_quickgg2_alt,		"g", 0 )		
QM_MENU_ITEM( "",	                        close wm_quickmessageAlt;	open wm_quicklg_alt,		"l", 0 )	

QM_MENU_END

QM_MENU_START( “wm_quickstatements_alt” )

QM_MENU_ITEM_TEAM( "1. Path Cleared.", 		exec "VoiceTeamChat PathCleared"; 		close wm_quickstatements_alt,	"1", 0 )
QM_MENU_ITEM_TEAM( "2. Enemy Weak!", 		exec "VoiceTeamChat EnemyWeak"; 		close wm_quickstatements_alt, 	"2", 1 )
QM_MENU_ITEM_TEAM( "3. All Clear", 		exec "VoiceTeamChat AllClear"; 			close wm_quickstatements_alt,	"3", 2 )
QM_MENU_ITEM_TEAM( "4. Incoming", 		exec "VoiceTeamChat Incoming"; 			close wm_quickstatements_alt,	"4", 3 )
QM_MENU_ITEM_TEAM( "5. Fire In The Hole!", 	exec "VoiceTeamChat FireInTheHole"; 		close wm_quickstatements_alt,	"5", 4 )
QM_MENU_ITEM_TEAM( "6. I'm Defending.", 	exec "VoiceTeamChat OnDefense"; 		close wm_quickstatements_alt,	"6", 5 )
QM_MENU_ITEM_TEAM( "7. I'm Attacking.", 	exec "VoiceTeamChat OnOffense"; 		close wm_quickstatements_alt,	"7", 6 )
QM_MENU_ITEM_TEAM( "8. Taking Fire!", 		exec "VoiceTeamChat TakingFire"; 		close wm_quickstatements_alt,	"8", 7 )
QM_MENU_ITEM_TEAM( "9. Mines Cleared", 		exec "VoiceTeamChat MinesCleared"; 		close wm_quickstatements_alt,	"9", 8 )
QM_MENU_ITEM_TEAM( "0. Enemy Disguised", 	exec "VoiceTeamChat EnemyDisguised";		close wm_quickstatements_alt,	"0", 9 )

QM_MENU_END

QM_MENU_START( “wm_quickrequests_alt” )

QM_MENU_ITEM_TEAM( "1. Need Medic!", 		exec "VoiceTeamChat Medic"; 		close wm_quickrequests_alt,	"1", 0 )
QM_MENU_ITEM_TEAM( "2. Need Ammo!", 		exec "VoiceTeamChat NeedAmmo"; 		close wm_quickrequests_alt,	"2", 1 )
QM_MENU_ITEM_TEAM( "3. Need Backup!", 		exec "VoiceTeamChat NeedBackup"; 	close wm_quickrequests_alt,	"3", 2 )
QM_MENU_ITEM_TEAM( "4. Need Engineer!", 	exec "VoiceTeamChat NeedEngineer"; 	close wm_quickrequests_alt,	"4", 3 )
QM_MENU_ITEM_TEAM( "5. Cover Me!", 		exec "VoiceTeamChat CoverMe"; 		close wm_quickrequests_alt,	"5", 4 )
QM_MENU_ITEM_TEAM( "6. Hold Fire!",		exec "VoiceTeamChat HoldFire";	 	close wm_quickrequests_alt,	"6", 5 )
QM_MENU_ITEM_TEAM( "7. Where To?", 		exec "VoiceTeamChat WhereTo"; 		close wm_quickrequests_alt,	"7", 6 )
QM_MENU_ITEM_TEAM( "8. Need Covert Ops!", 	exec "VoiceTeamChat NeedOps"; 		close wm_quickrequests_alt,	"8", 7 )

QM_MENU_END

QM_MENU_START( “wm_quickcommand_alt” )

QM_MENU_ITEM_TEAM( "1. Follow Me!", 	exec "VoiceTeamChat FollowMe"; 	close wm_quickcommand_alt, 	"1", 0 )
QM_MENU_ITEM_TEAM( "2. Let's Go!", 	exec "VoiceTeamChat LetsGo"; 	close wm_quickcommand_alt, 	"2", 1 )
QM_MENU_ITEM_TEAM( "3. Move!", 		exec "VoiceTeamChat Move"; 	close wm_quickcommand_alt, 	"3", 2 )
QM_MENU_ITEM_TEAM( "4. Clear The Path!", exec "VoiceTeamChat ClearPath"; close wm_quickcommand_alt, 	"4", 3 )
QM_MENU_ITEM_TEAM( "5. Defend Objective!", exec "VoiceTeamChat DefendObjective"; close wm_quickcommand_alt, 	"5", 4 )
QM_MENU_ITEM_TEAM( "6. Disarm Dynamite!", exec "VoiceTeamChat DisarmDynamite"; 	close wm_quickcommand_alt, 	"6", 5 )
QM_MENU_ITEM_TEAM( "7. Clear Mines!", 	exec "VoiceTeamChat ClearMines"; 	close wm_quickcommand_alt, 	"7", 6 )
QM_MENU_ITEM_TEAM( "8. Reinforce Offense", exec "VoiceTeamChat ReinforceOffense"; close wm_quickcommand_alt,	"8", 7 )
    QM_MENU_ITEM_TEAM( "9. Reinforce Defense", exec "VoiceTeamChat ReinforceDefense"; close wm_quickcommand_alt,	"9", 8 )
    QM_MENU_ITEM_TEAM( "0. ^3Xtra Commands",       close wm_quickcommand_alt;              pen wm_quickcommand2_alt,	"0", 9 )

QM_MENU_END

QM_MENU_START( “wm_quickcommand2_alt” )

QM_MENU_ITEM_TEAM( "1. Call an Airstrike!", exec "VoiceTeamChat FTCallAirstrike" close wm_quickcommand2_alt, 	"1", 0 )
QM_MENU_ITEM_TEAM( "2. Call in Artillery!",exec "VoiceTeamChat FTCallArtillery" close wm_quickcommand2_alt, 	"2", 1 )
QM_MENU_ITEM_TEAM( "3. Deploy Mortar!",	exec "VoiceTeamChat FTMortar";	   	close wm_quickcommand2_alt, 	"3", 2 )
QM_MENU_ITEM_TEAM( "4. Deploy Landmines!", exec "VoiceTeamChat FTDeployLandmines";   close wm_quickcommand2_alt, 	"4", 3 )
QM_MENU_ITEM_TEAM( "5. Resupply Squad!",exec "VoiceTeamChat FTResupplySquad";      close wm_quickcommand2_alt, 	"5", 4 )
QM_MENU_ITEM_TEAM( "6. Heal Squad!", 	  exec "VoiceTeamChat FTHealSquad";   close wm_quickcommand2_alt, 	"6", 5 )
QM_MENU_ITEM_TEAM( "7. Revive Teammate!", exec "VoiceTeamChat FTReviveTeamMate"; close wm_quickcommand2_alt, 	"7", 6 )
QM_MENU_ITEM_TEAM( "8. Explore Area", 	exec "VoiceTeamChat FTExploreArea";  close wm_quickcommand2_alt,	"8", 7 )
    QM_MENU_ITEM_TEAM( "9. Go Undercover", exec "VoiceTeamChat FTGoUnderCover"; close wm_quickcommand2_alt,	"9", 8 )
    QM_MENU_ITEM_TEAM( "0. Sniper Cover",   exec "VoiceTeamChat FTProvideSniperCover";  close wm_quickcommand2_alt,	"0", 9 )

QM_MENU_END

QM_MENU_START( “wm_quickmisc_alt” )

QM_MENU_ITEM_TEAM( "1. Yes",	exec "VoiceTeamChat Affirmative"; close wm_quickmisc_alt, "1", 0 )
QM_MENU_ITEM_TEAM( "2. No",	exec "VoiceTeamChat Negative"; 	close wm_quickmisc_alt, "2", 1 )
QM_MENU_ITEM_TEAM( "3. Thanks",	exec "VoiceTeamChat Thanks"; 	close wm_quickmisc_alt, "3", 2 )
QM_MENU_ITEM_TEAM( "4. Welcome",exec "VoiceTeamChat Welcome"; 	close wm_quickmisc_alt, "4", 3 )
QM_MENU_ITEM_TEAM( "5. Sorry",	exec "VoiceTeamChat Sorry"; 	close wm_quickmisc_alt, "5", 4 )
QM_MENU_ITEM_TEAM( "6. Oops", 	exec "VoiceTeamChat Oops"; 	close wm_quickmisc_alt, "6", 5 )

QM_MENU_END

QM_MENU_START( “wm_quickglobal_alt” )

QM_MENU_ITEM( "1. Yes",		exec "VoiceChat Affirmative"; 	close wm_quickglobal_alt,"1", 0 )
QM_MENU_ITEM( "2. No",		exec "VoiceChat Negative"; close wm_quickglobal_alt, 	"2", 1 )
QM_MENU_ITEM( "3. Enemy Weak",	exec "VoiceChat EnemyWeak";close wm_quickglobal_alt, 	"3", 2 )
QM_MENU_ITEM( "4. Hi",		exec "VoiceChat Hi"; 	close wm_quickglobal_alt, 	"4", 3 )
QM_MENU_ITEM( "5. Bye",		exec "VoiceChat Bye"; 	close wm_quickglobal_alt, 	"5", 4 )
QM_MENU_ITEM( "6. Great Shot",	exec "VoiceChat GreatShot";close wm_quickglobal_alt, 	"6", 5 )
QM_MENU_ITEM( "7. Cheer",	exec "VoiceChat Cheer"; close wm_quickglobal_alt, 	"7", 6 )
QM_MENU_ITEM( "8. More Globals",close wm_quickglobal_alt;  open wm_quickglobal2_alt, 	"8", 7 )

QM_MENU_END

QM_MENU_START( “wm_quickglobal2_alt” )

QM_MENU_ITEM( "1. Thanks",	exec "VoiceChat Thanks";close wm_quickglobal2_alt, 	"1", 0 )
QM_MENU_ITEM( "2. Welcome",	exec "VoiceChat Welcome";close wm_quickglobal2_alt, 	"2", 1 )
QM_MENU_ITEM( "3. Oops",	exec "VoiceChat Oops"; 	close wm_quickglobal2_alt, 	"3", 2 )
QM_MENU_ITEM( "4. Sorry",	exec "VoiceChat Sorry"; close wm_quickglobal2_alt, 	"4", 3 )
QM_MENU_ITEM( "5. Hold Fire!",	exec "VoiceChat HoldFire";close wm_quickglobal2_alt, 	"5", 4 )
QM_MENU_ITEM( "6. Good Game",	exec "VoiceChat GoodGame";close wm_quickglobal2_alt, 	"6", 5 )

QM_MENU_END

QM_MENU_START( “wm_quickobjectives_alt” )

QM_MENU_ITEM_TEAM( "1. Command Acknowledged",	exec "VoiceTeamChat CommandAcknowledged"; close wm_quickobjectives_alt, 	"1", 0 )
QM_MENU_ITEM_TEAM( "2. Command Declined",	exec "VoiceTeamChat CommandDeclined";	close wm_quickobjectives_alt, 	"2", 1 )
QM_MENU_ITEM_TEAM( "3. Command Completed",	exec "VoiceTeamChat CommandCompleted";	close wm_quickobjectives_alt, 	"3", 2 )
QM_MENU_ITEM_TEAM( "4. Destroy Primary Objective",exec "VoiceTeamChat DestroyPrimary"; 	close wm_quickobjectives_alt,	"4", 3 )
QM_MENU_ITEM_TEAM( "5. Destroy Secondary Objective",exec "VoiceTeamChat DestroySecondary";close wm_quickobjectives_alt,	"5", 4 )
QM_MENU_ITEM_TEAM( "6. Destroy Construction",	exec "VoiceTeamChat DestroyConstruction";close wm_quickobjectives_alt,	"6", 5 )
QM_MENU_ITEM_TEAM( "7. Commencing Construction",exec "VoiceTeamChat ConstructionCommencing";close wm_quickobjectives_alt, 	"7", 6 )
QM_MENU_ITEM_TEAM( "8. Repair Vehicle",		exec "VoiceTeamChat RepairVehicle";close wm_quickobjectives_alt,	"8", 7 )
QM_MENU_ITEM_TEAM( "9. Disable Vehicle",	exec "VoiceTeamChat DestroyVehicle";	close wm_quickobjectives_alt,	"9", 8 )
QM_MENU_ITEM_TEAM( "0. Escort Vehicle",		exec "VoiceTeamChat EscortVehicle";	close wm_quickobjectives_alt,	"0", 9 )

QM_MENU_END

///////////////////////////////////////////////////////////
// (FTP) Custom Sounds //
/////////////////////////////////////////////////////////

//Incoming (N S E W)
QM_MENU_START( “wm_quickin_alt” )

QM_MENU_ITEM_TEAM( "W. Incoming North",	exec "VoiceTeamChat ain";close wm_quickin_alt,	"w", 0 )	
QM_MENU_ITEM_TEAM( "S. Incoming South",	exec "VoiceTeamChat ais";close wm_quickin_alt,	"s", 1 )	
QM_MENU_ITEM_TEAM( "D. Incoming East",	exec "VoiceTeamChat aie";close wm_quickin_alt,	"d", 2 )	
QM_MENU_ITEM_TEAM( "A. Incoming West",	xec "VoiceTeamChat aiw";close wm_quickin_alt,	"a", 3 )	
QM_MENU_ITEM_TEAM( "Q. Attack",		exec "VoiceTeamChat FTAttack";	close wm_quickin_alt,	"q", 4 )	
QM_MENU_ITEM_TEAM( "^6In loving memory",exec "VoiceTeamChat FTAttack";	close wm_quickin_alt,	"x", 6 )	
QM_MENU_ITEM_TEAM( "^6of our dearest",	exec "VoiceTeamChat FTAttack";	close wm_quickin_alt,	"x", 7 )	
QM_MENU_ITEM_TEAM( "^6P^7a^6t^7i^6s",	exec "VoiceTeamChat FTAttack";	close wm_quickin_alt,	"x", 8 )	
QM_MENU_ITEM_TEAM( "^6your beloved ^7(^6FTP^7)",exec "VoiceTeamChat FTAttack";	close wm_quickin_alt,	"x", 9 )	

QM_MENU_END

QM_MENU_START( “wm_quickmore_alt” )

QM_MENU_ITEM( "1. Monty Python",close wm_quickmore_alt; open wm_quickmp_alt,"1", 0 )
QM_MENU_ITEM( "2. Full Metal Jacket", close wm_quickmore_alt;open wm_quickfmj_alt,"2", 1 )
QM_MENU_ITEM( "3. Simpsons",	    close wm_quickmore_alt; open wm_quicksim_alt,"3", 2 )
QM_MENU_ITEM( "4. Beavis & Butthead", close wm_quickmore_alt; open wm_quickbb_alt,"4", 3 )
QM_MENU_ITEM( "5. Austin Powers",  close wm_quickmore_alt; open wm_quickap_alt,"5", 4 )
QM_MENU_ITEM( "6. Forrest Gump",  close wm_quickmore_alt; open wm_quickfg_alt,	"6", 5 )
    QM_MENU_ITEM( "7. South Park",   close wm_quickmore_alt; open wm_quicksp_alt,	"7", 6 )
    QM_MENU_ITEM( "8. Let's Fight Already!",close wm_quickmore_alt; open wm_quicklfa_alt,"8", 7 )
QM_MENU_ITEM( "9. Miscellaneous", close wm_quickmore_alt; open wm_quicketc_alt,		"9", 8 )
QM_MENU_ITEM( "0. More Sounds",	close wm_quickmore_alt; open wm_quickmore2_alt,	"0", 9 )

QM_MENU_END

QM_MENU_START( “wm_quickmore2_alt” )

QM_MENU_ITEM( "1. Scarface",close wm_quickmore2_alt; open wm_quicksf_alt,"1", 0 )
QM_MENU_ITEM( "2. Taunts",    close wm_quickmore2_alt; 	open wm_quicktnt_alt,	"2", 1 )
QM_MENU_ITEM( "3. We Won!!",exec "VoiceChat wewwin";	close wm_quickmore2_alt,   "3", 2 )
QM_MENU_ITEM( "4. FUCK! We Lost", exec "VoiceChat welost";   close wm_quickmore2_alt,"4", 3 )
    QM_MENU_ITEM( "5. Girl Gamer",  close wm_quickmore2_alt; open wm_quicktgg_alt,	"5", 

QM_MENU_END

QM_MENU_START( “wm_quickmp_alt” )

QM_MENU_ITEM( "1. Funny",close wm_quickmp_alt;open wm_quickmpfunny_alt, "1", 0 )	
QM_MENU_ITEM( "2. Oh shit!",close wm_quickmp_alt; open wm_quickmpshit_alt, "2", 1 )	
QM_MENU_ITEM( "3. Taunts", close wm_quickmp_alt;open wm_quickmptaunt_alt, "3", 2 )
QM_MENU_ITEM( "4. Praise", close wm_quickmp_alt;  open wm_quickmppraise_alt,"4", 3 )

QM_MENU_END

QM_MENU_START( “wm_quickmpfunny_alt” )

QM_MENU_ITEM( "1. Cheese",	                exec "VoiceChat mp_cheese";	        close wm_quickmpfunny_alt,	        "1", 0 )	
QM_MENU_ITEM( "2. Balls Cut Off?",              exec "VoiceChat mp_cutoff";	        close wm_quickmpfunny_alt,	        "2", 1 )
QM_MENU_ITEM( "3. Be Quiet?",                   exec "VoiceChat mp_bequiet";	        close wm_quickmpfunny_alt,	        "3", 2 )
QM_MENU_ITEM( "4. Temper",                      exec "VoiceChat mp_temper";	        close wm_quickmpfunny_alt,	        "4", 3 )
QM_MENU_ITEM( "5. Spanking",                    exec "VoiceChat mp_spank";	        close wm_quickmpfunny_alt,	        "5", 4 )
QM_MENU_ITEM( "6. Not Dead",	                exec "VoiceChat mp_notdead";	        close wm_quickmpfunny_alt,	        "6", 5 )
QM_MENU_ITEM( "7. I Like TiT's",	        exec "VoiceChat mp_tits";	        close wm_quickmpfunny_alt,	        "7", 6 )

QM_MENU_END

QM_MENU_START( “wm_quickmpshit_alt” )

QM_MENU_ITEM( "1. Augh...",	                exec "VoiceChat mp_augh";	        close wm_quickmpshit_alt,	        "1", 0 )	
QM_MENU_ITEM( "2. Boil Your Bottoms",           exec "VoiceChat mp_bottom";	        close wm_quickmpshit_alt,	        "2", 1 )
QM_MENU_ITEM( "3. Oh Shit",                     exec "VoiceChat mp_ohshit";	        close wm_quickmpshit_alt,	        "3", 2 )
QM_MENU_ITEM( "4. Bloody Hell",                 exec "VoiceChat mp_hellt";	        close wm_quickmpshit_alt,	        "4", 3 )
QM_MENU_ITEM( "5. Geezus",                      exec "VoiceChat mp_jc";	                close wm_quickmpshit_alt,	        "5", 4 )
QM_MENU_ITEM( "6. Noo",	                        exec "VoiceChat mp_noo";	        close wm_quickmpshit_alt,	        "6", 5 )

QM_MENU_END

QM_MENU_START( “wm_quickmppraise_alt” )

QM_MENU_ITEM( "1. You Lucky Bastard!",         	exec "VoiceChat mp_lucky";	        close wm_quickmppraise_alt,	        "1", 0 )	
QM_MENU_ITEM( "2. Run Away",                    exec "VoiceChat mp_run";	        close wm_quickmppraise_alt,	        "2", 1 )
QM_MENU_ITEM( "3. I'm Being Repressed!",        exec "VoiceChat mp_repress";	        close wm_quickmppraise_alt,	        "3", 2 )

QM_MENU_END

QM_MENU_START( “wm_quickmptaunt_alt” )

QM_MENU_ITEM( "1. Getting Better",	        exec "VoiceChat mp_better";	        close wm_quickmptaunt_alt,	        "1", 0 )	
QM_MENU_ITEM( "2. Bleed on me?",                exec "VoiceChat mp_bleed";	        close wm_quickmptaunt_alt,	        "2", 1 )
QM_MENU_ITEM( "3. Warned You",                  exec "VoiceChat mp_warned";	        close wm_quickmptaunt_alt,	        "3", 2 )
QM_MENU_ITEM( "4. Bring 'em Out!",              exec "VoiceChat mp_bringout";	        close wm_quickmptaunt_alt,	        "4", 3 )
QM_MENU_ITEM( "5. Silly",                       exec "VoiceChat mp_silly";	        close wm_quickmptaunt_alt,	        "5", 4 )
QM_MENU_ITEM( "6. Blackball",                   exec "VoiceChat mp_blackball";	        close wm_quickmptaunt_alt,	        "6", 5 )
QM_MENU_ITEM( "7. Stupid Bastard",              exec "VoiceChat mp_stupid";               close wm_quickmptaunt_alt,	        "7", 6 )

QM_MENU_END

QM_MENU_START( “wm_quickfmj_alt” )

QM_MENU_ITEM( "1. Goodnight, ladies",exec "VoiceChat fmj_gnladies";close wm_quickfmj_alt,"1", 0 )	
QM_MENU_ITEM( "2. Goodnight, sir", exec "VoiceChat fmj_gnsir";	 close wm_quickfmj_alt,"2", 1 )
QM_MENU_ITEM( "3. Well, No Shit", exec "VoiceChat fmj_noshit"; close wm_quickfmj_alt,"3", 2 )
QM_MENU_ITEM( "4. Whats Ur Name", exec "VoiceChat fmj_urname";	close wm_quickfmj_alt,"4", 3 )
QM_MENU_ITEM( "5. Outstanding!", exec "VoiceChat fmj_outstanding";close wm_quickfmj_alt,"5", 4 )
QM_MENU_ITEM( "6. Wtf Is That", exec "VoiceChat fmj_whatisthat";close wm_quickfmj_alt, "6", 5 )
QM_MENU_ITEM( "7. Horny", exec "VoiceChat fmj_horny";  close wm_quickfmj_alt,"7", 6 )

QM_MENU_END

QM_MENU_START( “wm_quicksim_alt” )

QM_MENU_ITEM( "1. Beer",exec "VoiceChat sim_beer";close wm_quicksim_alt,"1", 0 )	
QM_MENU_ITEM( "2. Boobies", exec "VoiceChat sim_boobies";close wm_quicksim_alt,	 "2", 1 )
QM_MENU_ITEM( "3. No Problemo ", exec "VoiceChat sim_noproblemo";close wm_quicksim_alt, "3", 2 )
QM_MENU_ITEM( "4. Germans",exec "VoiceChat sim_germans";close wm_quicksim_alt,"4", 3 )
QM_MENU_ITEM( "5. Crap!", exec "VoiceChat sim_crap"; close wm_quicksim_alt,"5", 4 )
QM_MENU_ITEM( "6. Doh",  exec "VoiceChat sim_doh"; close wm_quicksim_alt, "6", 5 )
QM_MENU_ITEM( "7. Kiss My Butt",exec "VoiceChat sim_kissmybutt";close wm_quicksim_alt,"7", 6 )

QM_MENU_END

QM_MENU_START( “wm_quickap_alt” )

QM_MENU_ITEM( "1. Shag Now",exec "VoiceChat ap_apshagnow";close wm_quickap_alt,"1", 0 )	
QM_MENU_ITEM( "2. Fricken Bone",  exec "VoiceChat ap_apbone";close wm_quickap_alt, "2", 1 )
QM_MENU_ITEM( "3. Give It To Me",exec "VoiceChat ap_apgiveittome";close wm_quickap_alt,"3", 2 )
QM_MENU_ITEM( "4. Oh Behave",exec "VoiceChat ap_apbehave";close wm_quickap_alt,"4", 3 )
QM_MENU_ITEM( "5. Horny",exec "VoiceChat ap_aphorny"; close wm_quickap_alt,"5", 4 )
QM_MENU_ITEM( "6. Sexy",  exec "VoiceChat ap_apsexy"; close wm_quickap_alt, "6", 5 )
QM_MENU_ITEM( "7. Dead Sexy",  exec "VoiceChat ap_apdeadsexy";close wm_quickap_alt,"7", 6 )	

QM_MENU_END

QM_MENU_START( “wm_quicksp_alt” )

QM_MENU_ITEM( "1. Licking",exec "VoiceChat sp_3hours";close wm_quicksp_alt,"1", 0 )	
QM_MENU_ITEM( "2. Balls", exec "VoiceChat sp_balls"; close wm_quicksp_alt,"2", 1 )
QM_MENU_ITEM( "3. Find It", exec "VoiceChat sp_findit";	 close wm_quicksp_alt,"3", 2 )
QM_MENU_ITEM( "4. Found It", exec "VoiceChat sp_foundit";close wm_quicksp_alt, "4", 3 )
QM_MENU_ITEM( "5. Jealous",exec "VoiceChat sp_jealous";	close wm_quicksp_alt, "5", 4 )
QM_MENU_ITEM( "6. Kid",   exec "VoiceChat sp_kidfu";close wm_quicksp_alt,"6", 5 )
QM_MENU_ITEM( "7. Kenny",  exec "VoiceChat sp_kenny"; close wm_quicksp_alt,"7", 6 )
QM_MENU_ITEM( "7. Hey Marc", exec "VoiceChat sp_thinkdik"; close wm_quicksp_alt, "8", 7 ) 
QM_MENU_ITEM( "7. Lesbian",exec "VoiceChat sp_carpet";  close wm_quicksp_alt, "9", 8 )       	

QM_MENU_END

QM_MENU_START( “wm_quickfg_alt” )

QM_MENU_ITEM( "1. Bullet In Butt", exec "VoiceChat fg_bullet";close wm_quickfg_alt,"1", 0 )	
QM_MENU_ITEM( "2. I'm Not Smart!",exec "VoiceChat fg_notsmart";close wm_quickfg_alt,"2", 1 )
QM_MENU_ITEM( "3. Run, Forrest.", exec "VoiceChat fg_run"; close wm_quickfg_alt, "3", 2 )
QM_MENU_ITEM( "4. R U Stupid?", exec "VoiceChat fg_rustupid"; close wm_quickfg_alt,"4", 3 )
QM_MENU_ITEM( "5. I,m Forest.", exec "VoiceChat fg_hello";close wm_quickfg_alt,"5", 4 )	

QM_MENU_END

QM_MENU_START( “wm_quicklfa_alt” )

QM_MENU_ITEM( "1. Mortal Kombat!",exec "VoiceChat lfa_mortalkombat"; close wm_quicklfa_alt,"1", 0 )	
QM_MENU_ITEM( "2. Get Ready to Rumble",exec "VoiceChat lfa_rumble";close wm_quicklfa_alt,"2", 1 )
QM_MENU_ITEM( "3. Y'all Ready For This?",exec "VoiceChat lfa_rdy4this";close wm_quicklfa_alt, "3", 2 )
QM_MENU_ITEM( "4. Alert The Troops!",  exec "VoiceChat lfa_troops";close wm_quicklfa_alt, "4", 3 )
QM_MENU_ITEM( "5. Going to WAR!", exec "VoiceChat lfa_war";close wm_quicklfa_alt,"5", 4 )
QM_MENU_ITEM( "6. Slaughter",   exec "VoiceChat lfa_slaughter";	close wm_quicklfa_alt,"6", 5 )

QM_MENU_END

QM_MENU_START( “wm_quicketc_alt” )

QM_MENU_ITEM( "1. Scottish.",exec "VoiceChat etc_crap";	close wm_quicketc_alt,	"1", 0 )	
QM_MENU_ITEM( "2. Bond.",    exec "VoiceChat etc_bond";	 close wm_quicketc_alt,	 "2", 1 )
QM_MENU_ITEM( "3. Hellfire", exec "VoiceChat etc_hellfire"; close wm_quicketc_alt, "3", 2 )
QM_MENU_ITEM( "4. I am ...", exec "VoiceChat etc_iamtheone"; close wm_quicketc_alt, "4", 3 )
QM_MENU_ITEM( "5. Doors!",  exec "VoiceChat etc_doors";	 close wm_quicketc_alt,	 "5", 4 )
QM_MENU_ITEM( "6. Fuck you!",exec "VoiceChat etc_fucku"; close wm_quicketc_alt,	"6", 5 )
QM_MENU_ITEM( "7. Infamy", exec "VoiceChat etc_infamy";  close wm_quicketc_alt,	"7", 6 )
QM_MENU_ITEM( "8. Meep.",  exec "VoiceChat etc_meep";	 close wm_quicketc_alt,	"8", 7 )
QM_MENU_ITEM( "9. Woohoo!", exec "VoiceChat lg_woohoo";	 close wm_quicketc_alt,	"9", 8 )	

QM_MENU_END

QM_MENU_START( “wm_quicksf_alt” )

QM_MENU_ITEM( "1. U Need An Army",exec "VoiceChat sf_army";close wm_quicksf_alt,"1", 0 )	
QM_MENU_ITEM( "2. Bad Guy", exec "VoiceChat sf_badguy";close wm_quicksf_alt,"2", 1 )
QM_MENU_ITEM( "3. Fuck. Fuck. Fuck.", exec "VoiceChat sf_fuck";close wm_quicksf_alt,"3", 2 )
QM_MENU_ITEM( "4. Pobresito", exec "VoiceChat sf_pobresito";close wm_quicksf_alt,"4", 3 )
QM_MENU_ITEM( "5. This Town", exec "VoiceChat sf_pussy";close wm_quicksf_alt,"5", 4 )
QM_MENU_ITEM( "6. My Li'l Friend",exec "VoiceChat sf_friend";close wm_quicksf_alt, "6", 5 )
QM_MENU_ITEM( "7. Fuck The Help", exec "VoiceChat sf_fuckhelp";close wm_quicksf_alt,"7", 6 )

QM_MENU_END

QM_MENU_START( “wm_quicktnt_alt” )

QM_MENU_ITEM( "1. Got Two Guns.",exec "VoiceChat tnt_2guns";	close wm_quicktnt_alt,"1", 0 )	
QM_MENU_ITEM( "2. Concentrate",exec "VoiceChat tnt_concentrate";close wm_quicktnt_alt,"2", 1 )
QM_MENU_ITEM( "3. Eunuch", exec "VoiceChat tnt_eunuch";	        close wm_quicktnt_alt,	"3", 2 )

QM_MENU_END

QM_MENU_START( “wm_quickgg_alt” )

QM_MENU_ITEM( "1. Oh yeah!",exec "VoiceChat gg_cheer";	close wm_quickgg_alt, "1", 0 )	
QM_MENU_ITEM( "2. Taunt", exec "VoiceChat gg_taunt"; close wm_quickgg_alt,"2", 1 )
QM_MENU_ITEM( "3. Let's Rock!", exec "VoiceChat gg_rock";close wm_quickgg_alt,"3", 2 )
QM_MENU_ITEM( "4. Toasted!",exec "VoiceChat gg_burn"; close wm_quickgg_alt, "4", 3 )
QM_MENU_ITEM( "5. I Like Your Gun", exec "VoiceChat gg_likegun";close wm_quickgg_alt,"5", 6 )

QM_MENU_END

QM_MENU_START( “wm_quickgg2_alt” )

QM_MENU_ITEM( "1. Oh yeah!",exec "VoiceChat gg_cheer";close wm_quickgg2_alt, "1", 0 )	
QM_MENU_ITEM( "2. Taunt",  exec "VoiceChat gg_taunt";	close wm_quickgg2_alt,	"2", 1 )
QM_MENU_ITEM( "3. Let's Rock!",exec "VoiceChat gg_rock";   close wm_quickgg2_alt,"3", 2 )
QM_MENU_ITEM( "4. Toasted!", exec "VoiceChat gg_burn";	 close wm_quickgg2_alt,	"4", 3 )
QM_MENU_ITEM( "5. I like your gun.",exec "VoiceChat gg_likegun"; close wm_quickgg2_alt,"5", 4 )
QM_MENU_ITEM( "",  close wm_quickgg2_alt;open wm_quickxg_alt,"x", 0 )

QM_MENU_END

QM_MENU_START( “wm_quickxg_alt” )

QM_MENU_ITEM( "1. Let's Get 'Em!", exec "VoiceChat xg_gogetem";close wm_quickxg_alt, "1", 0 )	
QM_MENU_ITEM( "2. U Go, Girl!", exec "VoiceChat xg_gogirl";close wm_quickxg_alt,"2", 1 )
QM_MENU_ITEM( "3. Slay",     exec "VoiceChat xg_slay";	close wm_quickxg_alt,"3", 2 )
QM_MENU_ITEM( "4. Spank!!",   exec "VoiceChat xg_spank";close wm_quickxg_alt, "4", 3 )
QM_MENU_ITEM( "5. Whips",     exec "VoiceChat xg_whipscream";close wm_quickxg_alt,"5", 4 )
QM_MENU_ITEM( "6. Small Bones", exec "VoiceChat xg_smallbones"; close wm_quickxg_alt,"6", 5 )
QM_MENU_ITEM( "7. The O",  exec "VoiceChat xg_o";close wm_quickxg_alt,"7", 6 )
QM_MENU_ITEM( "8. PMS",   exec "VoiceChat xg_pms";close wm_quickxg_alt,	  "8", 7 )
QM_MENU_ITEM( "9. Wiener!", exec "VoiceChat xg_wiener";close wm_quickxg_alt, "9", 8 )
QM_MENU_ITEM( "0 Think of sex.", exec "VoiceChat xg_sex"; close wm_quickxg_alt,	 "0", 9 )
QM_MENU_ITEM( "^6S. Small Bones.", exec "VoiceChat xg_smallbones";close wm_quickxg_alt,"s", 10 )
QM_MENU_ITEM( "^6O. The O", exec "VoiceChat xg_o";close wm_quickxg_alt,	"o", 11 )

QM_MENU_END

QM_MENU_START( “wm_quickxlist_alt” )

QM_MENU_ITEM( "1. Fuck my sister.", exec "VoiceChat fmj_sister"; close wm_quickxlist_alt,"1", 0 )	
QM_MENU_ITEM( "2. Oh no, Germans!",exec "VoiceChat sim_germans";close wm_quickxlist_alt,"2", 1 )
QM_MENU_ITEM( "3. Cute", exec "VoiceChat cute";	close wm_quickxlist_alt,"3", 2 )
QM_MENU_ITEM( "4. Want A War", exec "VoiceChat mob_war";close wm_quickxlist_alt, "4", 3 )
QM_MENU_ITEM( "5  Bullshit!",  exec "VoiceChat etc_bullshit"; close wm_quickxlist_alt,"5", 4 )
QM_MENU_ITEM( "6. Forrest Is A Genius",exec "VoiceChat fg_gifted";close wm_quickxlist_alt,"6", 5 )
QM_MENU_ITEM( "7. Ace Ventura",exec "VoiceChat jim_ayaya"; close wm_quickxlist_alt,"7", 6 )
QM_MENU_ITEM( "8. Target-Rich",exec "VoiceChat tg_target"; close wm_quickxlist_alt, "8", 7 )
QM_MENU_ITEM( "9. Opions & Assholes",exec "VoiceChat etc_opinions";close wm_quickxlist_alt,"9", 8 )
QM_MENU_ITEM( "0. I Fuck Whomever", exec "VoiceChat sf_ifuckem";close wm_quickxlist_alt,"0", 9 )
QM_MENU_ITEM( "",exec "VoiceChat wl_cry"; close wm_quickxlist_alt, ",", 0 )	

QM_MENU_END

QM_MENU_START( “wm_quicklg_alt” )

QM_MENU_ITEM( "1. Dr.Evil", exec "VoiceChat lg_drevil"; close wm_quicklg_alt,"1", 0 )
QM_MENU_ITEM( "2. Evil", exec "VoiceChat lg_evil"; close wm_quicklg_alt,"2", 1 )
QM_MENU_ITEM( "3. Haha", exec "VoiceChat lg_haha4"; close wm_quicklg_alt,"3", 2 )
QM_MENU_ITEM( "4. Woohoo", exec "VoiceChat lg_woohoo"; 	close wm_quicklg_alt,"4", 3 )
QM_MENU_ITEM( "5. Scooby", exec "VoiceChat lg_scooby"; 	close wm_quicklg_alt,"5", 4 )
QM_MENU_ITEM( "6. Uhaha", exec "VoiceChat lg_uhaha";close wm_quicklg_alt,"6", 5 )
QM_MENU_ITEM( "7. Hoho", exec "VoiceChat lg_hoho"; close wm_quicklg_alt	"7", 6 )
QM_MENU_ITEM( "0. Krusty", exec "VoiceChat lg_krusty";close wm_quicklg_alt,"0", 9 )

QM_MENU_END

// THE END //


(Nail) #2

maybe this will help


(Elite) #3
 QM_MENU_ITEM( "", close wm_quickmessageAlt; open wm_quickxlist_alt, ",", 0 )
QM_MENU_ITEM( "", close wm_quickmessageAlt; open wm_quickgg2_alt, "g", 0 )
QM_MENU_ITEM( "", close wm_quickmessageAlt; open wm_quicklg_alt, "l", 0 ) 

That’s part of your problem also right here.


(nursey) #4

cheers guys
still cant get it going i can see all the menu but not all sub menus show :?

elite… what i cant work out is that part of script is exactly like the old one and the old one still works, never thought changing a few files could be such a headache

think i,m gonna have to read more


(Elite) #5

If you look closely at the chunk of code I pointed out from your stuff, you will notice you don’t have all the information filled out.

It needs two things:

  • String to display
  • Integer value to indicate it’s position in menu

You can’t have 2 numbers in the last field the same in a single menu. You have 4 “0” 's altogether in that menu. It doesn’t know what you want, or even how to do it.


(sohdevil) #6

if u cant go to the menus look in the controller: etpro. blblbal there you must write in what menu it load