啊俊771 发表于 2008-6-1 07:56:14

玩家菜单或管理员菜单问题!!

请问一下CS服务器默认的I键绑定了玩家菜单或管理员菜单,我想自己改变绑定的键位,或取消不绑定,在哪里设置?

Cr@zyTreE 发表于 2008-6-1 08:59:59

回复: 玩家菜单或管理员菜单问题!!

Post by 啊俊771
请问一下CS服务器默认的I键绑定了玩家菜单或管理员菜单,我想自己改变绑定的键位,或取消不绑定,在哪里设置?

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()
}

axiajiajunzhuai 发表于 2008-6-1 18:06:14

回复: 玩家菜单或管理员菜单问题!!

现在一般的管理菜单都是amxmodmenu
页: [1]
查看完整版本: 玩家菜单或管理员菜单问题!!