public Shop_Started()
{
Shop_AddToFunctionsMenu(FunctionDisplay, FunctionSelect);
}
public FunctionDisplay(client, String:buffer[], maxlength)
{
char title[64];
FormatEx(title, sizeof(title), "Название функции");
strcopy(buffer, maxlength, title);
}
public bool FunctionSelect(client)
{
//Действия после выбора
return true;
}