you forgot MENU_KEY_3 on both keys list.
Also, you have to return PLUGIN_HANDLED in menu handler.
In menu handler, use a switch statement
Code:
switch( key )
{
case 0:give_item(id, "weapon_ak47")
case 1:give_item(id, "weapon_XXX")
case 2:give_item(id, "weapon_XXX")
}
Also, i think you are a bit confused :
MENU_KEY_1 represent slot1
but in handler, key : 0 represent slot 1
MENU_KEY_0 represent slot 0 (exit)
key : 9 is slot 0 (exit)
__________________