#include <sourcemod>
#pragma semicolon 1



public Plugin:myinfo = 
{
	name = "Motd override",
	author = "Impact",
	description = "Motd override",
	version = "0.1",
	url = "http://gugyclan.eu"
}



public OnPluginStart()
{
	RegConsoleCmd("sm_regels", Command_Regeln);
}



public Action:Command_Regeln(client, args)
{
	if (client == 0)
	{
		ReplyToCommand(client, "[SM] Command is in-game only");
		return Plugin_Handled;
	}
	
	ShowMOTDPanel(client, "Message Of The Day", "motd", MOTDPANEL_TYPE_INDEX);
	
	return Plugin_Handled;
}
