PHP Code:
#pragma semicolon 1
#include <sourcemod>
public OnPluginStart()
{
RegConsoleCmd("r_screenoverlay", Overlay);
SetCommandFlags("r_screenoverlay", GetCommandFlags("r_screenoverlay")^FCVAR_CHEAT);
}
public Action:Overlay(client, args)
{
PrintToChatAll("r_screenoverlay command run!");
return Plugin_Continue;
}
Tried this, didn't work though
How did you guys fix the cstrike extension problem?