下面是引用 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)
}
}
是以上這些嗎