#include <sourcemod>
public Plugin:myinfo =
{
name = "Steamid",
author = "Beelzebub",
description = "This plugin lets players see there steamid",
}
public OnPluginStart()
{
RegConsoleCmd("sm_steamid", Command_steamid, "This lets players see there steamid");
}
public...