ifubo 发表于 2008-11-25 10:57:42

苛求:能否单独做一个屏蔽热键的插件

防住激光,屏蔽住ins和del是个好办法
但为了屏蔽键而安装RHLC实在不是好办法
而试了client_exec的插件,虽然unbind del,实际确没有用,作弊器依然能使用热键
我想麻烦高手单独做出一个类似RHLG的block_keys的插件来
我在amxx的官网看到这些代码,不知有没有用
register_forward( FM_CmdStart, "CmdStart" )

public CmdStart( const id, const uc_handle, random_seed )
{
    if ( !is_user_alive( id ) )
      return FMRES_IGNORED
    static buttons
    buttons = get_uc( uc_handle, UC_Buttons )
    if ( buttons & IN_USE )
      // Do something here
      buttons &= ~IN_USE // Block them from using perhaps?
    set_uc( uc_handle, UC_Buttons, buttons ) // Update buttons then supercede
    return FMRES_SUPERCEDE
}

ifubo 发表于 2008-11-28 18:45:22

回复: 苛求:能否单独做一个屏蔽热键的插件

期望高手做出类似RHLG一样的,按指定键会Ban的插件
自己顶一下
页: [1]
查看完整版本: 苛求:能否单独做一个屏蔽热键的插件