|
发表于 2007-8-9 22:23:52
|
显示全部楼层
|阅读模式
来自 中国–广西–柳州–柳北区
#include <amxmodx>
#include <engine>
new g_msgBarTime, bool:showtime[33] = false
public plugin_init()
{
register_plugin("time", "1.0", "yyy")
register_cvar("amx_timeleft1_bar", "1")
g_msgBarTime = get_user_msgid("BarTime")
}
public client_PreThink(id)
{
if(!is_user_connected(id))
return PLUGIN_CONTINUE
if(!get_cvar_float("mp_timelimit"))
return PLUGIN_CONTINUE
new timeleft = (get_timeleft() + 1)
new nextmap[32]
get_cvar_string("amx_nextmap",nextmap,31)
if(timeleft <= get_cvar_num("amx_timeleft1_bar"))
{
engclient_print(id, print_center, "------------^nhttp://fps.gamesun.cn^n------------")
}
return PLUGIN_CONTINUE
} 编译可以通过,但是总是没效果,郁闷,希望大虾们帮忙查查,谢谢。 |
|