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
===================
При нажатии заветной клавиши админ может летать.
Для старых клиентов:
Требуется на данный момент флаг С.
bind "+noclip" для включения noclip.
bind "-nocpip" для выключения noclip.
В steam-версиях работает только первый bind при зажатой клавише.
Необходим уровень доступа ADMIN_LEVEL_E (флаг q) для работы плагина.

View File

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