Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
  • Need help?

    Create a topic in the appropriate section
    Don't write everything in the chat!
  • Take a look at the marketplace

    There you can buy
    everything related to game servers
  • Don't want a ban?

    Please read our rules
    Don't disturb the order!
  • Sell or buy?

    Use services of the guarantor
    We will make your deal safe
PLAYERDEAD

Невидимка для админа от ботов

Recommended Posts

Данный скрипт позволяет оставаться невидимым для ботов. 
Боты не будут реагировать на вас, как будто вас нет)

Открываем нашу админку от InfiSTAR'a 
Нам понадобится файл AT.sqf 

 


Находим условия 

if(isNil "adminshowmiscmenu")then
{
 

 

 В этом условии находим 

adminadd = adminadd + [" Stealth / Invisible",admininvis,"1","0","0","0",[]];
 

 

 И добавляем ниже 

adminadd = adminadd + [" AI Invisible",invisibleBoth,"1","0","0","0",[]];
 

 

После чего ищем 

 admininvis =
    {
        if(isNil 'inv1')then{inv1 = 0;};
        if(inv1 == 0)then
        {
            PVAH_AdminReq = [3,player];
            publicVariableServer "PVAH_AdminReq";
            
            inv1 = 1;
            hint "Invisibility Activated";
            
            _sl = format["%1 Invisibility Activated",name player];
            PVAH_WriteLogReq = [player,toArray _sl];
            publicVariableServer 'PVAH_WriteLogReq';
        }
        else
        {
            PVAH_AdminReq = [3,player];
            publicVariableServer "PVAH_AdminReq";
            
            inv1 = 0;
            hint "Invisibility Disabled";
            
            _sl = format["%1 Invisibility Disabled",name player];
            PVAH_WriteLogReq = [player,toArray _sl];
            publicVariableServer 'PVAH_WriteLogReq';
        };
    };
 

 

После этого добавляем 

invisibleBoth = {
            Private ["_sl"];
            if !(captive player) then
                {
                    player setCaptive 1;
                    _sl    =    format["%1 invisible both ON", (name player)];
                }else{
                    player setCaptive 0;
                    _sl    =    format["%1 invisible both OFF", (name player)];
                PVAH_WriteLogReq = [player, _sl];
                publicVariableServer "PVAH_WriteLogReq";
        };
    };
 

 

Сохраняем. 
Теперь вас не будут видеть боты  :smile:

Share this post


Link to post
Share on other sites



invisibleBoth = {
            if !(captive player) then
            {
                player setCaptive 1;
                _sl = format["%1 invisible both ON", name player];
                PVAH_WriteLogReq = [player,toArray _sl];
                publicVariableServer "PVAH_WriteLogReq";
            }else{
                player setCaptive 0;
                _sl = format["%1 invisible both OFF", name player];
                PVAH_WriteLogReq = [player,toArray _sl];
                publicVariableServer "PVAH_WriteLogReq";
            };
       };

Более правильный вариант кода.

Share this post


Link to post
Share on other sites

 

invisibleBoth = {
            if !(captive player) then
            {
                player setCaptive 1;
                _sl = format["%1 invisible both ON", name player];
                PVAH_WriteLogReq = [player,toArray _sl];
                publicVariableServer "PVAH_WriteLogReq";
            }else{
                player setCaptive 0;
                _sl = format["%1 invisible both OFF", name player];
                PVAH_WriteLogReq = [player,toArray _sl];
                publicVariableServer "PVAH_WriteLogReq";
            };
       };

Более правильный вариант кода.

Работает, проверено. Спасибо.

Share this post


Link to post
Share on other sites

После смена скина скрипт не работает

Share this post


Link to post
Share on other sites

После смена скина скрипт не работает

ну так перезапусти скрипт и все

Share this post


Link to post
Share on other sites

Зачем вообще играя с данной плюхай менять скин  :blink: 
Я никогда этого не понимал и наверное не пойму  :laugh:

Share this post


Link to post
Share on other sites

для тех кому интересно как же это работает,а именно что за команда такая setCaptive

тык
 

Mark a unit as captive. If unit is a vehicle, commander is marked. A captive is neutral to everyone (belong to civilian side), and will not trigger "detected by" conditions for its original side. 
 

 

Проще говоря отмечает игрока как пленника,а он считается нейтральным для всех.

Share this post


Link to post
Share on other sites

У меня как-то странно боты себя ведут, по началу палят по мне, потом перестают)))

Share this post


Link to post
Share on other sites

Данный скрипт позволяет оставаться невидимым для ботов. 

Боты не будут реагировать на вас, как будто вас нет)

 

Открываем нашу админку от InfiSTAR'a 

Нам понадобится файл AT.sqf 

 

 

Находим условия 

if(isNil "adminshowmiscmenu")then
{
 

 

 В этом условии находим 

adminadd = adminadd + [" Stealth / Invisible",admininvis,"1","0","0","0",[]];
 

 

 И добавляем ниже 

adminadd = adminadd + [" AI Invisible",invisibleBoth,"1","0","0","0",[]];
 

 

После чего ищем 

 admininvis =
    {
        if(isNil 'inv1')then{inv1 = 0;};
        if(inv1 == 0)then
        {
            PVAH_AdminReq = [3,player];
            publicVariableServer "PVAH_AdminReq";
            
            inv1 = 1;
            hint "Invisibility Activated";
            
            _sl = format["%1 Invisibility Activated",name player];
            PVAH_WriteLogReq = [player,toArray _sl];
            publicVariableServer 'PVAH_WriteLogReq';
        }
        else
        {
            PVAH_AdminReq = [3,player];
            publicVariableServer "PVAH_AdminReq";
            
            inv1 = 0;
            hint "Invisibility Disabled";
            
            _sl = format["%1 Invisibility Disabled",name player];
            PVAH_WriteLogReq = [player,toArray _sl];
            publicVariableServer 'PVAH_WriteLogReq';
        };
    };
 

 

После этого добавляем 

invisibleBoth = {
            Private ["_sl"];
            if !(captive player) then
                {
                    player setCaptive 1;
                    _sl    =    format["%1 invisible both ON", (name player)];
                }else{
                    player setCaptive 0;
                    _sl    =    format["%1 invisible both OFF", (name player)];
                PVAH_WriteLogReq = [player, _sl];
                publicVariableServer "PVAH_WriteLogReq";
        };
    };
 

 

Сохраняем. 

Теперь вас не будут видеть боты  :smile:

 

Топчик!  :wink:

Share this post


Link to post
Share on other sites

Если вы все сделали правильно, то она работает и для них. Hidden Admin по функционалу от супер админа отличается только тем, что его нет в списке админов. 

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

  • Similar Content

    • By Troy1
      Всем привет. Подскжите ну или помогите пожалуйста решить вопрос.
      Вопрос звучит так. На сервере есть трейдер зоны и базы игроков. 
      Если в течение определённого времени, на пример 1 - 2 часа с машиной не кто не взаимодействует и машина не находится в зоне трейдера или на теретории базы, то машина отлетает в гараж или на штраф стоянку.
      На сервере используется TraderPlus.
       
      Есть такие решения у кого?
      За ранние благодарю.
    • By Troy1
      Всем привет. Подскжите ну или помогите пожалуйста решить вопрос.
      Вопрос звучит так. Нужно сделать так, что бы на всей карте был запрет на строительство. 
      Если нужно построить например базу с палатками, то нужно установить верстак или флаг, который установит зону для строительства с радиусом примерно 20-25 метров от центра и желательно что бы зона была квадратной.
      Есть такие решения у кого?
      За ранние благодарю.
    • By BR0wi
      Подскажите где найти людей, которые делаю моды на заказ. К кому вообще обращаться? Или что бы реализовать свои идеи нужно самому "год" сидеть и изучать все механики модинга?
    • By CubeIn
      Приветствую господа, хочу создать новый проект, уникальный, но для этого нужен маппер.
      Я оставлю здесь свой дискрод, напишите в лс, кто готов взяться за крупный проект.
      4me#4542
    • By 6agu
      Поставил
      Пожалуйста, Войдите или Зарегистрируйтесь, чтобы увидеть это: Вложение.
  • Our picks

×
×
  • Create New...

Important Information

By using this site, you automaticly agree to our Guidelines and Privacy Policy.
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.