下面是引用 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 来设定