|
楼主 |
发表于 2010-12-20 13:19:23
|
显示全部楼层
来自 中国–四川–成都
本帖最后由 homework 于 2010-12-21 12:18 编辑
显示在线OP和VIP?
zhangsheng 发表于 2010-12-20 12:43
恩,他一起集成在imessage.amxx里面的,还自定义了2条消息
我没源码,找到了OP VIP在线显示 不知道怎么加进去
他的statsx.amxx里面还加了 每局结束显示当局最佳杀手显示
如图:
诚恳的希望 如水 兄能把您汉化AMXX1.8.2里面的statsx和imessage 2个插件的
源码共享一下,谢谢了。。。
为方便大家使用,把4楼zhangsheng大大的附件源码贴出来,附件里面有2个源码文件一个是imessage.sma,主要功能自己看源码就明白了,第二个附件的源码在五楼Best_Killer.sma- /* 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>
- #include <csstats>
- #define MAX_MESSAGES 100
- #define X_POS -1.0
- #define Y_POS 0.12
- #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[i],ADMIN_IMMUNITY)){
- new username[33]
- get_user_name(playerslist[i],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[i],ADMIN_RESERVATION)&&(!access(playerslist[i],ADMIN_IMMUNITY))){
- new username[33]
- get_user_name(playerslist[i],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 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(255,144,255,X_POS,Y_POS,2,0.1,HOLD_TIME,0.1,0.1,-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(random_num(20,200), random_num(20,200), random_num(20,200),
- X_POS, Y_POS, 2, 0.1, HOLD_TIME , 0.1, 0.1, -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)
- }
复制代码 |
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有账号?注个册吧
×
|