下面是引用 s6523743 於 2009-07-30 18:48 發表的 :
能夠再說詳細一點嗎>"<?
1.當玩家 按任何button時 就會觸發 fakemeta的 FM_CmdStart forward
你可以透過這個foward 去偵測玩家的bottun
2.利用StatusValue事件
http://wiki.amxmodx.org/Half-Lif...s#StatusValuepublic event_status_value(id)
{
// if it's sending a Player ID the first argument will be 2, skip otherwise
if (read_data(1) != 2)
return;
// get the target
new target = read_data(2)
// get the target's name
new name[32]
get_user_name(target, name, 31)
// show target's name
show_hudmessage(id, "ID: %s ", name)
}
至於hudmessage 要show在什麼地方 透過 set_hudmessage 來設定