Jump to content

Search the Community

Showing results for tags 'arma'.



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
  • DayZ Italia's Lista Server
  • DayZ Italia's Forum Generale

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

  1. So, I used the following code to add cruise misssles to aircraft: this addWeaponTurret ["weapon_VLS_01",[-1]]; this addMagazineTurret ["magazine_Missiles_Cruise_01_x18",[-1]]; If the Code is added to like a rhino MGS or something it works fine, but if added to eg. the Gryphon when trying to lock on to the laser it just has the 4 corners around the laser but doesnt actually lock it.
  2. Hi, let me start off and say that this has been a journey. I've been able to finally figure out most of the cost table stuff besides a few things. been trying this off and on for a couple years now, and each time I've given up until now. Lets start off with the basics: 1: Generating a cost table on the Wiki you can read into this, but ["A3_Characters_F_BLUFOR", "A3_Soft_F_MRAP_01"], "ods"] spawn BIS_fnc_exportCuratorCostTable; is the example they use that is supposed to create a paste-able table, but when you run this code, or atleast when I did, I recieved an error. Turns out the code on the wiki is wrong, and it requires an additional open bracket to complete the line of code. So it should look something like this I highly recommend using any script-supported text editors like notepad++ [["A3_Characters_F_BLUFOR", "A3_Soft_F_MRAP_01"], "ods"] spawn BIS_fnc_exportCuratorCostTable; - You may interchange A3_Characters_F_BLUFOR and A3_Soft_F_MRAP_01 with any other addon Cfg Patch name. ex: "JLTS_characters_DroidUnits" (quotations needed for each Cfg.Patch) If you don't know how to find Cfg Patch names: In Eden Editor go to "Tools" in the top left, then "{} Config Viewer". Locate by scrolling "CfgPatches". Here you will find all CfgPatch names. Scroll through and search for any that have a unit you recognize from an addon https://imgur.com/a/fFjBBsQ insert each CfgPatch name with quotes into the above code. ex: [["JLTS_characters_DroidUnits", "JLTS_characters_DroidArmor"], "ods"] spawn BIS_fnc_exportCuratorCostTable; In notepad++ or whatever you use, save as init.sqf if you haven't created a mission yet or want to start fresh, start a new game and save it named as whatever you want. Locate that mission folder in C:\Users\"x"\OneDrive\Documents\Arma 3\missions and open it. Copy and paste the init.sqf you just created into the mission folder. (you can use the init.sqf for other scripts too so keep that in mind) open the mission through the editor and it can take anywhere from 30 seconds to 15 minutes, depending on systems and what you are generating. (This morning it took me 30 seconds but last night it took anywhere from 5-15 minutes) Once the mission loads, alt tab, then as per the wiki: I recomend OpenOffice Calc, I got it for free, but if you use Excel change out "ods" for "xls" Just Ctrl + V the first box and boom. You have a generated Cost Table for all of your addon units that haven't been configured for zeus. Change whatever values you want in the system, then follow the prompts from the wiki. So an example of this would be: https://imgur.com/a/IHxgivx Now we need to open up init.sqf with our notepad++ or whatever you use, and remove the previous code that we used. in my example, I would Ctrl + C JLTS_characters_DroidUnits, and paste it into init.sqf. Go to the next line and repeat for JLTS_characters_DroidArmor. The init.sqf will look something like this https://imgur.com/a/haPjjwg (NOTE: the notepad is titled new 1, that's because my init.sqf is full of testing code right now. Make sure you have init.sqf as the name.) I recommend we combine the two into one variable, as this is meant to be for the same zeus and it makes typing the final code out easier. so taking my example code, in the next line input: _CIS = [_JLTS_characters_DroidUnits + _JLTS_characters_DroidArmor] (_CIS can be any variable you decide) this makes the value _CIS equal both variables. Finally, we move on to importing it back into the game. To my understanding, the final code on the next line should look like this: [master_zeus,_CIS] call BIS_fnc_curatorObjectRegisteredTable; (master_zeus can be any variable named zeus) https://imgur.com/a/To2no40 My issue is for anyone who might understand: I don't get any errors, but none of the units become available to use, when before the units showed up in zeus, just had incorrect costs. After running this command, any available units before are no longer available (I have Game master set to addons present in scenario). Why are they disappearing from my zeus's ability to purchase/place them? My final code looks like this: https://imgur.com/a/hIJu7Z1
  3. Unit name: 1st Force Reconnaissance Company Time zone/location : EST/BST Saturday 3 PM EST / 20:00 BST - Weekly Event Sunday 2 PM EST / 19:00 BST - Weekly Event Game mode preference : Mil-sim/Authentic/PvP & PvE Contact us @: https://discord.gg/TrRzFN8q Website address:https://sites.google.com/view/1stforecon/main-page?authuser=0 Short description: We are 1st Platoon of 1st Forecon, a modern Arma community counter point to the real world unit. We enjoy playing Arma to the best of our abilities and the best of the games abilities. This means structure and tactics, yes, we have a rank structure, no, we do not incorporate saying "yes sir" or "no sir" or any of that, but we do believe in respect and following a chain of command. Our goal is to play as realistically as we can since we do try to attend PvP events. No matter what at the end of the day it is a game, and we do treat our members with the same curtesy as we would give ourselves, i.e. your life comes before your online unit. That being said, we do wish to invite members who will attend events, show up to trainings, pay attention, learn, ask questions, present themselves properly, and incorporate what they have learned in trainings properly into the events/campaigns. We hope to gain a larger community of members who have the same goals to be professional, proper, and proactive. If you wish to join us, look up our discord and become a Trainee at any point and someone will reach out to get you inducted, from there you will proceed through a BRC (Basic Recon Course) where you will learn the basics of our SOP. (Standard Operating Procedure) After attending a few trainings and events and showing you will be an active and attentive member of the unit, you will go through an Evaluation where you will be expected to lead a small group of Marines to complete an Objective while fighting active members of the unit as an OPFOR, if you pass, you will become a full fledged member of the unit. Obviously from there our standards go up a bit, we expect you to be even more professional and presentable in order to make a good impression on any incoming trainees. We hope to see you learn and grow with everyone and perhaps take on more professions within the unit. There are a few different specialties to choose from: 0307 - Expeditionary Ground Reconnaissance (EGR) Officer 0317 - Scout Sniper 0321 - Reconnaissance Marine L11A - Fleet Marine Force Reconnaissance Corpsman L02A - Fleet Marine Force Reconnaissance Independent Duty Corpsman 7513 - Pilot, Helicopter, AH-1Z/UH-1Y 7523 - Pilot VMFA, F/A-18 Qualified Language: English
  4. Hi ! I want to know if it is possible to import mods from another game (Call to Arms) to arma 3 ? Edit 3D models, configs, animations and templates and make it for Arma 3.
  5. I'm part of a UKSF unit leading Induction and Recruitment while also helping with training. We're strictly 18+ so very mature group of people from all over the world. Our average age would currently be 24+ At present we have 30+ members, and that number is growing, so we all get to know each other very well. As a unit we have been operating for 4 years now and we are not stopping any time soon, so all very seasoned Arma 3 veterans. At present we are exclusive to Arma 3, no plans to move to Reforger. We are ambitious though, so we plan on transitioning to Arma 4 when that becomes available. We focus on mil-sim realism and team play with a huge emphasis on the team play and coordination. We have training at 1900hrs BST every Wednesday, with optional workshops throughout the week. And operations at 1900hrs BST every Sunday During the downtime we have a lot of other events for other games going on throughout the week. such as DayZ, HOI4 and much more. Current mods include the best that comes to Arma 3 such as: RHS, CUP, ACE, KAT Medical, 3CB and much more, with all mods being optimized for our equipment available to us at any given operation and training session. If this is something you may be interested in, you can find more details on our website, plus a join link for our discord if you wish to join us. Our Website!
  6. I would like to present my compilation of various improvements for ArmA: CWA made by different authors. It is conceived as a complex universal compilation of works by various authors, which do not introduce drastic changes into the game, but make it more modern and increase the replayability of old missions and campaigns, as well as allowing you to complement other mods. The compilation includes not only long-known releases, but also their improved versions, a selection of game elements from various addons and mods adapted for the base version of the game, as well as rare and some new additions. Among other things, here you can find a large selection of various retextures of standard models of vehicles, weather, roads, effects and other things, Nogova with Berghoff's vegetation, high-quality Kolgujev retexture from Marcomio and, probably, the most interesting - standalone-pack of detailed models from ArmA, replacing their standard counterparts. All these works are collected together, classified, illustrated, adapted to each other and ready for an easy and convenient installation. For this purpose, the assembly is released in three versions: two ready-made (full and optimal) and one that allows you to manually assemble it to your taste and needs (for experienced players and developers). It is recommended to pay attention to the accompanying files - they often contain useful information, as well as not to neglect the video and sound settings - they can significantly affect the final result. I will be glad to feedback, criticism, bug reports, suggestions for expanding the compilation. I have no doubt that I missed some work that could be included in it, and definitely did not notice any bugs, so feedback is welcome. Link for screenshots and download: https://drive.google.com/drive/folders/1O10-c-Kb83sTjWGTVXWFcYmtZa6GTlkM?usp=share_link
  7. Please please please bohemia you need to sort out being able to ban xbox players. It is sullying the experience for many people. Allowing the, although few, players who keep on trolling by Shooting out tires on supply trucks/destroying vehicles at spawn hindering match progress, and now, with free building, using up supply's at the start of the match too stop progress. Also using grenades to TK at spawn and then themselves respawning to avoid negative ranking to avoid a temp ban. Spamming proximity and radio with nonsense and racist comments, spaming text chat with racist comments. Please do something or at least update us on some progress to fix this issue. You will lose players otherwise and with the limited amount of people playing I don't think you can afford to lose many. Today I hopped on, as soon as I joined I noticed a players name and knew the match and matches thereafter would be filled with trolling and greifing. I knew that once that player would be temp banned eventually he would just return with on of his many alt accounts, of which I have captured video evidence of from a previous match. The guy then when on an alt and did the same stuff to the opposing side. The same game there were at least three people actively tolling and greifing make gameplay pretty much impossible. Fix it it.
  8. Error i started getting earlier today i verified and still no change
  9. maty105

    Cant make lobby

    Hi there, me and my friend decided to try out multiplayer in CWA. However, I'm using multiplayer in this game for first time in my life, and we came across a problem: When I click on "New", it brings me back to the multiplayer main menu, switching from sockets to DirectPlay does nothing, just increases the loading time and in the end still brings me back to the multiplayer main menu. Is there any solution for this? I couldn't find anything on the internet, not even on Steam discussions and yes, I have port forwarding enabled on my router
  10. I have a problem on Arma resistance on mission hostages when I start the mission I IMMEDIATELY got damage once the mission started. And of course that made the player lie because of damage and cant stand up please how can I fix this(THIS ALWAYS HAPPENS EVERYTIME I START THIS MISSION!!!)
  11. Hi! I am the creator of mods: Some video showcase: (yt https://www.youtube.com/channel/UCzH5xr1B46LITU6w-fGfD3A) Here you can leave any suggestions and wishes for changing something or adding something!
  12. Hi community and developers. Love the game and most of us are grateful to finally be able to play the Arma series on console. But ..and it's a big but. Developers need to look at other fps games and how they successfully adapted the control scheme to work with a game pad. Going your own way thinking this will be intuitive or groundbreaking in fluid controls...usually don't work. We as console players are used to the most universal layout used in shooters..it goes like this: (Only using Xbox layout this time around) A = jump/vault B = crouch/prone X = reload/interact Y = switch weapons Left trigger = aim Right trigger = fire Left trigger press down (L3)= sprint Right trigger press down (R3) = melee D-pad for quick access and or chat/ping Right bumper = grenades Left bumper = chat/ping or weapon wheel Left trigger + L3 (press left analog down) lean left. Left trigger + R3 (press right analog down) lean right. This is the basics. Now, you got some of it right but other stuff are horrible and far from intuitive. Even if it's a milsim it must be smooth and fun to play. Milsim means one wrong step and your dead...you can not have a weird control layout. Muscle memory takes time. Imagine if PC players was forced to play with the arrow keys instead of wasd..or if space bar could not be bind to jump or action. It could work ..but would take getting used to. Now, with that said, here are my idea on a good setup (please reply and let them know your prefered layout). A = jump/vault B = crouch/prone X = reload/interact Y = switch weapons Left trigger = aim Right trigger = fire D-pad for quick slots Left trigger press down (L3)= sprint Right trigger press down (R3) = activate chat on or off Left bumper hold for = weapon wheel and channel switch (navigate with right analog and release) Right bumper = hold for free look Left trigger + L3 (press left analog down) lean left while aiming Left trigger + R3 (press right analog down) lean right while aiming. For me it would be ok if i could only go full lean.. i don't use lean adjustments. The rest of the controls as it is now works with the buttons (double press third person etc). What we console players often ask for is an X and Y slider seperatly so that we can tweak both horizontal and vertical aiming. Having just one slider for both is a recipe for disaster and just ends in horrible aimcontrol and micro adjustment in long distance firefights. The other major problem i have is the sluggish and weird animations/movement. My controller and my actions don't seem attached to the character. For instance, when i crouch and look around (not free look) the body follows after awhile..the body adjust after where i look in a sluggish way. When sprinting it's slower when looking around, not as responsive. Hard to put into words. But this have been in every bohemia game I've played so i guess it's the engine. You seriously need to play and test it more with a controller. Hire some console gamers for a summer job and let them try it out. Some random points, both new and what we talked about. 1. No "save loadout" in conflict. Re-arm every time you respawn. 2. Custom controls 3. Tighter controls and less clunky movement/aiming 4. Mods for multiplayer 5. Russian camo or allow to use FIA in C&H and conflict. Seriously..the Russians look ugly in their brown 1972 "suit" and helmet. The FIA at least look cool. 6. Scope option for AR, 2x or 3x 7. Vault needs an overhaul, very clunky. 8. When crouched and looking around, the character does all kinds of weird follow up movements. Distracting. 9. Better ballistics and explosions. 10. Switch between weapons on Y. 11. X/Y aim option seperatly 12. Game master C&H and bounderis to fight in just specific parts of the map. 13. Loadout screen and save option at main menu. Would be so much easier (still available to change in game/on server of course). 14. A.I can spot you way to easily in bushes. Needs rework. 15. More camouflage options for both factions 16. APC and more armored options. 17. Friend and lobby invite. 18. Stay on server once the game is won/lost and wait for reload/match restart. 19. Fuel consumption? Vehicle damage? Right now i can hit a tree going 100km/h and just reverse and keep going. 20. Cross play with PS5 once it's released 21. Attachment on weapons like flashlight or grips. 22. ( I know i will get flamed for this) A fully rotational compass on the bottom middle screen for easier call outs during hectic firefights. (It's a game..some advantages to real life must be added). Thank you for reading. PS. My thumbs hurt..typing from a mobile phone
  13. Hello everyone i just installed Arma 3 yesterday (again) The problem: When i want to join a server it says: "you are running are running a different version of Arma3 use version 2.08" So on the right bottom the client says im running version 1.8. So i just downloaded it yesterday and it downloaded an old version. Steam doesnt update it. What i tried to fix this: - Searching on google (found nothing that can fix this) - Set arma3 on development build in properties - Reinstalling arma 3 - Restarted steam few times (maybe it would update arma but no) Laptop info: MacBook Pro (13-inch, 2016, Two Thunderbolt 3 ports) Processor 2 GHz Dual-Core Intel Core i5 Memory 16 GB 1867 MHz LPDDR3 Video Intel Iris Graphics 540 1536 MB
  14. So I’m new to coding in general and thought I’d try out scripting in arma 3, I have written code but it does not do as intended. And I don’t even know if I’m using the right commands, I’m done trying to rack my brain scouring BI script command list and random YouTube videos if anyone know how to achieve this please post it here or reference me to where I can get help. so here’s what I want to do: 1. Give variable name in Eden editor. 2. Get variable name given in Eden editor for reference in script as a “class”. 3. Use variable name “class” to run a specific script. plot example: Object (unit) variable name given in editor = Assault //in script code to get the variable name of “This” unit. code to check if the variable name is equal to a specific class name. code that executes another code if the check returns true. if you have any insight on how to achieve this or even close to it please reply
  15. What does this script do? This script spawns random reinforcements (group from 4 to 10 men) of the desired faction at the given position, and they will automatically redirect to players position (at the moment of script call, as Last Known Position). Does it work in multiplayer? Yes, it works in MultiPlayer and SinglePlayer Parameters _faction → String → Faction (see below) _sideReinforcements → Side → Side of reinforcements of which can be → west, east, independent _spawnPosition → Position → Center position of where you want to spawn reinforcements _rangeOfSpawn → int → Range of spawn from spawnPosition (if you like to narrow spawn just set this as 1) _addVehicle → Bool → Add a support vehicle Do you think side can be redundant? Maybe, but faction has been added secondly as I didn't want plain CSAT reinforcements when I'm playing on Livonia with Specnaz units, you know? I know not all RHS units have been added, I probably will, no guarantee. If you do script, you can.. Just look at the code, it's easy. Supported Factions SUPPORTED VANILLA FACTIONS: BLU_F NATO (standard) OPF_F CSAT (standard) IND_F AAF (standard) BLU_T_F NATO (Apex, pacific) OPF_T_F CSAT (Apex, pacific) IND_C_F Syndikat (Apex) BLU_W_F NATO Woodland (Contact) OPF_R_F Specnaz (Contact) IND_E_F LDF (Contact) SUPPORTED MODS FACTIONS: rhs_faction_usarmy_d RHS USAF (USA Army D OCP) rhs_faction_usarmy_wd RHS USAF (USA Army D UCP) rhs_faction_usmc_d RHS USAF (USA Army D MARPAT) rhs_faction_usmc_wd RHS USAF (USA Army WD MARPAT) rhs_faction_msv RHS AFRF (Russia MSV EMR) rhs_faction_vdv RHS AFRF (Russia VDV DES) rhssaf_faction_army RHS SAF (KOV Digital) Tban EricJ Taliban Units Edit: Added Syndikat faction IND_C_F (26/02/2022) How do I call the script? Let's say I am a BLUFOR player and I call for reinforcements, just put the following line in a activation trigger line: ["BLU_F", west, getMarkerPos "spawnMarkerPoint", 1, true] execVM "reinforcements.sqf"; Let's say RHS AFRF (Russians) enemy called reinforcements instead, those reinforcement will proceed to my position to engage: ["rhs_faction_msv", east, getMarkerPos "russianReinforcementsSpawnMarker", 1, false] execVM "reinforcements.sqf"; reinforcements.sqf //Uncomment following if used as function //params["_faction","_sideReinforcements","_spawnPosition", "_rangeOfSpawn","_addVehicle"]; //Uncomment following if used as script _faction = _this select 0; _sideReinforcements = _this select 1; _spawnPosition = _this select 2; _rangeOfSpawn = _this select 3; _addVehicle = _this select 4; _unitsArray = []; _vehicleArray = []; _unitsArrayToSpawn = []; _counter = 0; //Parsing factions switch (_faction) do { //Vanilla case "BLU_F": //NATO (standard) { _unitsArray = [ "B_Soldier_SL_F", "B_Medic_F", "B_Soldier_GL_F", "B_Soldier_F", "B_HeavyGunner_F", "B_Soldier_LAT_F", "B_Soldier_M_F", "B_Soldier_AR_F", "B_Soldier_LAT2_F", "B_Soldier_UAV_F" ]; _vehicleArray = [ "B_MRAP_01_hmg_F" ]; }; case "OPF_F": //CSAT (standard) { _unitsArray = [ "O_Soldier_SL_F", "O_Medic_F", "O_Soldier_HAT_F", "O_Soldier_GL_F", "O_Soldier_F", "O_HeavyGunner_F", "O_Soldier_F", "O_Soldier_M_F", "O_Soldier_AR_F", "O_Soldier_UAV_F" ]; _vehicleArray = [ "O_MRAP_02_hmg_F" ]; }; case "IND_F": //AAF units { _unitsArray = [ "I_Soldier_SL_F", "I_Medic_F", "I_Soldier_GL_F", "I_Soldier_F", "I_Soldier_AR_F", "I_Soldier_F", "I_Soldier_AT_F", "I_Soldier_AA_F", "I_Soldier_M_F", "I_Soldier_UAV_F" ]; _vehicleArray = [ "I_MRAP_03_hmg_F" ]; }; case "IND_C_F": //Syndikat units { _unitsArray = [ "I_C_Soldier_Para_1_F", "I_C_Soldier_Para_2_F", "I_C_Soldier_Bandit_7_F", "I_C_Soldier_Bandit_1_F", "I_C_Soldier_Para_5_F", "I_C_Soldier_Bandit_6_F", "I_C_Soldier_Bandit_5_F", "I_C_Soldier_Bandit_4_F", "I_C_Soldier_Para_6_F", "I_C_Soldier_Para_3_F" ]; _vehicleArray = [ "I_C_Offroad_02_AT_F" ]; }; case "OPF_T_F": //Chinese CSAT (Apex) { _unitsArray = [ "O_T_Soldier_SL_F", "O_T_Medic_F", "O_T_Soldier_HAT_F", "O_T_Soldier_GL_F", "O_T_Soldier_F", "O_T_HeavyGunner_F", "O_T_Soldier_F", "O_T_Soldier_M_F", "O_T_Soldier_AR_F", "O_T_Soldier_UAV_F" ]; _vehicleArray = [ "O_T_MRAP_02_hmg_ghex_F" ]; }; case "BLU_T_F": //NATO Pacific (Apex) { _unitsArray = [ "B_T_Soldier_SL_F", "B_T_Medic_F", "B_T_Soldier_GL_F", "B_T_Soldier_F", "B_T_HeavyGunner_F", "B_T_Soldier_LAT_F", "B_T_Soldier_M_F", "B_T_Soldier_AR_F", "B_T_Soldier_LAT2_F", "B_T_Soldier_UAV_F" ]; _vehicleArray = [ "B_T_MRAP_01_hmg_F" ]; }; case "BLU_W_F": //NATO (Contact) { _unitsArray = [ "B_W_Soldier_SL_F", "B_W_Medic_F", "B_W_Soldier_GL_F", "B_W_Soldier_F", "B_W_HeavyGunner_F", "B_W_Soldier_LAT_F", "B_W_Soldier_M_F", "B_W_Soldier_AR_F", "B_W_Soldier_LAT2_F", "B_W_Soldier_UAV_F" ]; _vehicleArray = [ "B_T_MRAP_01_hmg_F" ]; }; case "OPF_R_F": //Specnaz (Contact) { _unitsArray = [ "O_R_Soldier_SL_F", "O_R_Medic_F", "O_R_Soldier_LAT_F", "O_R_Soldier_GL_F", "O_R_JTAC_F", "O_R_JTAC_F", "O_R_JTAC_F", "O_R_Soldier_M_F", "O_R_Soldier_AR_F", "O_R_JTAC_F" ]; _vehicleArray = [ "O_T_LSV_02_armed_F" ]; }; case "INF_E_F": //LDF (Contact) { _unitsArray = [ "I_E_Soldier_TL_F", "I_E_Medic_F", "I_E_Soldier_GL_F", "I_E_Soldier_F", "I_E_Soldier_AR_F", "I_E_Soldier_F", "I_E_Soldier_AT_F", "I_E_Soldier_AA_F", "I_E_Soldier_M_F", "I_E_Soldier_UAV_F" ]; _vehicleArray = [ "I_E_Offroad_01_covered_F" ]; }; case "rhs_faction_usarmy_d": //RHS USAF (USA Army D OCP) { _unitsArray = [ "rhsusf_army_ocp_squadleader", "rhsusf_army_ocp_medic", "rhsusf_army_ocp_grenadier", "rhsusf_army_ocp_rifleman", "rhsusf_army_ocp_autorifleman", "rhsusf_army_ocp_rifleman", "rhsusf_army_ocp_javelin", "rhsusf_army_ocp_marksman", "rhsusf_army_ocp_aa", "rhsusf_army_ocp_uav" ]; _vehicleArray = [ "rhsusf_m1025_d_m2" ]; }; case "rhs_faction_usarmy_wd": //RHS USAF (USA Army W UCP) { _unitsArray = [ "rhsusf_army_ucp_squadleader", "rhsusf_army_ucp_medic", "rhsusf_army_ucp_grenadier", "rhsusf_army_ucp_rifleman", "rhsusf_army_ucp_autorifleman", "rhsusf_army_ucp_rifleman", "rhsusf_army_ucp_javelin", "rhsusf_army_ucp_marksman", "rhsusf_army_ucp_aa", "rhsusf_army_ucp_uav" ]; _vehicleArray = [ "rhsusf_m1025_w_m2" ]; }; case "rhs_faction_usmc_d": //RHS USAF (USMC D) { _unitsArray = [ "rhsusf_usmc_marpat_d_squadleader", "rhsusf_navy_sarc_d_fast", "rhsusf_usmc_marpat_d_grenadier", "rhsusf_usmc_marpat_d_rifleman", "rhsusf_usmc_marpat_d_autorifleman", "rhsusf_usmc_marpat_d_rifleman", "rhsusf_usmc_marpat_d_javelin", "rhsusf_usmc_marpat_d_marksman", "rhsusf_usmc_marpat_d_stinger", "rhsusf_usmc_marpat_d_uav" ]; _vehicleArray = [ "rhsusf_m1025_d_s_m2" ]; }; case "rhs_faction_usmc_wd": //RHS USAF (USMC WD MARPAT) { _unitsArray = [ "rhsusf_usmc_marpat_wd_squadleader", "rhsusf_navy_sarc_wd_fast", "rhsusf_usmc_marpat_wd_grenadier", "rhsusf_usmc_marpat_wd_rifleman", "rhsusf_usmc_marpat_wd_autorifleman", "rhsusf_usmc_marpat_wd_rifleman", "rhsusf_usmc_marpat_wd_javelin", "rhsusf_usmc_marpat_wd_marksman", "rhsusf_usmc_marpat_wd_stinger", "rhsusf_usmc_marpat_wd_uav" ]; _vehicleArray = [ "rhsusf_m1025_w_s_m2" ]; }; case "rhs_faction_msv": { _unitsArray = [ "rhs_msv_emr_sergeant", "rhs_msv_emr_medic", "rhs_msv_emr_grenadier_rpg", "rhs_msv_emr_rifleman", "rhs_msv_emr_arifleman_rpk", "rhs_msv_emr_rifleman", "rhs_msv_emr_rifleman", "rhs_msv_emr_aa", "rhs_msv_emr_LAT", "rhs_msv_emr_marksman" ]; _vehicleArray = [ "rhs_tigr_sts_msv" ]; }; case "rhs_faction_vdv": { _unitsArray = [ "rhs_vdv_des_sergeant", "rhs_vdv_des_medic", "rhs_vdv_des_grenadier_rpg", "rhs_vdv_des_rifleman", "rhs_vdv_des_arifleman_rpk", "rhs_vdv_des_rifleman", "rhs_vdv_des_rifleman", "rhs_vdv_des_LAT", "rhs_vdv_des_aa", "rhs_vdv_des_marksman" ]; _vehicleArray = [ "rhs_tigr_sts_3camo_msv" ]; }; case "Tban": { _unitsArray = [ "TBan_Fighter6", "TBan_Fighter5", "TBan_Fighter4", "TBan_Fighter3NH", "TBan_Fighter2NH", "TBan_Fighter1NH", "TBan_Fighter3", "TBan_Fighter2", "TBan_Fighter1" ]; _vehicleArray = [ "Tban_O_Offroad_01_F" ]; }; case "rhssaf_faction_army": { _unitsArray = [ "rhssaf_army_m10_digital_sq_Lead", "rhssaf_army_m10_digital_medic", "rhssaf_army_m10_digital_gl", "rhssaf_army_m10_digital_rifleman_m70", "rhssaf_army_m10_digital_mgun_m84", "rhssaf_army_m10_digital_rifleman_m70", "rhssaf_army_m10_digital_rifleman_m70", "rhssaf_army_m10_digital_spec_aa", "rhssaf_army_m10_digital_spec_at", "rhssaf_army_m10_digital_sniper_m76" ]; _vehicleArray = [ "rhssaf_m1151_olive_pkm" ]; }; }; _groupSize = [4,10] call BIS_fnc_randomInt; _unitsArray resize _groupSize; //Random position around given position _randomSpawnPosition = [_spawnPosition, random _rangeOfSpawn, random 360] call BIS_fnc_relPos; //Spawning group _spawnedGroup = [_randomSpawnPosition, _sideReinforcements, _unitsArray] call BIS_fnc_spawnGroup; _waypoint = _spawnedGroup addWaypoint [position (allPlayers select 0), 0]; _waypoint setWaypointBehaviour "AWARE"; _waypoint setWaypointCombatMode "RED"; _waypoint setWaypointSpeed "FULL"; _waypoint setWaypointType "MOVE"; _waypoint setWaypointStatements ["true",""]; _spawnedGroup setCurrentWaypoint [_spawnedGroup, 0]; //Spawning vehicle if (_addVehicle) then { _vehGroup = [_randomSpawnPosition, _sideReinforcements, _vehicleArray] call BIS_fnc_spawnGroup; _wp = _vehGroup addWaypoint [position (allPlayers select 0), 0]; _wp setWaypointBehaviour "AWARE"; _wp setWaypointCombatMode "RED"; _wp setWaypointSpeed "FULL"; _wp setWaypointType "MOVE"; _wp setWaypointStatements ["true",""]; _vehGroup setCurrentWaypoint [_vehGroup, 0]; };
  16. I´m playing Arma since more than 15 Years, and in all the time a lot of my friends were saying, "yeah the games great and all, but we dont want to buy an gaming pc just for that, we stay on console". Well, i know it sounds stupid to suggest that, but it would be awesome to play arma on all Plattforms, so Playstation 5, Xbox and so on. I know the controller is not a possible alternative to the keyboard, but for me it could be a possibility to create scenarios on my PC, and when i want to play with some friends on Console, they can join in, but only got simple movements, so they can't go through all the stances or so. A little less complexisity but more of an "casual" shooter for non-pc gamers.
  17. I had a Function wrote by a friend that I need to call in a MP mission file. The Function is saved in the file already in a sub folder called functions and is called fn_MoveObject.sqf How would I go about calling this function in an SQF? Also is there a better way to call an sqf on a MP mission than "call{Ham addaction [ "Check in with the Sergeant", { "HamTalk.sqf" remoteExec ["execVM", 2];}];};"
  18. Sulon480

    [sp campaign] Operation Fikoj

    Author: Sulon480 Version: 1.0 ChangeLog: 1.0 (current) Operation Fikoj is a simple campaign taking place on Malden. The plot is simple; As a Soviet soldier you most lead your men in 12 various missions and slowly take control of the island. Fun fact: I'm not a pro, just an OFP fan, been making missions for a few years but only for myself. My friend persuaded me to make a full campaign from several missions, so here it is. As I said earlier it's not comparable to the official campaigns for example (no fancy cutscenes) let's just say, that I just binded some missions together in chronological order. Features: 12 missions with briefings which connect to each other. Hope you'll have fun playing it! 😉 Known Bugs: no Required Addons: -none link: https://drive.google.com/file/d/1iyIiorHi54k5-os1YfEtrgg_5xT0xQlB/view?usp=sharing
  19. Hello, i have the problem that I lose connection to every server after 5-30 minutes. I then get the message "no message received for ... seconds" and after that "lost connection to host". I already tried to reinstall the game, restart my router, turn off firewall and antivirus and reinstall battleye manually. Now I'm out of ideas. Would be great if someone finds a solution or has a tipp. It makes the game unplayable for me.
  20. https://gyazo.com/641c0226cab80eac03d04a2c5fed444b Above is an SS of my notepad. Trying to activate a trigger through my SQF with triggerActivated TurboBomb; Below are the settings of that trigger. https://gyazo.com/ce586674451bc34a810bb59350bb9817 I tried triggering the E2 setDamage [1, true]; from the sqf itself but that didnt seem to work.
  21. Who we are? Hell Bois is a group of players seeking to ultimately have fun, we are a fairly new group but our member list is ever so growing we're looking to meet new people and have a good time all around. We are based in Australia but anyone is welcome (English is a must) What we do? Every week we host a Milsim campaign, during the week/on our off days we host mini games, side operations and more! Why join? Put simply we want you to come have fun! Whilst we're serious in our milsim we're taking a more relaxed approach to the community as a whole and are putting an emphases on fun. How to join? Click on the link provided: DISCORD Requirements ► Must have a legal copy of Arma 3 ► Must speak proficient English ► Must have a working Microphone ► Willing/Able to play during Australian time zone (AEDT/AEST)
  22. I understand that there are other threads with their own replies, but I figured that - for the sake of convenience - I'd add my own personal details for this error code should none of the replies from other threads help! Attached are the RPT. file for the most recent startup fail + screenshot of the screen itself when the startup process comes to a halt. I hope this gives some insight, been this way for a little over two weeks 😞 Thank you in advance for ANY tips! I really do appreciate it. RPT. file: https://justpaste.it/9i30j Screenshot of Error Message: https://justpaste.it/6u3f0
  23. If you are looking for a good feeling server, please don't hesitate to configure mods and join the [TCF] wasteland server on A3. Underrated gameplay with no limits and full tactics and combat freedom with missions, loot crates, a lot of vehicles and gear. Good starting server for a new players to learn and feel full potential of ArmA3 gameplay. Server made by FANS for FANS! Steam Group https://steamcommunity.com/groups/tcfwasteland Discord https://discord.gg/G6f3UHcb2F Required Mods https://steamcommunity.com/sharedfiles/filedetails/?id=2572205181 Supported Mods https://steamcommunity.com/sharedfiles/filedetails/?id=2572210741
  24. Hey, I'm new to this so please bear with me. I am looking for front view images of 2035 UN Peacekeepers (Canadian Army, woodland camouflage pattern with blue UN helmet covers and blue vests). I currently do not have any access whatsoever to Arma 3, and I'm trying to get a good visual reference for my writing project that features the lore of Arma 3. here's what I found originally, however they are only the back view and side view: https://steamuserimages-a.akamaihd.net/ugc/832512818119062953/5E7FE33B2D02C81A883B7BA1ACE39FDB7E63C94C/?imw=5000&imh=5000&ima=fit&impolicy=Letterbox&imcolor=%23000000&letterbox=false and https://steamuserimages-a.akamaihd.net/ugc/832512818119062328/61B9BA541F45BE1FAB2808AE829F04D96AB72CD3/?imw=5000&imh=5000&ima=fit&impolicy=Letterbox&imcolor=%23000000&letterbox=false Preferrably with a MX rifle (RCO hybrid optic mounted) thanks for working with me, I hope you all are doing well!
×