|
发表于 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
- }
复制代码 |
|