View Single Post
Author Message
Gasior
Member
Join Date: Mar 2012
Old 01-15-2017 , 18:41   How to delete numbers in the menu?
Reply With Quote #1

Hi there again!

Quick question when I make a menu, in front of the options there are numbers. How do I get rid of them? I saw that on couple of servers and it looks way much better for my plugin. How do I do that?

Code:
public Menu( id )
 {
    new menu = menu_create( "\wMenu", "menu_handler");

    menu_additem( menu, "\yA" ); 
    menu_additem( menu, "\yB" ); 
    menu_additem( menu, "\yC" ); 
    menu_setprop( menu, MPROP_EXIT, MEXIT_ALL );
    menu_display( id, menu, 0 );

 }
Gasior is offline