- 听众
- 收听
- 积分
- 90
- 主题
- 回帖
- 0
- 精华
注册时间2008-11-24
最后登录1970-1-1
该用户从未签到
|
top100插件修改后的代码,整点生成htm文件,我想让他像top15一样,直接显示你看可以吗,
还有个问题中文名全部显示为乱码,大姐,深入研究一下谢谢!!!
#include <amxmodx>
#include <amxmisc>
#include <csx>
new g_Buffer[2048]
new g_fileToSavehtm[64]
public plugin_init()
{
register_plugin("CS Stats-html", "0.16", "Kindzhon.126.com")
new szConfig[64]
get_configsdir(szConfig, 63)
add(szConfig, 63, "/csstats")
register_cvar("amx_csstatshtm", szConfig)
set_task(60.0, "htm", _, _, _, "b")
}
public htm()
{
new mmins[6]
get_time("%M",mmins,5)
new mins = str_to_num(mmins)
get_cvar_string("amx_csstatshtm",g_fileToSavehtm,63)
format(g_fileToSavehtm, 63, "%s.htm",g_fileToSavehtm)
if (mins == 0) writehtm(g_fileToSavehtm)
return PLUGIN_CONTINUE
}
writehtm(filename[])
{
new pos
new stats[8]
new body[8]
new name[32]
new states[4]
if(file_exists(filename))
delete_file(filename)
pos = copy(g_Buffer,2047,"<html><head><body><table><tr><td bgcolor=#0000FF align=center>排行榜</td></tr></table></body>")
pos += copy(g_Buffer[pos],2047-pos,"<body><style type=^"text/css^">")
pos += copy(g_Buffer[pos],2047-pos,"body{font-family:Arial,sans-serif;font-size:12px;color:#FFCC99;background-color:#000000;margin-left:8px;margin-top:3px}.header{background-color:#9C0000;}.one{background-color:#310000;}.two{background-color:#630000;}")
pos += copy(g_Buffer[pos],2047-pos,"</style></head><body><table><tr class=^"header^"><td>名次</td><td>名字</td><td>杀敌</td><td>死亡</td><td>命中</td><td>开枪</td><td>爆头</td></tr>")
write_file(filename,g_Buffer)
new imax = get_statsnum()
for(new a = 0; a < imax; ++a)
{
copy(states, 3, "one")
if (equal(states,"one"))
copy(states,3,"two")
else
copy(states,3,"one")
get_stats(a, stats, body, name, 31)
format(g_Buffer,2047,"<tr class=^"%s^"><td>%d.</td><td>%s</td><td>%d</td><td>%d</td><td>%d</td><td>%d</td><td>%d</td></tr>",states,a+1,name,stats[0],stats[1],stats[5],stats[4],stats[2])
write_file(filename,g_Buffer)
//client_print(0,print_chat,"rank %d ", a)
}
new ctime[64]
get_time("%Y年%m月%d日- %H:%M:%S",ctime,63)
format(g_Buffer, 2047, "</table><body><table><tr><td bgcolor=#00007F align=center>本次更新时间为: %s</td></tr></table></body></body></html>", ctime)
write_file(filename,g_Buffer)
} |
|