- 听众
- 收听
- 积分
- 90
- 主题
- 回帖
- 0
- 精华
注册时间2008-11-24
最后登录1970-1-1
该用户从未签到
|
楼主 |
发表于 2008-12-12 13:56:36
|
显示全部楼层
new const g_file[] = "addons\amxmodx\configs\csstats.htm"
改成
new const g_file[] = “addons/amxx/custom/csstats.htm"
这是改你的那段代码,
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "show stats"
#define VERSION "1.0"
#define AUTHOR "nooby"
new const g_file[] = "addons\amxmodx\configs\csstats.htm"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("say /showstats", "show_stats")
}
public show_stats(id)
{
if (file_exists(g_file))
{
show_motd(id, g_file, "stats")
}
else
{
show_motd(id, "file not found", "Error")
}
}
那么你写的那段代码我该怎么用呢
[ 本帖最后由 小健健 于 2008-12-12 14:00 编辑 ] |
|