Custom Sound Error


(LaggingTom) #1

I just made a small pk3 that replaces the wm_quickmessage.menu and it’s alt. It’s been working perfectly until I decided to add another level of menus. Now, the error I recieve is:

And when I found line 280 it was the line about angry butt-sex in this:

QM_MENU_START( "wm_quickkcc" )

	QM_MENU_ITEM_TEAM( "B. Angry Butt-Sex",	exec "VoiceChat kcc_buttsex";	close wm_quickkcc		"b", 0 )
	QM_MENU_ITEM_TEAM( "A. Acid",			exec "VoiceChat kcc_acid";		close wm_quickkcc		"a", 1 )
	QM_MENU_ITEM_TEAM( "F. Funny Section",	exec "VoiceChat kcc_ban";		close wm_quickkcc		"f", 2 )
	QM_MENU_ITEM_TEAM( "P. Porn",			exec "VoiceChat kcc_porn";		close wm_quickkcc		"p", 3 )
	QM_MENU_ITEM_TEAM( "E. Awesome",		exec "VoiceChat kcc_awesome";	close wm_quickkcc		"e", 4 )
	QM_MENU_ITEM_TEAM( "W. Wang",			exec "VoiceChat kcc_wang";		close wm_quickkcc		"w", 5 )
	QM_MENU_ITEM_TEAM( "N. Naked",		exec "VoiceChat kcc_naked";		close wm_quickkcc		"n", 6 )

QM_MENU_END

For wm_quickmessage.menu and

QM_MENU_START( "wm_quickkcc_alt" )

	QM_MENU_ITEM_TEAM( "1. Angry Butt-Sex",	exec "VoiceChat kcc_buttsex";		close wm_quickkcc_alt		"1", 0 )
	QM_MENU_ITEM_TEAM( "2. Acid",			exec "VoiceChat kcc_acid";		close wm_quickkcc_alt		"2", 1 )
	QM_MENU_ITEM_TEAM( "3. Funny Section",	exec "VoiceChat kcc_ban";		close wm_quickkcc_alt		"3", 2 )
	QM_MENU_ITEM_TEAM( "4. Porn",			exec "VoiceChat kcc_porn";		close wm_quickkcc_alt		"4", 3 )
	QM_MENU_ITEM_TEAM( "5. Awesome",		exec "VoiceChat kcc_awesome";		close wm_quickkcc_alt		"5", 4 )
	QM_MENU_ITEM_TEAM( "6. Wang",			exec "VoiceChat kcc_wang";		close wm_quickkcc_alt		"6", 5 )
	QM_MENU_ITEM_TEAM( "7. Naked",		exec "VoiceChat kcc_naked";		close wm_quickkcc_alt		"7", 6 )

QM_MENU_END

for wm_quickmessageAlt.menu

Any clues?


(nUllSkillZ) #2

Not sure but the only thing is different from the others is the “-” in Butt-Sex.
My Suggestion: Try without the “-”.


(LaggingTom) #3

That’s not it, because a menu before it has the same -

just for Jesus-fish

:\


(KillerWhale) #4

Add a comma “,” behind every “close wm_quickkcc_alt”.


(LaggingTom) #5

Thank you soooo much! I hate those tiny errors that matter so damn much.