搜索
查看: 1778|回复: 4

求教关于AE86发布的OP在线源码的一点小问题

[复制链接]
发表于 2007-7-16 17:31:25 | 显示全部楼层 |阅读模式 来自 中国–广西–钦州
#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)
}  



上面是AE86发布的在线OP源码,可是我编绎成AMXX后,在服务器里只能显示英文部分的字,比如应该是弹出:当前在线OP  XXX 的,现在在屏幕只显示乱码+OP两个字母。如何才能让他显示中文呢?我用的是AMXX1.60
 楼主| 发表于 2007-7-16 17:34:18 | 显示全部楼层 来自 中国–广西–钦州

回复: 求教关于AE86发布的OP在线源码的一点小问题

我只在plugins里加了这个admin_in_op_vip.amxx并且开启了。还有在AMXX.cfg里加了弹出的时间。这样做对吗?
回复

使用道具 举报

发表于 2007-7-18 09:58:45 | 显示全部楼层 来自 中国–广东–深圳–南山区

回复: 求教关于AE86发布的OP在线源码的一点小问题

:sweat:
要用UTF-8格式保存..
不知道你哪翻来的源码:sweat:
:sweat:
:sweat:
:sweat:
回复

使用道具 举报

 楼主| 发表于 2007-7-20 16:32:21 | 显示全部楼层 来自 中国–广西–钦州

回复: 求教关于AE86发布的OP在线源码的一点小问题

我是保存为UTF-8格式啊,另存为,然后选所有文件,格式下再选UTF-8,保存后不能编绎,用amxx studio也没看到什么乱码啊……你可以留下你的Q号吗?
回复

使用道具 举报

发表于 2007-7-21 05:18:20 | 显示全部楼层 来自 中国–广东–深圳–南山区

回复: 求教关于AE86发布的OP在线源码的一点小问题

点激我的签名档不就知道了:cool:
回复

使用道具 举报

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

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