Jump to content

fckface

Member
  • Posts

    9
  • Joined

  • Last visited

Posts posted by fckface

  1. For mission AI open up "WAI/compiles/spawn_group.sqf".

     

    Around line 135 look for:

    if (sunOrMoon != 1) then {
          _unit addweapon "NVGoggles";
    };
    

    and change it to:

    /*
    if (sunOrMoon != 1) then {
          _unit addweapon "NVGoggles";
    };
    */
    

    For static AI open up "WAI/compiles/spawn_static.sqf".

     

    Around line 161 look for:

    if (sunOrMoon != 1) then {
          _unit addweapon "NVGoggles";
    };
    

    and change it to:

    /*
    if (sunOrMoon != 1) then {
          _unit addweapon "NVGoggles";
    };
    */
    

    That will prevent AI from spawning with NVG's.

    Lol just could do so . Thank you. Not all of that will come below also stop working.I did like this

     

    This file on_kill.sqf. It was like this

     

    if(_unit hasWeapon "NVGoggles" && floor(random 100) < 20) then {
    _unit removeWeapon "NVGoggles";
    };
     
    Do this

     

    if(ai_clear_nvg) then {
    _unit removeWeapon "NVGoggles";
    };
     
    and added to the config that's 
     
    ai_clear_nvg                = true;
  2. For mission AI open up "WAI/compiles/spawn_group.sqf".

     

    Around line 135 look for:

    if (sunOrMoon != 1) then {
          _unit addweapon "NVGoggles";
    };
    

    and change it to:

    /*
    if (sunOrMoon != 1) then {
          _unit addweapon "NVGoggles";
    };
    */
    

    For static AI open up "WAI/compiles/spawn_static.sqf".

     

    Around line 161 look for:

    if (sunOrMoon != 1) then {
          _unit addweapon "NVGoggles";
    };
    

    and change it to:

    /*
    if (sunOrMoon != 1) then {
          _unit addweapon "NVGoggles";
    };
    */
    

    That will prevent AI from spawning with NVG's.

    Lol just could do so. Thank you

  3.  Hi guys. I decided to try to make an  Overpoch Taviana server. But faced the problem. When I connect to the server i get this output.

     

     

    Bat fail 

    @echo off
    start "arma2" /min "Expansion\beta\arma2oaserver.exe" -port=2302 "-config=instance_13_Tavi\config.cfg" "-cfg=instance_13_Tavi\basic.cfg" "-profiles=instance_13_Tavi" -name=instance_13_Tavi "-mod=@DayzOverwatch;@Taviana;@DayZ_Epoch;@DayZ_Epoch_Server;"
     
    post-13588-0-55513700-1414948975_thumb.j
     
    What to do

×
×
  • Create New...