forgot this was not on git
This commit is contained in:
parent
59a57aa3f9
commit
eaa8f5c5d4
31
alert_msgs/scripting/alert_msgs.sp
Normal file
31
alert_msgs/scripting/alert_msgs.sp
Normal file
@ -0,0 +1,31 @@
|
||||
#include <sourcemod>
|
||||
#include <multicolors>
|
||||
#pragma semicolon 1
|
||||
#define PLUGIN_AUTHOR "jenz"
|
||||
#define PLUGIN_VERSION "1.0"
|
||||
|
||||
|
||||
public Plugin myinfo =
|
||||
{
|
||||
name = "alert_msg",
|
||||
author = PLUGIN_AUTHOR,
|
||||
description = "alert_msg",
|
||||
version = PLUGIN_VERSION,
|
||||
url = "www.unloze.com"
|
||||
};
|
||||
|
||||
//----------------------------------------------------------------------------------------------------
|
||||
// Purpose:
|
||||
//----------------------------------------------------------------------------------------------------
|
||||
public void OnPluginStart()
|
||||
{
|
||||
CreateTimer(60.00, Timer_msg_laert, _, TIMER_REPEAT);
|
||||
}
|
||||
|
||||
public Action Timer_msg_laert(Handle hTimer)
|
||||
{
|
||||
CPrintToChatAll("{Yellow}Remember {Green}To {Blue}Nominate {Red}maps{Orange}!{Pink}!{Purple}!");
|
||||
CPrintToChatAll("{Purple}Remember {Teal}To {Orange}Nominate {Lime}maps{Grey}!{Pink}!{LightBlue}!");
|
||||
CPrintToChatAll("{Orchid}Remember {Lime}To {Yellow}Nominate {Pink}maps{Orange}!{Purple}!{LightBlue}!");
|
||||
return Plugin_Handled;
|
||||
}
|
Loading…
Reference in New Issue
Block a user