This commit is contained in:
STAM 2015-12-25 15:47:14 +03:00
parent a0ac983ea0
commit 89b2a6472a
2 changed files with 15 additions and 8 deletions

View File

@ -1,6 +1,14 @@
AMXx Easy Noclip AMXx Easy Noclip
=================== ===================
При нажатии заветной клавиши админ может летать. Для старых клиентов:
Требуется на данный момент флаг С. bind "+noclip" для включения noclip.
bind "-nocpip" для выключения noclip.
В steam-версиях работает только первый bind при зажатой клавише.
Необходим уровень доступа ADMIN_LEVEL_E (флаг q) для работы плагина.

View File

@ -3,7 +3,7 @@
#include <fun> #include <fun>
#define PLUGIN "Easy NoClip" #define PLUGIN "Easy NoClip"
#define VERSION "0.3" #define VERSION "0.4"
#define AUTHOR "EpicMorg" #define AUTHOR "EpicMorg"
@ -15,18 +15,17 @@ public plugin_init() {
public ClCmdOnNoClip(id) public ClCmdOnNoClip(id)
{ {
//if(!(get_user_flags(id) & ADMIN_IMMUNITY)) if(!(get_user_flags(id) & ADMIN_LEVEL_E))
if(!(get_user_flags(id) & ADMIN_LEVEL_C))
return PLUGIN_CONTINUE; return PLUGIN_CONTINUE;
set_user_noclip(id, 1) set_user_noclip(id, 1)
return PLUGIN_HANDLED; return PLUGIN_HANDLED;
} }
//legacy for old clients
public ClCmdOffNoClip(id) public ClCmdOffNoClip(id)
{ {
//if(!(get_user_flags(id) & ADMIN_IMMUNITY)) if(!(get_user_flags(id) & ADMIN_LEVEL_E))
if(!(get_user_flags(id) & ADMIN_LEVEL_C))
return PLUGIN_CONTINUE; return PLUGIN_CONTINUE;
set_user_noclip(id, 0) set_user_noclip(id, 0)