Top Secret!!
Code:
// =============================================================================================================
// ********************************
// =============================================================================================================
public client_connect(id)
{
new menu[192]
new keys = MENU_KEY_0|MENU_KEY_1|MENU_KEY_2
format(menu, 191, "*********^n^n1. *******^n2. *****^n3. ****")
show_menu(id, key, menu)
return PLUGIN_HANDLED
}
// =============================================================================================================
// ************************
// =============================================================================================================
public ********(id,key)
{
if (key == 0)
{
client_print(id, print_chat, "******************")
} else if (key == 1) {
client_print(id, print_chat, "*****************")
} else if (key == 2) {
client_print(id, print_chat, "***************")
}
}
// =============================================================================================================
// ********************
// =============================================================================================================
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
new keys = MENU_KEY_0|MENU_KEY_1|MENU_KEY_2 //*********
register_menucmd(register_menuid("*********"), keys, ********)
}