Jump to content

Search the Community

Showing results for tags 'apex'.



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 84 results

  1. All these questions are disparate so I'll just rapid fire them with bullet points in the spoilers tab:
  2. Near the end of the mission 'End Game' in ARMA3 Apex, when the minigun is fired from a helicopter or vehicle, or when the vehicle explodes, the FPS drops drastically and the game cannot continue. The frame rate at that time is about 1 to 10 FPS. I searched for past information and set the Windows audio format to '16bit 44.1KHz', but it did not improve. Any solution? PC specs O/S: Windows11 Pro CPU: Ryzen7 5700x GPU: RTX4070Ti RAM: 64GB 3600Mhz SSD: 1TB Crucial MX500
  3. Hey fellow Arma players, while customizing a unit in the virtual arsenal I was like "Man, I would really like a coop mission as gendarmerie"... So I created it. About this mission: Duration: 2-3h Features: - Base discovery with respawn system - Vehicle store - Performance boosting (the mission is quite huge. Inactive units will not be processed) - Civilian population Workshop page: https://steamcommunity.com/sharedfiles/filedetails/?id=2797269554 Feedback: I really want to create a nice and stable mission. So please send me any feedback you have. From bugs to your playthrough experience. Note: The mission contains tasks where you need to search for evidence. I intentionally did not mark their location on the map. In case you find them too hard to find, please tell me. In case you cannot find all evidence:
  4. Hello community, I'm trying to optimize the code and further expand the functionality of a MP mission I've made: HazardZone The idea is to create an Apex's hold action by passing couple of params, issue is I really can't figure out how to pass them - especially line 4, 8 and 9 For example, I just put params ["_sample", "_unit"]; in lines 10-13 and it works like a charm, but is there anyway to do it for the rest or for the whole function without specifying params on each line? Hold Action Function: createSample = { params ["_sample", "_unit"]; [_sample, // Name of the object "Collect a sample", //title of the action "\a3\ui_f\data\IGUI\Cfg\holdactions\holdAction_connect_ca.paa", "\a3\ui_f\data\IGUI\Cfg\holdactions\holdAction_connect_ca.paa", "_unit distance _sample < 5", // The condition for the Action to be shown "_unit distance _sample < 5", // The condition for the Action to progress {}, // The code executed when the action starts {}, // The code executed on every progress tick {}, // The Code which is executed on action completion {}, // The code which is executed when the player is interrrupted or stops interaction [], // No idea! Some arguments... 5, // The duration how long will it take for the action to be completed in seconds 0, // Priority false, // Remove the action once it has been completed false // show Unconsious state ] remoteExec ["BIS_fnc_holdActionAdd", [0,-2] select isDedicated, true]; }; // This is how the function will be called [objVar, playerVar] call createSample; I really would really appreciate the help. Thank you!
  5. ***PLEASE NOTE THIS IS A WORK IN PROGRESS*** Hello There! I am currently in the process of designing a Campaign and want feedback on my idea and eventually when I start rolling out mission's them as well. Since moving over to ACE I've loved the ballistic system as part of it. I was inspired by Igneous01 - ArmA 2 Campaign and wanted to create something similar but on the ArmA 3 Platform. However, I wanted to make something that is also co-op but was unsure if that is possible so please feel free to comment down below. I also didn't want thousands of mods I wanted to use mods that are the most popular on the Steam Workshop but like I've said if you have any suggestions please mention them below. Here's a general summary of my campaign: MODS: ACE RHS USAF RHS AFRF Apex Now I know this campaign won't be for everyone but I would appreciate any idea's that great community can provide. ***PLEASE NOTE THIS IS A WORK IN PROGRESS***
  6. Hello! I would like to play the S.O.G Prairie Fire coop campaign together with my friends on our dedicated server and not on public servers or a self-hosted game. With the Apex coop campaign you only have to enter the missions in the server.cfg. Here is an example: class Missions { class TestMission01 { template = MP_Marksmen_01.Altis; difficulty = "veteran"; class Params {}; }; class TestMission02 { template = MP_End_Game_01.Altis; difficulty = "veteran"; class Params {}; }; class TestMission03 { template = MP_End_Game_02.Altis; difficulty = "veteran"; class Params {}; }; class TestMission04 { template = MP_End_Game_03.Altis; difficulty = "veteran"; class Params {}; }; }; another example: class MPMissions { class Apex { briefingName = $STR_A3_CoopCampaignName; class EXP_m01 { briefingName = $STR_A3_exp_m01_missionname; directory = "a3\missions_f_exp\campaign\missions\exp_m01.tanoa"; }; class EXP_m02 { briefingName = $STR_A3_exp_m02_missionname; directory = "a3\missions_f_exp\campaign\missions\exp_m02.tanoa"; }; class EXP_m03 { briefingName = $STR_A3_exp_m03_missionname; directory = "a3\missions_f_exp\campaign\missions\exp_m03.tanoa"; }; }; }; But how do I do it now with the S.O.G missions? Can someone send me a template for the server.cfg? I am looking forward to help!
  7. Hi Guys, After looking at some of the brilliant inspiration on youtube and steam by Nikoleav and Xcino, (and an awesome rig by Luger from last year) I decided my original rig just didn't cut it. This one is complete from vanilla and apex assets, meaning it will work with almost any community. It is >4x larger than my previous rig and puts it on a similar scale to Xcino's V2. Features include: The structure can be accessed from any one of the 4 struts and gives unique bottlenecks at each one. Multiple office structures and pump areas plus service pipelines to new locations. HUGE level of verticality with multiple 'decks' and sight lines. A secret location for SF ops. A full size helipad and lighting for even the largest of transports. A sensible amount of lighting to assist immersive night ops, (turn dynamic lights up to ULTRA) AND FINALLY, I have added 4 changable respawn points that place players onto the four struts. Good for PVP or curated/role play elements. Obviously AI will struggle to navigate the thing, but the pathing isn't the worst. Use it / alter it as you see fit but let me know of you make any videos, please credit me if you want to re-release it in something else. Anyway have fun. and if you like this sort of thing, drop in the CPM at or our teamspeak at ts1.cornishpastymen.co.uk:9993 Download HERE
  8. The APEX Drakon Finally, after 6 long months of development it's here... Introducing a new Unmanned Aerial System for Arma III. The jet-powered APEX Drakon offers a new way to control the battlefield in a sleek, effective way. Derived from the General Atomics Predator C 'Avenger', the Drakon comes equipped with a slew of incredible weapons and takes no prisoners. Not only was this model built from the ground up by none other than Kiory, this incredible machine comes equipped with a custom loadout editor made from scratch by AWOL, a well known Arma mod creator. Efficiency, design and quality were all key factors in creating this masterpiece. Prologue After a year into Arma's release, I had become frustrated with the vanilla UAV systems. With a game based in 2035, why were we using propeller driven aircraft? Also, why such a weak armament and why are they still extremely buggy? With those frustrations in mind, I set out to fix it myself. Meeting up with Kiory and AWOL, we began work on a new UAV system that would completely change the way UAV's would be viewed in Arma. 6 months later, the Drakon was released. While we still have a long way to go to get it where we want to, this is a step in the right direction. Addon Contents Includes the APEX Drakon .pbo file which comes with a single Drakon and a custom loadout editor built into the mod. FEATURES Jet-powered UAV system Nearly double the speed of vanilla UAV systems 4 external hardpoints and 1 internal bay Custom loadout editor and service menu (To be included in future builds) HELLAD Solid State Laser system Multiple camouflage patterns Stealth and Laser selectable variants Re-built UAV terminal TUTORIAL CREDITS Arma 3 engine: Bohemia Interactive Project lead: Church 3D Artist: Kiory Code/Scripts: AWOL Video Production: Church END USER LICENCE AGREEMENT: DISCLAIMER You are permitted to install and use this software for personal entertainment purposes only. You may not use this add-on (nor any of its parts) in any other add-on or mod (not even partially) nor redistribute or mirror it without Church's prior consent. This add-on is released under Creative Commons License Attribution-NonCommercial-NoDerivs For use with Arma III DONATIONS Our incredible mod team could use your help investing more into this mod! If you'd like, please donate to our cause! DOWNLOAD LINKS HOW TO INSTALL AND USE: Simply extract the @Drakon file from the .zip folder and drop it directly into your Arma directory folder! Once in game you must spawn an ammo support vehicle next to the Drakon in order to access the APEX Support Menu. Enjoy! KNOWN ISSUES Keep in mind the Drakon is still very much in an alpha state. This is our first release and there WILL be bugs. Here are a few we are aware of: The Drakon still uses Arma III's unfavorable UAV system. We know, it's something we want to get away from. The Laser Designator doesn't spawn on the UAV unless you first apply a loadout. The UAV flight model needs to be cleaned up. It currently floats too easily and the stall speed needs to be adjusted. The UAV turret cam works when it is stowed away, allowing you to see inside the drone. This will be fixed in a future patch. For some reason the Drakon doesn't get along with ACE's missile system very well. We're looking into that. For now, avoid using with ACE. There may be many others. These are just the ones we're very aware of. Feel free to PM me with any bugs you find outside of these ones. FOR MAKING WORK WITH ACE Thanks to Bamse for pointing this out. Remove these 6 .pbo files in order to avoid conflict with ACE. ace_javelin.pbo ace_laser.pbo ace_laser.pbo ace_laser_selfdesignate.pbo ace_laserpointer.pbo ace_missileguidance.pbo ace_yardarge450.pbo THANK YOU! PLEASE ENJOY OUR MOD!
  9. Right so, I played Apex Protocol with my friend a couple of days ago on the public 4 player servers. We played all the way up until mission number 4, but then we both got off for the night and today we wanted to resume from mission 4, but instead, the game only lets us start from mission 1 - Keystone in the CTRG menu and it says that the other missions aren't unlocked yet, even though we have played through them. Is there any way to continue from mission four, or do we have to start all over again from Keystone?
  10. In the VTOL Presentation have the CSAT with regular troops a direct confrontation with NATO expedition troops on the 10th June 2035. In APEX Protocol, was the first contact of NATO/CTRG troops with CSAT/Viper on the 13th August 2035.
  11. //THE PITCH/ ‍If you’re looking for a group of tight-knit players & an entirely new perspective on MilSim RP, look no further. DAGR operates on the basis that all members are capable of executing orders effectively with advanced knowledge of not only the game and its environment, but basic Role-Playing knowledge as well. Some training may be required; We aren’t here to babysit you, but we don’t mind showing new players around, either. Join DAGR today & be deployed to over 10 different AO's around the world under armed forces from any NATO nation imaginable. Take part in full scale international operations with Dynamic Recon Ops' replayability & functionality. Literally hundreds of uniforms, camos, accessories, gear & fully licensed models of every NATO nation's arsenals. Not to mention the countless uniform patches for RP purposes. Take the next step with a uniquely casual military-rp community. All the tactics & gear, comradery & fun without the ass-kissing & time-wasting of typical MilSim servers. //ORIGIN STORY/ Defense Alliance of Global Resurgence (//DAGR/) is a fictional peace-enforcement initiative set in the A3 universe established by the North Atlantic Treaty Organization (NATO) in June of 2030. DAGR is a collaboration of allied nations whose primary objective is to bring diplomacy to poverty stricken, war torn countries with limited resources & provide them with security, medical, & technical aid. In addition to re-establishing local governments, DAGR is assigned to assist in the training & development of local law enforcement, military & other key government institutions. (read full dagr lore here.) //REQUIREMENTS/ We are currently reviewing applicants from around the world & whilst we are eager to welcome all, we must first verify that you meet our basic requirements... ‣We are a mature gaming community & as such must insist that all applicants be the age of 16+. (Some exceptions may be made on a case-by-case basis, please contact DAGR administration with any & all queries regarding our minimum age requirement policy.) ‣You MUST have a legal copy of A3 & install our modpack in order to participate in training & missions. ‣You MUST have a good quality, if not above average microphone & a copy of Discord installed on your PC. ‣You are only required to attend 1 operation & 1 training a month to retain active duty status. (Our operational schedule is currently under development whilst we gain community feedback. For the time being, we operate on a day-to-day basis in Pacific Standard Time.) ‣ You will be implemented in any number of positions in a unit and must be able to represent critical thinking skills & communication within operations as a team. //HOW TO APPLY/ ‣Visit our website @ natodagr.com ‣Click "Join Now" on the main page. (Alternatively, feel free to scroll down to the application page & learn a bit about us on the way.) ‣Read the instructions & proceed to your Selection Assessment ‣At the top, you will see our list of Requirements, give them a read & complete your application. (same as this forum post, disregard if you have already ready them) ‣Join our Discord & inform yourself on our community structure whilst you wait for a Recruit Liaison. //SERVERS/ We are a Discord-centric community & therefor do not use INVISION BOARD or the PERSCOM system. Discord is our main communications hub for all off-base communications. We do however utilize TFAR with our private TS3 server. //QUICK LINKS/ WEBSITE MODPACK DISCORD A3 UNITS CLANLIST PAGE VOTE FOR US ON CLANLIST! SPOTIFY PLAYLIST YT (under construction) IG (under construction) Thank you for taking the time to read our pitch, we know you have a lot of options when it comes to A3 communities & we appreciate your interest in ours. If you have any questions, feel free to contact me personally via Steam. -Sean Dugan Commanding Officer //DAGR/ Headquarters
  12. Introduction A singleplayer, semi-randomized open scenario for Tanoa. You're an alien nanite swarm-based entity survivor, for now in roughly humanoidal shape, that crashed on the deadly planet - water everywhere, very toxic. Your mission was to recon for the Swarm, if your race should invade and consume the planet, or leave it be. But now the first issue is to survive long enough to hunt down The Hunter, rogue sub-entity of The Scout, that caused the crash. The Hunter will try to neutralize The Scout as well. Next task is to clean up all debris from the crashed starship, if doable, to leave no trace of your tech while avoiding detection as long, as possible. Lastly - transmit any recon data and evacuation request to finish the mission. Requires APEX expansion. Download Descent Trajectory 1.03 (Dropbox via Orangedox) Descent Trajectory 1.03 (Steam Workshop) Notes and advices I'm open to good ideas, feedback is appreciated and mission may be enhanced with new features; Recommended settings: >1000 meters of object draw distance for intro and outro, enabled post process effects; DT gameplay differs from typical milsim scenario. Player gets new tools and HUD elements instead of usual soldiering stuff. These are simple to comprehend, but not always self-explanatory, thus I strongly recommend to read briefing entries before first play; The basic tools are: the Probe (action menu), Nano Stroke (melee range, 360 degees attack, free of charge, via LMB (basic shooting action)) and Nano Shot (ranged attack, holding and releasing RMB (temporary zoom action)). The attacks will be disabled, when player uses normal weaponry; Under 0-8 support menu one can find few settings: rate of time passage, autosaves, detector sounds switch; Scenario is highly randomized (in main part in quite peculiar way), thus regardless of initial settings, each gameplay difficulty may differ; GUI font is not very readable for purpose (should look alien at first glance). Don't worry, important informations about discoveries etc. are stored as diary entries with standard font; Combinations of some techs may prove very useful against The Hunter or if you wish to play the Predator; Brain scan tech is crucial for understanding local tongue, but also important as mean to gather valuable recon data, that affects the outcome; The only obligatory tasks are neutralizing The Hunter and Transmitting the signal. All the rest is up to you, but situation, you leave will affect the fate of the planet; You can sprint all the time, if terrain allows, fatigue doesn't apply to The Scout entity; Think about The Swarm as about a super-mind, where each specimen, temporarily separated, independent subswarm entity, represents a thought or pending consideration. Thus the same Swarm or his subswarms may generate subentities of contradictory goals, which represents a mind in doubt, during decission making or cognitive process. Thus we have The Scout and The Hunter, while The Scout has a task to convince The Swarmm to change its mind via new data; Chances for further mission development depend on level of interest around this scenario, which is indicated by amount of feedback. Especially proposed ideas and bug reports are appreciated; Known issues: due to Arma engine limitation, for "NAKED VR" avatar Active Camo tech may work only partially, if The Scout and The Hunter will use it simultanously. To Do waiting for requests and ideas... Changelog Terms of Use
  13. Just today me and another two friends were trying to play the Apex campaing, I hosted the server and checked the UPnP box, and we could play normally, we completed the first mission no problems. After a while Steam servers went into maintenance (you know, Tuesday's maintenance), so they lost connection. I hosted the game again and one of my friends was able to join, but the other one wasn't, it's just him. When he joins, there are messages saying "connecting", then "connected" and finally it disconnects with no error. We tried restarting Steam, our PCs, changing profiles, joining while playing the mission, we also tried other game modes. I tried port forwarding and opened the following ports: 2302 2303 2304 2305 27000 27050 3478 4379 4380 2344 2345 8766 Found all of those around internet, some are from steam and others from battleye, all of them were correctly opened and I checked it using a software, also my friends can now join without using UPnP so it clearly works. I also made a ping to his IP and the packets are successfully received. After all of this, he still can't join. Have any ideas? I really want to play the campaing and other modes co-op. Note: I don't have any mods loaded, neither does him
  14. Monument Valley - Old West Map Description: Since my first attempt on creating a map wasn't successful, I've started working on a new, working one map for my Wild West sandbox - Old West. Monument Valley - namesake of a place in USA, Arizona and Utah. It's size is 2048x2048 m. It takes place in the mid 19th century, in a time of Wild West era. Geography: Terrain is mainly consists of desert. Other half of it is mountains and plateau. It will have little towns, farms, villages and also some of the Native American tribes when I'll finish working on a topo relief and flora. Plans: Finish making topographical relief Update new sat map to a high-quality one (very boring and not necessary) Map mask can be changed too, but is good already Add foliage Add buldings and other objects Release it Requirements: Apex DLC CUP Terrains - Core Mattaust Buildings Pack Maybe something more in the future Snapshots:
  15. TL;DR, see my major conclusions Before we get started, for those who are not familiar with how to use the 2x fixed-zero Rifle Optics in the first place, see the "Sight Usage" section of Dslyecxi's TTP3, about 40% of the way down under "Basic Infantry; Combat Marksmanship; Basic Marksmanship" http://ttp3.dslyecxi.com/2_basic_infantry.php Now, since the earliest parts of the early access period, Arma 3 has had a series of 2x-and-a-bit magnification optics with fixed 300m zeroes and ballistic drop compensators. There were (and to a certain extent, still are) a lot of assumptions going around about these optics. That some are for certain calibers. That 7.62mm NATO has no corresponding optics. That any optic "in a certain caliber" would match up with any weapon in that caliber. Kind of makes sense, right? That because the RCO (MX) and ARCO (Katiba) were both found on 6.5mm weapons, they were interchangeable and that any 6.5mm weapon would work with them. Same for the MRCO (Mk20), ERCO (SPAR-16), and 5.56mm. And because none of them came with 7.62mm weapons as their "obvious" partner, big bore was -poop- out of luck for 2x optics. But I've been watching a lot of Rogue-9's videos regarding mechanics investigations in Rainbow Six Siege recently, and every single time he does in with assumptions, they get busted (side note, go sub to him if you have any interest in Siege, his work is very informative). This started getting me thinking about some of the assumptions I had about Arma 3, and the 2x Rifle Optics was one of the biggest ones. So I loaded up Hebontes, and after some trial and error getting the target ranges right, I loaded up my rifles and started plinking. The results were... well, native English speakers know what they say about assumptions: they make an Ass of U and Umption For those who just want the results, here's a link to the documents I wrote up about General Recommendations and Conclusions https://docs.google.com/document/d/1urGglgS6M_d26dFl3nynFDkGbUSdRvqgvw2tsCgONxw/edit?usp=sharing Recommendations per Weapon https://docs.google.com/document/d/1v4a5em93QRZodoPky1dW0Vl4_9pGlB_3MXoj9BUTN_s/edit?usp=sharing Testing Data per Optic https://docs.google.com/document/d/1bUjriRrR7xVe7XSViNZxnhE4siJ3tZabByN2Xn-v8_M/edit?usp=sharing Pictures are not included since most of you should already know darn well what each optic and reticle look like by now Testing Procedure First major conclusion: The only weapons that work flawlessly with any optic are the ones they are paired with. RCO-MX Carbine ARCO-Katiba Rifle MRCO-TRG-21 ERCO-SPAR-16S Beyond that, any example of consistently acceptable performance was down to ballistic characteristics being sufficiently similar Second major conclusion: Within 400m, it really does not matter. Within 500m, only for particularly fast or slow weapons will the markers be incorrect. By extension, any of the 200m reflex sights as well as the NVS will be just fine within their limitations Third Major Conclusion: The only optics that are truly hassle-free are those with adjustable zeroing. If you have the choice, I'd recommend the DMS over any of the 2x fixed optics, as it offers several advantages (4x, idiot-proof rangefinder, adjustable zero 100-1000m, etc) with the only disadvantage being unable to be used with NVGs. Of course, the Nightstalker is also available, but the Nightstalker is more likely than not to be unavailable, and it's kind of a bit too easy in my opinion (so much so the US Army is trying to copy the concept with FWS-I) Fourth Major Conclusion: While the long-barreled marksman rifles (MXM, Mk-I, CMR-76, SPAR-17) can make use of 2x optics, they are really much better suited for adjustable-zero. I'd recommend either the medium range (DMS, MOS) or medium-long range options (AMS, Kahlia). The other 7.62mm rifles, however, are well set for certain 2x optic combinations should you chose to go that way Final Major Conclusion: My recommended optic combinations. These combinations require no (optimal) or little (good) adjustment to achieve consistent hits within their effective range. Grenade launcher variants are included with their rifle and carbine counterparts RCO Optimal: MX Carbine, SPAR-17, CAR-95, CAR-95-1, Navid, Mk20 Rifle, Mk20C, Mk18 ABR, TRG-21 Good: MX SW, SPAR-16, SPAR-16S, TRG-20, LIM-85, Mk14 ARCO: Optimal: Katiba Rifle, Katiba Carbine, MX SW, Mk-I EMR, CAR-95, Navid, Mk20 Rifle, Mk18 ABR, TRG-21, LIM-85 Good: MX Carbine, MXM, SPAR-17, CAR-95-1, Type 115, Mk14 Acceptable: Mk200 MRCO Optimal: CAR-95, TRG-21, Mk14, Katiba Carbine, Mk18 ABR Good: MX Carbine, SPAR-17, CAR-95-1, MXC, Katiba Rifle ERCO Optimal: SPAR-16S, SPAR-16, TRG-20, Mk20C, MXC, Rahim Acceptable: AK-12 (50m slow @500m, 100m@600) Adjustable Zero (DMS, MOS, AMS, etc.) Recommended: MXM, SPMG, MK-I EMR, SPAR-17, Type 115, Zafir, Navid, Rahim, CMR-76, Mk200, AK-12, Mk14 Special Note: Zafir has varying degrees of front sight blockage with any optic other than RCO, which isn't a good match anyhow. Also, ERCO has some front sight blockage with some weapons, namely the Navid, Mk-I, and SPMG I hope you found my investigation useful. I certainly have. Thanks for reading, and I'll see you on the battlefield For those interested, a link to a similar investigation I did for the AT launchers https://docs.google.com/document/d/1oGznRhgYVCrSSCgKP8ZcB-Q9aQCMJVo94tmPjEvml_o/edit?usp=sharing
  16. Hello guys, I have a problem with apex campaign. When i try start the campaign i have this error: I start the game whitout addons Thanks!
  17. Squad name: 7th Cavalry Regiment Timezone/location : All US/EU Gamemode preference (eg coop or pvp): Coop/PVP/PVE, Mil-Sim Contact email: My 7th Cavalry Profile Website address: 7th Cavalry Website Short description: The 7th Cavalry Regiment is a military simulation clan primarily focused on Arma 3. The Regiment was founded October 15th, 2002 and remains committed to military simulation today. This means that when you enlist, you will earn your place as a trooper in one of the oldest gaming regiments online. For the majority of people in the CAV, this unit isn't just somewhere to play, it truly is a brotherhood in which all are respected and supported by their brethren. We have over 220+ Active Arma 3 members spread across 1st Batallion. We have three Company's: Alpha, Bravo and Charlie. Alpha contains Fixed & Rotary Wing for Transport and Attack. Bravo consists of Mechanized Infantry, Armor, Cavalry Scouts (Ground Recon) and our Medics. Charlie Company, the tip of the spear, is the main Infantry element, with Airborne Infantry & Heavy Weapons. The 7th Cavalry is best known for their in-depth training schools & courses (over 34 different classes!!!) and our high-attendance, detailed, immersive Operations. Want to learn more? Start your 7th Cav Career today! Click the link and choose your Career path ---> 7th Cavalry's Arma 3 Career Pathway For more info, visit Detailed 7th Cavalry Recruitment Post Language: English Signed, =7Cav=Lucius.M
  18. iCyEvolution

    APEX DLC purchased but not in game ?

    Hey guys, I'm extremely new to the game so bare with me, but after purchasing and installing the base game and some DLCs I noticed that it seems like the APEX DLC I bought and installed is not there ? I contacted steam and they said they can see it in my library, I guess I'm just not sure how to access it ? do I need to progress further in the SP or ? PLEASE HELP
  19. This script requires ACE3. This script uses an APEX DLC vehicle. Demonstration: https://streamable.com/nodw1 Version 1 links: PasteBin MixTape HasteBin Usage: copy-paste the script into init.sqf or debug console. Ace interact with a friendly unit and ride him. Ace self interact to get off. Notes: This is just a simple script with no customization. Feel free to use this for inspiration, modify it at your own leisure. Credits: Tennessee Timmy - script nigel - ideas / assistance computer - assistance / QA
  20. Hi, I'm a longtime player and I have a few recommended fixes for the game. Blackfish (armed) - The 40mm side cannon needs to have automatic reverse lead compensation on the gun. You are forced to aim way to the left of your target in order for it to impact where you want it. This feature seems to be present for the 20mm cannon and 105mm cannon so I assume the logic can be copied from this seat. Tanks - All the tanks seem way too vulnerable to all of the hand held Anti Tank weapons.
  21. Hi, I'm a longtime player and I have a few recommended fixes for the game. Blackfish (armed) - The 40mm side cannon needs to have automatic reverse lead compensation on the gun. You are forced to aim way to the left of your target in order for it to impact where you want it. This feature seems to be present for the 20mm cannon and 105mm cannon. Tanks - All the tanks seem way too vulnerable to all of the hand held Anti Tank weapons.
  22. Volition Servers Invade & Annex Game: Arma 3 Map: Tanoa IP: 64.94.95.36:2302 Location: Dallas, Texas Slots: 40 Privacy: Public Welcome to one of the very few I&A servers running on Tanoa from the Arma III Apex DLC. Here, you can finally experience persistent close-quarters and long-range combat in the lush and vibrant environment based off of the Horizon Islands North-east of Australia. This server is running the Invade & Annex Apex Framework released publicly by Quiksilver featuring flushed out performance improvements, enhanced AI behavior, comprehensive objectives and even a customizable radio system to clean up the clutter of public chatter. Source: https://forums.bohemia.net/forums/topic/212240-apex-framework/ *Invade & Annex is a persistent mission making mod for in-depth Player vs Enemy experiences* Automatically generated missions with a variety of foes and rewarding objectives! Just hop in the server, pick a role and navigate to the front lines with the help of your comrades in arms! The Invade & Annex Apex Framework persistently generates all of the following: Main AO populated with enemy CSAT forces and complete with multiple sub-objectives to weaken the opposing force and strengthen your chances of victory! Forward Operating Base that can be resupplied and maintained as a respawn point supply depot and vehicle service location for all ground forces! Secondary objective that can vary anywhere from rescuing a friendly behind enemy lines, escorting valuable resources in a convoy, securing enemy intel and even engaging enemy forces under the ocean! Aircraft Carrier that provides 1 friendly CAS pilot a fully armed Black Wasp II jet and UAV drones for reconnaissance and precision destruction Main Base complete with the V44-X Blackfish VTOL plane capable of inserting a fully loaded Marshal IFV behind enemy lines in minutes, large capacity helicopters such as the CH-67 Huron and UH-80 Ghost Hawk to deliver supplies and reinforcements as well as a plethora of ground vehicles from the powerful MBT-52 Kuma tank to the amphibious AMV-7 Marshall Recruitable AI that can be actively commanded to assist in battle! Briefing: You are a member of the NATO BluFor forces. CSAT military has been working with the local Syndikat militia to establish control over the Tanoa region. Primary Objective: Your mission is to completely drive all of the enemy forces out of the region and cripple the foreign control over the island. The enemy has established fortified defenses and communication. Utilize any and all assets to neutralize the enemy defenses, destroy their means of communication and once they are weak and vulnerable, strike directly at their headquarters. Secondary Objective: The region has become war torn and the local populace is not without suffering. Assist IDAP personnel and delivery valuable resources where needed to assist the neutral bystanders in this time of crisis. Tertiary Objective: We are in need of reinforcements but good help is hard to find. Recruit your friends and fellow comrades to join our forces on the frontlines. Rules/Administration: You must be 13 years or older to participate on any assets provided by Volition Servers. Nobody needs to tell you how to behave. You don’t need a set of rules or someone holding your hand. Administration reserves the right to penalize anybody with OR without a proper reason. We’re all friends here, as long as everyone’s having a good time, then there isn’t a problem. Join us on Teamspeak @ VolitionServers.Teamspeak3.com Or Discord @ https://discord.gg/hkKBHgg We provide other servers as well, get to know us! www.volitionservers.com Thank you for reading!
  23. I bought this game ages ago and didn't think to buy the digital deluxe and only bought apex as itself when it came out. For various reasons having a high quality version of the maps to use for planning stuff out etc. would be very useful and I can't find a way to get them without searching online and downloading them off some dodgy website. Apparently you used to be able to upgrade in the steam store https://support.bohemia.net/arma-3/activation/96 however I see this nowhere anymore, perhaps I'm blind? If anyone has a solution to this it would be greatly appreciated.
  24. GregWelt

    APEX Keystone Mission - Music

    Hello forum, I am not sure if this is the right forum to ask but I have been searching everywhere without success. I am looking for the name of the song (or a youtube link/file URL) that is triggered when playing the Keystone-Mission when crossing the road. In this playthrough you can here it The video starts at 11:00 where the main theme of the song plays although the song's beginning is roughly 40s earlier. I hope someone can help me <3
  25. Apex released a jungle terrain, and gave CSAT forces jugnle camo skins. Meanwhile NATO received only a single vehicle with jungle camo skins, the prowler. Any mission with NATO ground vehicleson Tanoa would look pretty bad without mods, since they would all have a bright sand color/arid camoscheme. This seems to be the last update, they even added jungle camo nets to most AAF ground vehicles (and AAF doesn't belong so much on Tanoa, but I appreciate the camo and the flexibility it gives for making missions). They did, thankfully, give pacific/olive/green skins to NATO armored vehicles.. buuuttt... It doesn't seem like they plan on finishing the reskins. The hunter and all HEMMT truck variants are still in dire need of a fitting camo color. They gave us a jeep with a 5.56mm mounted LMG, but they can't give us properly colored NATO MRAPs that they should have given us when Apex released??? The way they word their release candidate notes, specifying "armored", makes me think that Arma 3 will be "finished" in an unfinished state, and hunters and HEMMTs will just never belong on Tanoa without mods.
×