|
楼主 |
发表于 2009-6-6 22:20:31
|
显示全部楼层
来自 中国–福建–泉州
谢谢你把官网的发出来 那麻烦你再对比一下我的吧。#include <amxmodx>
#include <amxmisc>
new name[64]
public plugin_init()
{
register_plugin("", "", "")
register_clcmd("say /admin","showadmin")
}
public showadmin(id)
{
new temp[300]
new header[100]
new len = 0
len += format(temp,18,"Admin Name^n",id,"")
format(header,27,"Current-On Admin List",id,"")
for(new i = 0; i <= get_maxplayers();i++)
{
if(get_user_flags(i) & ADMIN_KICK)
{
get_user_name(i,name,15)
len += format(temp,18,"^n%d. %s","",name)
}
}
show_motd(id,temp,header)
return PLUGIN_CONTINUE
} |
|