View Single Post
ladaladik
BANNED
Join Date: Nov 2019
Old 08-09-2020 , 11:18   Re: [CSGO] Plugin that displays message to all with a players username
Reply With Quote #4

mb, forgot to add something compile this :

Code:
#pragma semicolon 1

#define DEBUG

#define PLUGIN_AUTHOR ""
#define PLUGIN_VERSION "0.00"

#include <sourcemod>
#include <sdktools>

#pragma newdecls required

public Plugin myinfo = 
{
	name = "", 
	author = PLUGIN_AUTHOR, 
	description = "", 
	version = PLUGIN_VERSION, 
	url = ""
};

public void OnPluginStart()
{
	RegConsoleCmd("sm_mg", command_mg);
}
public Action command_mg(int client, int args)
{
	PrintToChatAll("%N \x0Fis a standart player", client);
	return Plugin_Handled;
}
ladaladik is offline