From 89b2a6472abefae3655882cd239cdbc601303499 Mon Sep 17 00:00:00 2001 From: STAM Date: Fri, 25 Dec 2015 15:47:14 +0300 Subject: [PATCH] 0.4 --- README.md | 12 ++++++++++-- .../{amxxeasynoclip.sma => amxx_easy_noclip.sma} | 11 +++++------ 2 files changed, 15 insertions(+), 8 deletions(-) rename amxmodx/scripting/{amxxeasynoclip.sma => amxx_easy_noclip.sma} (69%) diff --git a/README.md b/README.md index 627a63b..9aa422f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,14 @@ AMXx Easy Noclip =================== -При нажатии заветной клавиши админ может летать. +Для старых клиентов: -Требуется на данный момент флаг С. \ No newline at end of file +bind "+noclip" для включения noclip. + +bind "-nocpip" для выключения noclip. + + +В steam-версиях работает только первый bind при зажатой клавише. + + +Необходим уровень доступа ADMIN_LEVEL_E (флаг q) для работы плагина. \ No newline at end of file diff --git a/amxmodx/scripting/amxxeasynoclip.sma b/amxmodx/scripting/amxx_easy_noclip.sma similarity index 69% rename from amxmodx/scripting/amxxeasynoclip.sma rename to amxmodx/scripting/amxx_easy_noclip.sma index 971c455..5eb3c98 100644 --- a/amxmodx/scripting/amxxeasynoclip.sma +++ b/amxmodx/scripting/amxx_easy_noclip.sma @@ -3,7 +3,7 @@ #include #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)