Jump to content
Jonathan

Доставка предмета в триггер.

Recommended Posts

Привет, может кто-нибудь поделиться скриптом на доставку предмета в зону. Обьясняю - мне нужно чтобы игрок поднял документ и потом когда заходил в зону (триггер) миссия завершалась. ("Item_FileTopSecret") название объекта.

Share this post


Link to post
Share on other sites

_items = items player;

_wanted = ["Item_FileTopSecret"];

 

if ( _wanted findIf { _x in _items } > -1 ) then { 

if (isServer) then 

{

    if (isNil "isInside") then {isInside = false; publicVariable "isInside";};

    missionComplete = false;

    [] spawn

    {

        i = 0;

        _timeScore = 1;     

        while {!missionComplete} do  

        {

            if (isInside) then

            {

                i = i + 1;  

            } else

            {

                i = 0;

            };

            hint format["%1",isInside];

            if (i >= _timeScore && alive Item_FileTopSecret) then  

            {

                [[[], {[west, 'Документы были захвачены и доставлены на базу США!'] call wmt_fnc_endmission;} ], 'bis_fnc_spawn'] call bis_fnc_MP;

                [[[], {['Документы были захвачены и доставлены на базу США!'] call WMT_fnc_ShowTaskNotification;} ], 'bis_fnc_spawn'] call bis_fnc_MP;

                missionComplete = trig; 

            };

            sleep 1;

        };

    };

    };

};

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

  • Recently Browsing   0 members

    No registered users viewing this page.

×

Important Information

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.