下面是引用 HiNess 于 2011-11-29 22:49 发表的 :
帮你弄好了, 你试一下吧
大大谢谢你帮我用
可是我要用的是一直出现的不是回合才会出现在中央跟左下角
大大你是不是加入这些
复制程式
new g_HudMsg
const Float:HUD_X = 0.015
const Float:HUD_Y = 0.92
复制程式
public plugin_init()
{
register_event("HLTV", "event_round_start", "a", "1=0", "2=0")
register_event("DeathMsg", "Death", "a")
set_task(1.0, "show_hudmsg", _, _, _, "b")
g_HudMsg = CreateHudSyncObj()
}
复制程式
public Death()
{
static attacker; attacker = read_data(1)
复制程式
public show_hud_client()
{
for (new id = 1; id <= get_maxplayers(); id++)
{
if (!is_user_alive(id)) continue;
if (is_user_bot(id)) continue;
new message[101]
format(message, 100, "你目前的点数为%d和杀人数为%d", point[id], kill[id])
set_hudmessage(0, 125, 0, HUD_X, HUD_Y, 0, 6.0, 2.0, 0.0, 0.0, -1)
ShowSyncHudMsg(id, g_HudMsg, "%s", message)
}
}
是以上这些吗