changed header and version info

This commit is contained in:
Felix Geyer
2004-02-01 18:45:44 +00:00
parent 9214a349a4
commit 51fe5a4822
22 changed files with 132 additions and 258 deletions

View File

@ -1,20 +1,18 @@
/* AMX Mod script.
/* AMX Mod X script.
*
* (c) 2002-2004, OLO
* modified by BAILOPAN,Manip,PM,SniperBeamer
*
* (c) 2003, OLO
* This file is provided as is (no warranties).
*
* Server command:
* amx_imessage <msg> <colour in RRRGGGBBB format>
*
*/
#include <amxmod>
#include <amxmisc>
#define MAX_MESSAGES 6
#define X_POS -1.0
#define Y_POS 0.30
#define HOLD_TIME 12.0
#define MAX_MESSAGES 6
#define X_POS -1.0
#define Y_POS 0.30
#define HOLD_TIME 12.0
new g_Values[MAX_MESSAGES][3]
new g_Messages[MAX_MESSAGES][384]
@ -22,7 +20,7 @@ new g_MessagesNum
new g_Current
public plugin_init(){
register_plugin("Info. Messages","0.9","default")
register_plugin("Info. Messages","0.1","default")
register_srvcmd("amx_imessage","setMessage")
register_cvar("amx_freq_imessage","10")
new lastinfo[8]
@ -73,4 +71,4 @@ public plugin_end(){
new lastinfo[8]
numtostr(g_Current,lastinfo,7)
set_localinfo("lastinfomsg",lastinfo)
}
}