2004-02-21 19:36:35 +00:00
|
|
|
/* AMX Mod X
|
|
|
|
* Admin Chat Plugin
|
2004-02-01 18:45:44 +00:00
|
|
|
*
|
2004-02-21 19:36:35 +00:00
|
|
|
* by the AMX Mod X Development Team
|
|
|
|
* originally developed by OLO
|
2004-01-31 20:56:22 +00:00
|
|
|
*
|
2004-02-21 19:36:35 +00:00
|
|
|
* This file is part of AMX Mod X.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation; either version 2 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
* In addition, as a special exception, the author gives permission to
|
|
|
|
* link the code of this program with the Half-Life Game Engine ("HL
|
|
|
|
* Engine") and Modified Game Libraries ("MODs") developed by Valve,
|
|
|
|
* L.L.C ("Valve"). You must obey the GNU General Public License in all
|
|
|
|
* respects for all of the code used other than the HL Engine and MODs
|
|
|
|
* from Valve. If you modify this file, you may extend this exception
|
|
|
|
* to your version of the file, but you are not obligated to do so. If
|
|
|
|
* you do not wish to do so, delete this exception statement from your
|
|
|
|
* version.
|
2004-01-31 20:56:22 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <amxmod>
|
|
|
|
#include <amxmisc>
|
|
|
|
|
|
|
|
// Uncomment if you want to display
|
|
|
|
// names with hud messages
|
|
|
|
//#define SHOW_NAMES
|
|
|
|
|
|
|
|
new g_msgChannel
|
|
|
|
|
|
|
|
#define MAX_CLR 7
|
|
|
|
new g_Colors[MAX_CLR][] = {"white","red","green","blue","yellow","magenta","cyan"}
|
|
|
|
new g_Values[MAX_CLR][] = {{255,255,255},{255,0,0},{0,255,0},{0,0,255},{255,255,0},{255,0,255},{0,255,255}}
|
|
|
|
new Float:g_Pos[4][] = {{0.0,0.0},{0.05,0.55},{-1.0,0.2},{-1.0,0.7}}
|
|
|
|
|
|
|
|
public plugin_init(){
|
2004-02-21 20:58:35 +00:00
|
|
|
register_plugin("Admin Chat","0.1","AMXX Dev Team")
|
2004-01-31 20:56:22 +00:00
|
|
|
register_clcmd("say","cmdSayChat",ADMIN_CHAT,"@[@|@|@][w|r|g|b|y|m|c]<text> - displays hud message")
|
2004-02-11 14:24:29 +00:00
|
|
|
register_clcmd("say_team","cmdSayAdmin",0,"@<text> - displays message to admins")
|
2004-01-31 20:56:22 +00:00
|
|
|
register_concmd("amx_say","cmdSay",ADMIN_CHAT,"<message> - sends message to all players")
|
|
|
|
register_concmd("amx_chat","cmdChat",ADMIN_CHAT,"<message> - sends message to admins")
|
|
|
|
register_concmd("amx_psay","cmdPsay",ADMIN_CHAT,"<name or #userid> <message> - sends private message")
|
|
|
|
register_concmd("amx_tsay","cmdTsay",ADMIN_CHAT,"<color> <message> - sends left side hud message to all players")
|
|
|
|
register_concmd("amx_csay","cmdTsay",ADMIN_CHAT,"<color> <message> - sends center hud message to all players")
|
|
|
|
}
|
|
|
|
|
|
|
|
public cmdSayChat(id) {
|
|
|
|
if (!(get_user_flags(id)&ADMIN_CHAT)) return PLUGIN_CONTINUE
|
|
|
|
new said[6], i=0
|
2004-02-11 14:24:29 +00:00
|
|
|
read_argv(1,said,5)
|
|
|
|
while (said[i]=='@')
|
2004-01-31 20:56:22 +00:00
|
|
|
i++
|
|
|
|
if ( !i || i > 3 ) return PLUGIN_CONTINUE
|
|
|
|
new message[192], a = 0
|
2004-02-11 14:24:29 +00:00
|
|
|
read_args(message,191)
|
2004-02-16 20:58:29 +00:00
|
|
|
remove_quotes(message)
|
2004-01-31 20:56:22 +00:00
|
|
|
switch(said[i]){
|
|
|
|
case 'r': a = 1
|
|
|
|
case 'g': a = 2
|
|
|
|
case 'b': a = 3
|
|
|
|
case 'y': a = 4
|
|
|
|
case 'm': a = 5
|
|
|
|
case 'c': a = 6
|
|
|
|
}
|
|
|
|
new name[32], authid[32], userid
|
|
|
|
get_user_authid(id,authid,31)
|
|
|
|
get_user_name(id,name,31)
|
|
|
|
userid = get_user_userid(id)
|
2004-03-04 20:16:45 +00:00
|
|
|
log_amx("Chat: ^"%s<%d><%s><>^" tsay ^"%s^"",name,userid,authid,message[i+1])
|
2004-01-31 20:56:22 +00:00
|
|
|
log_message("^"%s<%d><%s><>^" triggered ^"amx_tsay^" (text ^"%s^") (color ^"%s^")",
|
|
|
|
name,userid,authid,message[ i+1 ],g_Colors[a])
|
|
|
|
if (++g_msgChannel>6||g_msgChannel<3)
|
|
|
|
g_msgChannel = 3
|
|
|
|
new Float:verpos = g_Pos[i][1] + float(g_msgChannel) / 35.0
|
|
|
|
set_hudmessage(g_Values[a][0], g_Values[a][1], g_Values[a][2],
|
|
|
|
g_Pos[i][0], verpos , 0, 6.0, 6.0, 0.5, 0.15, g_msgChannel )
|
2004-02-01 18:45:44 +00:00
|
|
|
|
2004-01-31 20:56:22 +00:00
|
|
|
#if defined SHOW_NAMES
|
|
|
|
show_hudmessage(0,"%s : %s",name,message[i+1])
|
|
|
|
client_print(0,print_notify,"%s : %s",name,message[i+1])
|
|
|
|
#else
|
|
|
|
show_hudmessage(0,message[i+1])
|
|
|
|
client_print(0,print_notify,message[i+1])
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return PLUGIN_HANDLED
|
|
|
|
}
|
|
|
|
|
|
|
|
public cmdSayAdmin(id) {
|
2004-02-16 20:58:29 +00:00
|
|
|
new said[2]
|
|
|
|
read_argv(1,said,1)
|
|
|
|
if (said[0]!='@') return PLUGIN_CONTINUE
|
2004-01-31 20:56:22 +00:00
|
|
|
new message[192], name[32],authid[32], userid
|
2004-02-16 20:58:29 +00:00
|
|
|
new players[32], inum
|
2004-02-11 14:24:29 +00:00
|
|
|
read_args(message,191)
|
2004-02-16 20:58:29 +00:00
|
|
|
remove_quotes(message)
|
2004-01-31 20:56:22 +00:00
|
|
|
get_user_authid(id,authid,31)
|
|
|
|
get_user_name(id,name,31)
|
|
|
|
userid = get_user_userid(id)
|
2004-03-04 20:16:45 +00:00
|
|
|
log_amx("Chat: ^"%s<%d><%s><>^" chat ^"%s^"",name,userid,authid,message[1])
|
2004-01-31 20:56:22 +00:00
|
|
|
log_message("^"%s<%d><%s><>^" triggered ^"amx_chat^" (text ^"%s^")",name,userid,authid,message[1])
|
|
|
|
format(message,191,"(ADMINS) %s : %s",name,message[1])
|
|
|
|
get_players(players,inum)
|
|
|
|
for(new i=0; i<inum; ++i){
|
|
|
|
if (players[i] != id && get_user_flags(players[i]) & ADMIN_CHAT)
|
|
|
|
client_print(players[i],print_chat,message)
|
|
|
|
}
|
|
|
|
client_print(id,print_chat,message)
|
|
|
|
return PLUGIN_HANDLED
|
|
|
|
}
|
|
|
|
|
|
|
|
public cmdChat(id,level,cid){
|
|
|
|
if (!cmd_access(id,level,cid,2))
|
|
|
|
return PLUGIN_HANDLED
|
|
|
|
new message[192], name[32], players[32], inum, authid[32], userid
|
|
|
|
read_args(message,191)
|
|
|
|
remove_quotes(message)
|
|
|
|
get_user_authid(id,authid,31)
|
|
|
|
get_user_name(id,name,31)
|
|
|
|
userid = get_user_userid(id)
|
|
|
|
get_players(players,inum)
|
2004-03-04 20:16:45 +00:00
|
|
|
log_amx("Chat: ^"%s<%d><%s><>^" chat ^"%s^"",name,userid,authid,message)
|
2004-01-31 20:56:22 +00:00
|
|
|
log_message("^"%s<%d><%s><>^" triggered ^"amx_chat^" (text ^"%s^")",name,userid,authid,message)
|
|
|
|
format(message,191,"(ADMINS) %s : %s",name,message)
|
|
|
|
console_print(id,message)
|
|
|
|
for(new i = 0; i < inum; ++i){
|
|
|
|
if ( get_user_flags(players[i]) & ADMIN_CHAT )
|
|
|
|
client_print(players[i],print_chat,message)
|
|
|
|
}
|
|
|
|
return PLUGIN_HANDLED
|
|
|
|
}
|
|
|
|
|
|
|
|
public cmdSay(id,level,cid){
|
|
|
|
if (!cmd_access(id,level,cid,2))
|
|
|
|
return PLUGIN_HANDLED
|
|
|
|
new message[192], name[32],authid[32], userid
|
|
|
|
read_args(message,191)
|
|
|
|
remove_quotes(message)
|
|
|
|
get_user_authid(id,authid,31)
|
|
|
|
get_user_name(id,name,31)
|
|
|
|
userid = get_user_userid(id)
|
|
|
|
client_print(0,print_chat,"(ALL) %s : %s",name,message)
|
|
|
|
console_print(id,"(ALL) %s : %s",name,message)
|
2004-03-04 20:16:45 +00:00
|
|
|
log_amx("Chat: ^"%s<%d><%s><>^" say ^"%s^"", name,userid,authid,message)
|
2004-01-31 20:56:22 +00:00
|
|
|
log_message("^"%s<%d><%s><>^" triggered ^"amx_say^" (text ^"%s^")",name,userid,authid,message)
|
|
|
|
return PLUGIN_HANDLED
|
|
|
|
}
|
|
|
|
|
|
|
|
public cmdPsay(id,level,cid){
|
|
|
|
if (!cmd_access(id,level,cid,3))
|
|
|
|
return PLUGIN_HANDLED
|
|
|
|
new name[32]
|
|
|
|
read_argv(1,name,31)
|
|
|
|
new priv = cmd_target(id,name,0)
|
|
|
|
if (!priv) return PLUGIN_HANDLED
|
|
|
|
new length = strlen(name)+1
|
|
|
|
new message[192], name2[32],authid[32],authid2[32], userid, userid2
|
|
|
|
get_user_authid(id,authid,31)
|
|
|
|
get_user_name(id,name2,31)
|
|
|
|
userid = get_user_userid(id)
|
|
|
|
read_args(message,191)
|
2004-02-11 19:32:01 +00:00
|
|
|
if (message[0]=='"' && message[length]=='"'){ // HLSW fix
|
|
|
|
message[0]=' '
|
|
|
|
message[length]=' '
|
2004-01-31 20:56:22 +00:00
|
|
|
length+=2
|
|
|
|
}
|
|
|
|
remove_quotes(message[length])
|
|
|
|
get_user_name(priv,name,31)
|
|
|
|
if (id&&id!=priv) client_print(id,print_chat,"(%s) %s : %s",name,name2,message[length])
|
|
|
|
client_print(priv,print_chat,"(%s) %s : %s",name,name2,message[length])
|
|
|
|
console_print(id,"(%s) %s : %s",name,name2,message[length])
|
|
|
|
get_user_authid(priv,authid2,31)
|
|
|
|
userid2 = get_user_userid(priv)
|
2004-03-04 20:16:45 +00:00
|
|
|
log_amx("Chat: ^"%s<%d><%s><>^" psay ^"%s<%d><%s><>^" ^"%s^"",
|
2004-01-31 20:56:22 +00:00
|
|
|
name2,userid,authid,name,userid2,authid2,message[length])
|
|
|
|
log_message("^"%s<%d><%s><>^" triggered ^"amx_psay^" against ^"%s<%d><%s><>^" (text ^"%s^")",
|
|
|
|
name2,userid,authid,name,userid2,authid2,message[length])
|
|
|
|
return PLUGIN_HANDLED
|
|
|
|
}
|
|
|
|
|
|
|
|
public cmdTsay(id,level,cid){
|
|
|
|
if (!cmd_access(id,level,cid,3))
|
|
|
|
return PLUGIN_HANDLED
|
|
|
|
new cmd[16],color[12], message[192], name[32], authid[32], userid = 0
|
|
|
|
read_argv(0,cmd,15)
|
|
|
|
new bool:tsay = (tolower(cmd[4]) == 't')
|
|
|
|
read_args(message,191)
|
|
|
|
remove_quotes(message)
|
|
|
|
parse(message,color,11)
|
|
|
|
new found = 0,a = 0
|
|
|
|
for(new i=0;i<MAX_CLR;++i)
|
|
|
|
if (equal(color,g_Colors[i])) {
|
|
|
|
a = i
|
|
|
|
found = 1
|
|
|
|
break
|
|
|
|
}
|
|
|
|
new length = found ? (strlen(color) + 1) : 0
|
|
|
|
if (++g_msgChannel>6||g_msgChannel<3)
|
|
|
|
g_msgChannel = 3
|
|
|
|
new Float:verpos = ( tsay ? 0.55 : 0.1 ) + float(g_msgChannel) / 35.0
|
|
|
|
get_user_authid(id,authid,31)
|
|
|
|
get_user_name(id,name,31)
|
|
|
|
userid = get_user_userid(id)
|
|
|
|
set_hudmessage(g_Values[a][0], g_Values[a][1], g_Values[a][2], tsay ? 0.05 : -1.0, verpos, 0, 6.0, 6.0, 0.5, 0.15, g_msgChannel)
|
2004-02-01 18:45:44 +00:00
|
|
|
|
2004-01-31 20:56:22 +00:00
|
|
|
#if defined SHOW_NAMES
|
|
|
|
show_hudmessage(0,"%s : %s",name,message[length])
|
|
|
|
client_print(0,print_notify,"%s : %s",name,message[length])
|
|
|
|
console_print(id,"%s : %s",name,message[length])
|
|
|
|
#else
|
|
|
|
show_hudmessage(0,message[length])
|
|
|
|
client_print(0,print_notify,message[length])
|
|
|
|
console_print(id,message[length])
|
|
|
|
#endif
|
2004-02-01 18:45:44 +00:00
|
|
|
|
2004-03-04 20:16:45 +00:00
|
|
|
log_amx("Chat: ^"%s<%d><%s><>^" %s ^"%s^"",name,userid,authid,cmd[4],message[length])
|
2004-01-31 20:56:22 +00:00
|
|
|
log_message("^"%s<%d><%s><>^" triggered ^"%s^" (text ^"%s^") (color ^"%s^")",
|
|
|
|
name,userid,authid,cmd,message[length],g_Colors[a])
|
|
|
|
return PLUGIN_HANDLED
|
|
|
|
}
|