|
发表于 2008-6-1 08:59:59
|
显示全部楼层
来自 中国–广东–深圳
回复: 玩家菜单或管理员菜单问题!!
Post by 啊俊771
请问一下CS服务器默认的I键绑定了玩家菜单或管理员菜单,我想自己改变绑定的键位,或取消不绑定,在哪里设置? [php]
public client_putinserver(id){
set_task(5.4, "bind_key", id)
return PLUGIN_CONTINUE
}
public bind_key(id){
client_cmd(id, "bind p amx_menu")
client_color(id, id, "^x04【提示】^x01按^x04 P^x01 键打开^x04玩家菜单!")
}
public client_color(playerid,colorid,msg[]){
message_begin( playerid?MSG_ONE:MSG_ALL, get_user_msgid("SayText"), {0,0,0}, playerid)
write_byte(colorid)
write_string(msg)
message_end()
}
[/php] |
|