搜索
查看: 4696|回复: 8

yzmzx请进帮忙改个插件

[复制链接]
发表于 2008-9-4 17:55:41 | 显示全部楼层 |阅读模式 来自 天津武清区
在这个源码里加入显示前五名 插件源码是ZHANGSHENG的
以下是代码  谢谢了

/* 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.
*/
//zhangsheng
//PooHoo@LYJ
#include <amxmodx>
#include <amxmisc>
#include <fakemeta>

#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=3
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_KICK)&&(!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
  }
  if(g_subCurrent==3){
   new sDateNow[32]
   new sTimeNow[32]
   get_time("%Y-%m-%d",sDateNow,31)
   get_time("%H:%M",sTimeNow,31)
   new nextmap[32]
   new cumap[32]
   new timel = get_timeleft()
   get_cvar_string("amx_nextmap",nextmap,31)
   get_mapname(cumap,31)
   new maxplayers = get_maxplayers()
   new players = get_playersnum(1)
   new Float:UpTime_F = engfunc(EngFunc_Time)   
   new UpTime_str[32]
   float_to_str(UpTime_F, UpTime_str, 31)
   new UpTime = str_to_num(UpTime_str)
   new Seconds = UpTime % 60
   new Minutes = (UpTime / 60) % 60
   new Hours = (UpTime / 3600) % 24
      
      new Float:frametime // fps = 1 / frametime
      global_get(glb_frametime, frametime)
      new fps = floatround(1/frametime)
   pos=strlen(opmsg)
   pos+=format(opmsg[pos],511-pos,"现在时间: [%s] %s^n当前地图: %s 下一地图: %s^n地图剩余时间: %d:%02d 在线人数: (%d/%d)^n服务器运行状态:%dfps 已经运行: %i:%i:%i",sDateNow,sTimeNow,cumap,nextmap,timel / 60, timel % 60,players,maxplayers,fps,Hours,Minutes,Seconds)
  }
  
  
  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)
}
发表于 2008-9-6 13:14:23 | 显示全部楼层 来自 广东东莞

回复: yzmzx请进帮忙改个插件

他的乱七八糟的东西我不用................你可以去突飞找那牲口....我跟他有仇.
回复

使用道具 举报

 楼主| 发表于 2008-9-6 13:54:45 | 显示全部楼层 来自 天津武清区

回复: yzmzx请进帮忙改个插件

哎呀 不要那么大火气 ZHANGSHENG的插件很不错的

大家还是和谐一点好 交流互补  语言过激滴不好呀
回复

使用道具 举报

发表于 2008-9-6 14:10:43 | 显示全部楼层 来自 云南西双版纳州景洪

回复: yzmzx请进帮忙改个插件

[PHP]/* 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.
*/
//zhangsheng
//PooHoo@LYJ
#include <amxmodx>
#include <amxmisc>
#include <csstats>
#include <fakemeta>

#define MAX_MESSAGES 100
#define X_POS -1.0
#define Y_POS 0.12
#define HOLD_TIME 15.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=4
        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_KICK)&&(!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
                }
                if(g_subCurrent==3){
                        new sDateNow[32]
                        new sTimeNow[32]
                        get_time("%Y-%m-%d",sDateNow,31)
                        get_time("%H:%M",sTimeNow,31)
                        new nextmap[32]
                        new cumap[32]
                        new timel = get_timeleft()
                        get_cvar_string("amx_nextmap",nextmap,31)
                        get_mapname(cumap,31)
                        new maxplayers = get_maxplayers()
                        new players = get_playersnum(1)
                        // fps = 1 / frametime
                        new Float:frametime
                        global_get(glb_frametime, frametime)
                        new fps = floatround(1/frametime)
                        new Float:UpTime_F = Float:engfunc(EngFunc_Time)
                        new UpTime_str[32]
                        float_to_str(UpTime_F, UpTime_str, 31)
                        new UpTime = str_to_num(UpTime_str)
                        new Seconds = UpTime % 60
                        new Minutes = (UpTime / 60) % 60
                        new Hours = (UpTime / 3600) % 24
                        pos=strlen(opmsg)
                        pos+=format(opmsg[pos],511-pos,"现在时间: [%s] %s^n当前地图: %s 下一地图: %s^n地图剩余时间: %d:%02d 在线人数: (%d/%d)^n服务器运行状态: %d/fps 已经运行: %i:%i:%i",sDateNow,sTimeNow,cumap,nextmap,timel / 60, timel % 60,players,maxplayers,fps,Hours,Minutes,Seconds)
                }
                if(g_subCurrent==4){
                        new name[32],stats[8],bodyhits[8]
                        opmsg="【排行榜前5名】^n—————————————"
                        pos=strlen(opmsg)
                        new imax = get_statsnum()
                        if (imax > 5) imax = 5
                        for(new a = 0; a < imax; ++a){
                                get_stats(a, stats, bodyhits, name, 31)
                                pos+=format(opmsg[pos],511-pos,"^n%d. %s",a+1,name)
                        }
                }
               
               
                set_hudmessage(random_num(20,200), random_num(20,200), random_num(20,200),X_POS,Y_POS,2,0.080,HOLD_TIME,0.080,0.080,-1)
                show_hudmessage(0,opmsg)
                client_print(0,print_console,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(random_num(20,200), random_num(20,200), random_num(20,200),
                X_POS, Y_POS, 2, 0.080, HOLD_TIME , 0.080, 0.080, -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)
}[/PHP]



帮你改好了.解决原来编译时候提示警告错误.
yzmzx我怀疑你小时候家教没学好.每次张口闭口都是说些不干不净的话.
是啊你很厉害我很菜.那么你还用我分离的掉钱插件代码干什么?你不是说我弄的东西不好吗
象你这种没家教的人.满嘴都是脏话.我看没几个人会想帮助你.
回复

使用道具 举报

 楼主| 发表于 2008-9-6 14:31:38 | 显示全部楼层 来自 天津

回复: yzmzx请进帮忙改个插件

谢谢ZHANGSHENG  非常感谢一直用着你的插件 由于自己能力有限对于源码不太懂 本来是要请教你的 看到你又很忙有时又不在  就没好意思打搅
都是我的错二位息怒 和谐和谐
回复

使用道具 举报

发表于 2008-9-7 01:41:15 | 显示全部楼层 来自 广西百色

回复: yzmzx请进帮忙改个插件

Post by 野玫瑰
谢谢ZHANGSHENG 非常感谢一直用着你的插件 由于自己能力有限对于源码不太懂 本来是要请教你的 看到你又很忙有时又不在 就没好意思打搅
都是我的错二位息怒 和谐和谐
要是个MM就好了:embarrass :embarrass
回复

使用道具 举报

发表于 2010-11-13 11:57:06 | 显示全部楼层 来自 四川成都
原来是张战争贴!!!!!
回复

使用道具 举报

发表于 2010-11-13 23:12:21 | 显示全部楼层 来自 广东深圳
和谐社会,何况是在点通论坛!
回复

使用道具 举报

发表于 2012-10-21 15:50:02 | 显示全部楼层 来自 河北衡水
怎么编辑不出插件,提示报错
回复

使用道具 举报

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

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