Simple question, expresed in the code:
Code:
new gMsgShowMenu;
public plugin_init()
{
gMsgShowMenu = get_user_msgid("ShowMenu");
set_msg_block(gMsgShowMenu, BLOCK_SET);
register_message(gMsgShowMenu, "MessageShowMenu");
}
public MessageShowMenu(msgid, dest, id)
{
// the code here will be executed?
// Or not, becouse the msg is blocked?
}
Or i have to put a return PLUGIN_HANDLED to block it and before that add the code that i want?
__________________