#include <sourcemod>
#include <cstrike>
public Action:CS_OnBuyCommand(client, const String:weapon[])
{
if (client > 0)
{
if (strcmp(weapon, "sg550", false) == 0 || strcmp(weapon, "g3sg1", false) == 0 || strcmp(weapon, "awp", false) == 0)
{
PrintToChat(client, "\x04Stop Noob\x03 Это оружие запрещено!!!");
return Plugin_Handled;
}
}
return Plugin_Continue;
}