View Single Post
tair
Junior Member
Join Date: Apr 2015
Location: OnGameFrame()
Old 06-05-2020 , 11:10   Re: [CS:GO] VIP Connect Message
Reply With Quote #2

Here you go:

PHP Code:
#include <sourcemod>

#pragma semicolon 1
#pragma newdecls required

public Plugin myinfo = {
    
name        "Vip Connect",
    
author      "Tair",
    
description "for lemmon_cs",
    
version     "1.0",
    
url         ""
};


public 
void OnClientPutInServer(int client
{
    if (
CheckCommandAccess(client""ADMFLAG_CUSTOM1))
    {
        
PrintToChatAll(" \x07VIP PLAYER \x04%N \x06has joined the server." client);
    }


Last edited by tair; 06-05-2020 at 11:11.
tair is offline