What do you mean? Show the menu only to "Bob"?
Make a command that shows the menu for the target player.
i.e.
Code:
public blah(id,level,cid)
{
if (!cmd_access(id,level,cid,3))
return PLUGIN_HANDLED
new arg[32], arg2[32]
read_argv(1,arg,31)
read_argv(2,arg2,31)
new target=cmd_target(id,arg,4)
if(!target)
{
client_print(id,print_console,"Invalid Target!")
return PLUGIN_HANDLED
}
ShowMenu(target)
return PLUGIN_HANDLED
}
I think.