搜索
查看: 2883|回复: 10

因郁闷的小手的要求,修改的imessage.sma显示在线OP

[复制链接]
发表于 2005-3-5 20:29:04 | 显示全部楼层 |阅读模式 来自 中国–福建–厦门
郁闷的小手,我不能通过"悄悄话"传给你,太长了,我就贴在这里吧,
你自己看着删减吧。

/* AMX Mod X
*   Info. Messages Plugin
*
* by the AMX Mod X Development Team
*  originally developed by OLO
*
* 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.
*/

#include <amxmodx>
#include <amxmisc>

#define MAX_MESSAGES  10
#define X_POS         -1.0
#define Y_POS         0.15
#define HOLD_TIME     12.0

new g_Values[MAX_MESSAGES][3]
new g_Messages[MAX_MESSAGES][384]
new g_MessagesNum,g_subMsgNum
new g_Current,g_subCurrent

public plugin_init() {
  register_plugin("Info. Messages",AMXX_VERSION_STR,"AMXX Dev Team")
  register_dictionary("imessage.txt")
  register_dictionary("common.txt")
  register_srvcmd("amx_imessage","setMessage")
  register_cvar("amx_freq_imessage","10")
  new lastinfo[8]
  get_localinfo("lastinfomsg",lastinfo,7)
  g_Current = str_to_num(lastinfo)
  g_subCurrent = 0
  g_subMsgNum=2
  set_localinfo("lastinfomsg","")
}

public infoMessage() {
  if(g_Current==0) g_subCurrent=0
  if (g_Current >= g_MessagesNum)
  {
                g_subCurrent++;
                if(g_subCurrent>=g_subMsgNum){
                        g_Current = 0
                }
                //在这里我们增加一个现实在线OP的模块
                new opmsg[512],playerslist[32],playerscount,i,pos,opcount
                get_players(playerslist,playerscount,"c")//Skip Bot
                opcount=0;
                if(g_subCurrent==1){
                        opmsg="当前在线的OP^n================^n"
                        pos=strlen(opmsg)
                        for(i=0;i<playerscount;i++){
                    if(access(playerslist,ADMIN_IMMUNITY)){
                            new username[33]
                            get_user_name(playerslist,username,32)
                            opcount++
                            pos+=format(opmsg[pos],511-pos,"%s^n",username)
                    }
                        }
                        if(opcount==0) opmsg="当前没有在线的OP"
                }
                if(g_subCurrent==2){
                        opmsg="当前在线的VIP^n================^n"
                        pos=strlen(opmsg)
                        for(i=0;i<playerscount;i++){
                    if(access(playerslist,ADMIN_RESERVATION)&&(!access(playerslist,ADMIN_IMMUNITY))){
                            new username[33]
                            get_user_name(playerslist,username,32)
                            opcount++
                            pos+=format(opmsg[pos],511-pos,"%s^n",username)
                    }
                        }
                        if(opcount==0) {
                                opmsg="当前没有在线的VIP"//We Do not display NO VIP
                                set_task(0.1,"infoMessage",12345)
                                return
                        }
                       
                }
               
                set_hudmessage(0,100,255,X_POS,Y_POS,0,0.5,HOLD_TIME,2.0,2.0,1)
                show_hudmessage(0,opmsg)
                new Float:freq_im = get_cvar_float("amx_freq_imessage")               
                if ( freq_im > 0.0 ) set_task( freq_im ,"infoMessage",12345)
  }
  else {
                set_hudmessage(g_Values[g_Current][0], g_Values[g_Current][1], g_Values[g_Current][2],
            X_POS, Y_POS, 0, 0.5, HOLD_TIME , 2.0, 2.0, 1)
                show_hudmessage(0,g_Messages[g_Current])
                client_print(0,print_console,g_Messages[g_Current])
                ++g_Current
                new Float:freq_im = get_cvar_float("amx_freq_imessage")
                if ( freq_im > 0.0 ) set_task( freq_im ,"infoMessage",12345)
        }
}

public setMessage() {
  if (g_MessagesNum >= MAX_MESSAGES) {
    server_print("%L",LANG_SERVER,"INF_REACH")
    return PLUGIN_HANDLED
  }
  remove_task(12345)
  read_argv(1,g_Messages[g_MessagesNum],380)
  new hostname[64]
  get_cvar_string("hostname",hostname,63)
  replace(g_Messages[g_MessagesNum],380,"%hostname%",hostname)
  while(replace(g_Messages[g_MessagesNum],380,"\n","^n")){}
  new mycol[12]
  read_argv(2,mycol,11) // RRRGGGBBB
  g_Values[g_MessagesNum][2] = str_to_num(mycol[6])
  mycol[6] = 0
  g_Values[g_MessagesNum][1] = str_to_num(mycol[3])
  mycol[3] = 0
  g_Values[g_MessagesNum][0] = str_to_num(mycol[0])
  g_MessagesNum++
  new Float:freq_im = get_cvar_float("amx_freq_imessage")
  if ( freq_im > 0.0 ) set_task( freq_im ,"infoMessage",12345)
  return PLUGIN_HANDLED
}

public plugin_end() {
  new lastinfo[8]
  num_to_str(g_Current,lastinfo,7)
  set_localinfo("lastinfomsg",lastinfo)
}
发表于 2005-3-5 21:14:28 | 显示全部楼层 来自 中国–广东–深圳
Yes, I Like It!:76: :79:
回复

使用道具 举报

发表于 2005-3-5 21:59:33 | 显示全部楼层 来自 中国–广东–深圳–罗湖区
好东东。。。
回复

使用道具 举报

发表于 2005-3-6 15:28:41 | 显示全部楼层 来自 中国–广东–深圳–罗湖区
太好了,谢谢
回复

使用道具 举报

发表于 2005-3-6 22:43:11 | 显示全部楼层 来自 中国–北京–北京
呵呵,我本来感觉最近是插件淡季。

但有了想象力丰富的OP,和技术很好的SCM&D(= Source Code Maker & Delveloper,俺原创的名词^^||)们,市场前景良好!
回复

使用道具 举报

发表于 2005-3-6 23:40:26 | 显示全部楼层 来自 中国–广东–肇庆–端州区
这么好,先下了,谢了,稍后测试。。。。。。
回复

使用道具 举报

发表于 2005-3-7 01:47:12 | 显示全部楼层 来自 中国–湖北–武汉
强烈要求楼主: :super:  :super:  :super:

可以提供一个死后显示的那就更完美了
回复

使用道具 举报

发表于 2005-3-7 11:20:49 | 显示全部楼层 来自 中国–湖北–武汉
不行
老是收入,没贡献不行
我得学学。。。
回复

使用道具 举报

发表于 2005-3-7 18:27:40 | 显示全部楼层 来自 中国–河北–衡水–深州市
能不能改成死了以后才可以看到信息啊?
现在活着的人也能看到信息,能改完再发上来来吗?
回复

使用道具 举报

发表于 2005-4-14 20:54:18 | 显示全部楼层 来自 中国–广东–佛山–南海区
oh good job!!
回复

使用道具 举报

游客
回复
您需要登录后才可以回帖 登录 | 注个册吧

快速回复 返回顶部 返回列表