Jump to content

Search the Community

Showing results for tags 'vision'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • BOHEMIA INTERACTIVE
    • BOHEMIA INTERACTIVE - NEWS
    • BOHEMIA INTERACTIVE - JOBS
    • BOHEMIA INTERACTIVE - GENERAL
  • FEATURED GAMES
    • Arma Reforger
    • Vigor
    • DAYZ
    • ARMA 3
    • ARMA 2
    • YLANDS
  • MOBILE GAMES
    • ARMA MOBILE OPS
    • MINIDAYZ
    • ARMA TACTICS
    • ARMA 2 FIRING RANGE
  • BI MILITARY GAMES FORUMS
  • BOHEMIA INCUBATOR
    • PROJECT LUCIE
  • OTHER BOHEMIA GAMES
    • ARGO
    • TAKE ON MARS
    • TAKE ON HELICOPTERS
    • CARRIER COMMAND: GAEA MISSION
    • ARMA: ARMED ASSAULT / COMBAT OPERATIONS
    • ARMA: COLD WAR ASSAULT / OPERATION FLASHPOINT
    • IRON FRONT: LIBERATION 1944
    • BACK CATALOGUE
  • OFFTOPIC
    • OFFTOPIC
  • Die Hard OFP Lovers' Club's Topics
  • ArmA Toolmakers's Releases
  • ArmA Toolmakers's General
  • Japan in Arma's Topics
  • Arma 3 Photography Club's Discussions
  • The Order Of the Wolfs- Unit's Topics
  • 4th Infantry Brigade's Recruitment
  • 11th Marine Expeditionary Unit OFFICIAL | 11th MEU(SOC)'s 11th MEU(SOC) Recruitment Status - OPEN
  • Legion latina semper fi's New Server Legion latina next wick
  • Legion latina semper fi's https://www.facebook.com/groups/legionlatinasemperfidelis/
  • Legion latina semper fi's Server VPN LEGION LATINA SEMPER FI
  • Team Nederland's Welkom bij ons club
  • Team Nederland's Facebook
  • [H.S.O.] Hellenic Special Operations's Infos
  • BI Forum Ravage Club's Forum Topics
  • Exilemod (Unofficial)'s General Discussion
  • Exilemod (Unofficial)'s Scripts
  • Exilemod (Unofficial)'s Addons
  • Exilemod (Unofficial)'s Problems & Bugs
  • Exilemod (Unofficial)'s Exilemod Tweaks
  • Exilemod (Unofficial)'s Promotion
  • Exilemod (Unofficial)'s Maps - Mission Files
  • TKO's Weferlingen
  • TKO's Green Sea
  • TKO's Rules
  • TKO's Changelog
  • TKO's Help
  • TKO's What we Need
  • TKO's Cam Lao Nam
  • MSOF A3 Wasteland's Server Game Play Features
  • MSOF A3 Wasteland's Problems & Bugs
  • MSOF A3 Wasteland's Maps in Rotation
  • SOS GAMING's Server
  • SOS GAMING's News on Server
  • SOS GAMING's Regeln / Rules
  • SOS GAMING's Ghost-Town-Team
  • SOS GAMING's Steuerung / Keys
  • SOS GAMING's Div. Infos
  • SOS GAMING's Small Talk
  • NAMC's Topics
  • NTC's New Members
  • NTC's Enlisted Members
  • The STATE's Topics
  • CREATEANDGENERATION's Intoduction
  • CREATEANDGENERATION's HAVEN EMPIRE (NEW CREATORS COMMUNITY)
  • HavenEmpire Gaming community's HavenEmpire Gaming community
  • Polska_Rodzina's Polska_Rodzina-ARGO
  • Carrier command tips and tricks's Tips and tricks
  • Carrier command tips and tricks's Talk about carrier command
  • ItzChaos's Community's Socials
  • Photography club of Arma 3's Epic photos
  • Photography club of Arma 3's Team pics
  • Photography club of Arma 3's Vehicle pics
  • Photography club of Arma 3's Other
  • Spartan Gamers DayZ's Baneados del Servidor
  • Warriors Waging War's Vigor
  • Tales of the Republic's Republic News
  • Operazioni Arma Italia's CHI SIAMO
  • [GER] HUSKY-GAMING.CC / Roleplay at its best!'s Starte deine Reise noch heute!
  • empire brotherhood occult +2349082603448's empire money +2349082603448
  • NET88's Twitter

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Yahoo


Jabber (xmpp)


Skype


Biography


Twitter


Google+


Youtube


Vimeo


Xfire


Steam url id


Raptr


MySpace


Linkedin


Tumblr


Flickr


XBOX Live


PlayStation PSN


Origin


PlayFire


SoundCloud


Pinterest


Reddit


Twitch.Tv


Ustream.Tv


Duxter


Instagram


Location


Interests


Interests


Occupation

Found 3 results

  1. HI. Maybe someone can find this usable. This script adds/removes NVG's at all units besides players according to day/night cycle. ACE3 compatible. /* file: autonvg.sqf by DaVidoSS description: adds/removes nvg according to daytime for each unit included ace3 nvgs: "ACE_NVG_Gen1" "ACE_NVG_Gen2" "ACE_NVG_Gen4" "ACE_NVG_Wide" parameters: none return: VOID usage: //init.sqf if (isServer) then { 0 = [] execVM "autonvg.sqf"; }; */ private _autonvgOn = createTrigger ["EmptyDetector", [0, 0, 0], false]; _autonvgOn setTriggerActivation ["NONE", "PRESENT", true]; _autonvgOn setTriggerStatements [ "(sunOrMoon < 0.45)", " private ['_nvgsw', '_nvgse', '_nvgsi', '_nvgSide', '_itemsUnit', '_commonItemsArray', '_nvg', '_isACE']; _nvgsw = ['NVGoggles','NVGogglesB_blk_F','NVGogglesB_grn_F','NVGogglesB_gry_F']; _nvgse = ['NVGoggles_OPFOR','O_NVGoggles_ghex_F','O_NVGoggles_hex_F','O_NVGoggles_urb_F']; _nvgsi = ['NVGoggles_INDEP','NVGoggles_tna_F']; _isACE = !isnull (configfile >> 'CfgPatches' >> 'ace_main'); if (_isACE) then { _nvgsw = _nvgsw + ['ACE_NVG_Gen4', 'ACE_NVG_Wide']; _nvgse = _nvgse + ['ACE_NVG_Gen1']; _nvgsi = _nvgsi + ['ACE_NVG_Gen2']; }; { _nvgSide = switch (str (side _x)) do { case 'WEST': { _nvgsw }; case 'EAST': { _nvgse }; case 'GUER': { _nvgsi }; default { [] }; }; if(alive _x) then { _itemsUnit = (items _x + assignedItems _x); _commonItemsArray = _nvgSide arrayIntersect _itemsUnit; _nvg = _commonItemsArray select 0; if (!isNil '_nvg') then { if !(_nvg in (assignedItems _x)) then { _x assignItem _nvg; }; } else { _x linkitem (selectRandom _nvgSide); }; }; } forEach (allUnits select {!isPlayer _x}); ",""]; private _autonvgOf = createTrigger ["EmptyDetector", [0, 0, 0], false]; _autonvgOf setTriggerActivation ["NONE", "PRESENT", true]; _autonvgOf setTriggerStatements [ "(sunOrMoon >= 0.45)", " private ['_nvgsw', '_nvgse', '_nvgsi', '_itemsUnit', '_commonItemsArray', '_nvg','_isACE']; _nvgsw = ['NVGoggles','NVGogglesB_blk_F','NVGogglesB_grn_F','NVGogglesB_gry_F']; _nvgse = ['NVGoggles_OPFOR','O_NVGoggles_ghex_F','O_NVGoggles_hex_F','O_NVGoggles_urb_F']; _nvgsi = ['NVGoggles_INDEP','NVGoggles_tna_F']; _isACE = !isnull (configfile >> 'CfgPatches' >> 'ace_main'); if (_isACE) then { _nvgsw = _nvgsw + ['ACE_NVG_Gen4', 'ACE_NVG_Wide']; _nvgse = _nvgse + ['ACE_NVG_Gen1']; _nvgsi = _nvgsi + ['ACE_NVG_Gen2']; }; { if(alive _x) then { _itemsUnit = assignedItems _x; _commonItemsArray = ((_nvgsw + _nvgse + _nvgsi) arrayIntersect _itemsUnit); _nvg = _commonItemsArray select 0; if(!isNil '_nvg') then { _x unassignItem _nvg; }; }; } forEach (allUnits select {!isPlayer _x}); ",""];
  2. ARMED ASSAULT III NIGHT VISION GOOGLE Version :1.0.0 BY [DSK] Red What ist the modification about ? LUCIE is a binocular goggle based on a patented optical design offering a very compact head-mounted system, with a wide 51°field of view instead of the traditional 40° field of view. Thanks to its lightweight and compact/low profile design, LUCIE offers exceptional long wearing comfort. This modification contains the 3rd Generation tube and is fully supported by ACE. ____________________________________________________________________________________________________________________________________________________________________________________________________________ Classname : dsk_nsv Images : Images with LUCIE mounted on NVG shroud : Images with LUCIE mounted on headstrap : _______________________________________________________________________________________________________________________________________________________________________________________ Credits : Credits & special thanks to Team Operation Frenchpoint for getting their Model of the night vision Google LUCIE and also for giving me their permission to release it for the whole community ! For questions and other suggestions feel free to contact me : http://xn--divisionschnellekrfte-n2b.de/ E-Mail : admin@dsk-arma2.de BI Board : [DSK]Red Best Regards,
  3. So i saw a video a couple of days ago where the player that controled zeus has access to thermal vison. After a google search i found this http://feedback.arma3.com/view.php?id=17794 on the Arma 3 feedback website. I tried multiple times to get it to work but no progress, so i went in the editor and looked up the function in the function viewer. This is what i got from it. I have tried a couple of things but nothing has worked yet. If anyone knows how to get this to work that would be great. Hopefully it will also help other mission makers in the future. Thanks in advance for any help or tips i get.
×