下面是引用 op47 於 2013-07-06 23:25 發表的 : client_cmd(id, "bind v chooseteam")
下面是引用 pohong 於 2013-07-07 11:24 發表的 : 那怎麼搞--,這點我也不明白
下面是引用 s8720419 於 2013-07-07 11:54 發表的 : 那是插件的內容物..話說 你開伺服器 有用AMX 開嗎?
下面是引用 Rubbish-Nec 於 2013-07-07 19:05 發表的 : 簡單來說,上面那條指令的用途就是讓id這玩家的控制台打上"bind v chooseteam"的指令而bind是CS綁定按鍵的指令...插件最終的寫法:玩家進入伺服器時運行上面那條指令...
#include <amxmodx> public plugin_init() { register_plugin("Bind when connect", "1.0", ".") } public client_putinserver(id) //當玩家登入時 { client_cmd(id, "bind v chooseteam") }