AddCommandListener(OtherCommandListener3, "autobuy");//перехват F3
RegConsoleCmd("sm_ov", callbackss);//можно по команде
public Action OtherCommandListener3(int iClient, const String:command[], int args)
{
if (iClient) ClientCommand(iClient, "r_screenoverlay 0");
return Plugin_Continue;
}
public Action callbackss(int iClient)
{
ResetOverlayToClient(iClient);
}