[CS:S] SteamID Checker Plugin

[CS:S] SteamID Checker Plugin [v1.4]

No permission to download
PHP CODE :

/*
* SteamID Checker Plugin by : kycocss
* SourceMod (c) 2015.
* No Copyright Disclaimed. All rights reserved.
*/

#include <sourcemod>

#pragma semicolon 1
#pragma newdecls required

public Plugin myinfo =
{
name = "SteamID Checker",
author = "kycocss",
description = "check steamid by typing in chat",
version = "2.5.0",
url = "http://forums.alliedmods.net/",
};

public void OnPluginStart()
{
RegConsoleCmd("sm_steamid", CommandSteamid, "");
}

public Action CommandSteamid(int client, int args)
{
char authid[32];
GetClientAuthId(client, AuthId_Steam2, authid, sizeof(authid));

PrintToChat(client, "\x04[SM] \x01Here is your \x04%s \x01SteamID.", authid);
return Plugin_Handled;
}
Author
CrazyRad
Downloads
9
Views
326
First release
Last update
Rating
0.00 star(s) 0 ratings

More resources from CrazyRad

Share this resource

Top
AdBlock Detected

We get it, advertisements are annoying!

Sure, ad-blocking software does a great job at blocking ads, but it also blocks useful features of our website. For the best site experience please disable your AdBlocker.

I've Disabled AdBlock