View Single Post
iskenderkebab33
Senior Member
Join Date: Jun 2018
Old 11-27-2018 , 09:26   Re: [REQ] Commands for steam group.
Reply With Quote #3

PHP Code:
#include <sourcemod>

#pragma semicolon 1
#pragma newdecls required

public void OnPluginStart()
{
    
RegConsoleCmd("sm_group"SteamGroup"Print Steam Group in Chat");
}

public 
Action SteamGroup(int clientint args)
{
    if (
IsClientInGame(client))
    {
        
PrintToChat(client"Steam Group: steamcommunity.com/.....");
    }


Last edited by iskenderkebab33; 11-27-2018 at 09:26.
iskenderkebab33 is offline