|
发表于 2010-7-12 00:54:52
|
显示全部楼层
来自 中国–浙江–嘉兴–海宁市
#include <amxmodx>
#include <amxmisc>
new g_szVIPMap
public plugin_init()
{
register_plugin("Admin", "1.0", "PHP++")
register_event("ResetHUD", "ResetHUD", "be")
new szMapName[32]
get_mapname(szMapName, 31)
if (containi(szMapName, "as_") > -1)
g_szVIPMap = 1
}
public ResetHUD(id)
{
set_task(0.5, "VIP", id + 6910)
}
public VIP(TaskID)
{
if (g_szVIPMap)
return PLUGIN_HANDLED
new id = TaskID - 6910
if (is_user_alive(id))
{
message_begin(MSG_ALL, get_user_msgid("ScoreAttrib"))
write_byte(id)
write_byte(4)
message_end()
}
return PLUGIN_HANDLED
} |
|