3 things:
1:remove/change
Code:
new nLen = format(szMenuBody, 255, "\yMain Menu:^n");
to
Code:
new nLen = format(szMenuBody, 255, "Main Menu: ^n");
2:change "\yMain Menu: " to "Main Menu: ",i thing he dont can get menuid by special chars.
3:as i know are quotes not needed
Code:
client_cmd(id, "speak ^"csm/menuselect.wav^"");
->
Code:
client_cmd(id, "speak csm/menuselect.wav");
At last test the menu by using a client_print message:client_print(id,print_chat,"you have pressed key %d",key)
__________________