He probably means something like this:
Code:
public plugin_init( )
{
register_clcmd( "chooseteam", "Function" );
}
public Function( id )
{
// create menu and stuff
return PLUGIN_HANDLED;
}
That way, you execute a block of code on the client when he's pressing m(if he has chooseteam on M as default), and removes the default choose team menu, without changing anything client-side.
__________________