Jump to content

Search the Community

Showing results for tags 'artillery'.



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

  1. I have HIMARS long range artillery set up and periodically shooting two positions - first one is static (no problem there) but the second is a moving vehicle. I am using standard "fire mission" waypoints and a "cycle" waypoint so they cycle forever. I tried to "attach" the waypoint to the vehicle I need to be shot but it got only an artillery barrage when on starting position but no more if its moving or staying on a new position. I also tried to give the waypoint a name but it is not an object, nor marker so no clue how to change its position apart from manually attaching it to the vehicle.
  2. Hi guys! I'm new to Arma and I'm really into playing artillery. I established in Eden Editor 1 soldier as an FO ( so as him I can provide for myself target coordinates) and 1piece of M4 Schorcher. So after I receive my target coordinate as an FO I calculate the range (elevation from the M4 Schorchers rangetable) and direction then I open fire to the target. As I wrote I do everything manually and it works well but my problem is that somehow I want to fire with all the 6 Schorcher at the same time with my calculated values (elevation and direction) to simulate a fire for effect. My question is, is it possible to control all the 6 gun at the same time or it isn't possible? Thanks for your help.
  3. I try to script simple mortar shooting to marker "attached" to the player. The idea is to give the possibility to evade the mortar barrage if the player is moving and not camp on one place. First I make a marker called "mortar_barrage" and make it change its position to player position every 20 sec. in initPlayerLocal.sqf : while {true} do { sleep 10; "mortar_barrage" setMarkerPos (getPos player); }; So far so good, works well. Then I make a trigger which fires if the enemies detect player. On activation : _mortargrp = createGroup [east, true]; _mortargrp setBehaviour "COMBAT"; _mortar = [(getMarkerPos "mortar_1"),350,"I_G_Mortar_01_F",_mortargrp] call BIS_fnc_spawnVehicle; _mortar commandArtilleryFire [(getMarkerPos "mortar_barrage"), "8Rnd_82mm_Mo_shells", 3]; But it does not want to shoot! I tried to make waypoint like _wp1 = _mortargrp addWaypoint [(getMarkerPos "mortar_barrage"),0]; _wp1 setWaypointType "SCRIPTED"; _wp1 setWaypointScript "A3\functions_f\waypoints\fn_wpArtillery.sqf"; Does not work too ... What is wrong? 🙄
  4. Hi there! I need a non-damaging repeating mortar or artillery fire for a beach assault. I currently am using on a repeatable trigger: bomb="M_Mo_82mm_AT_LG" createVehicle (getPos ied1); deletevehicle ied1; That is just my basic idea for an explosion. Either will work for me. But if there is a way to just spawn the shell dropping in WITHOUT damage, I would like that too. Just need the special effect. And without a .sqf file preferably. Just using triggers on repeat. Any help is appreciated. Thank you
  5. hello , i have run a test (about showing a target scene what there an ai must start fire 3 round of mortart to my target via mortar) on single player and multiplayer on my pc in both of ways it work successfully, camera start moving and show mortar and the ai start fire fine, but when i up the mission to server for test the ai wont fire and just camera show he and he still not fire, i test this codes on server : _camera = "camera" camcreate position h2; _camera cameraeffect ["internal", "back"]; _camera camPrepareTarget g2; _camera camCommitPrepared 5; g2 commandArtilleryFire [position han2, "8Rnd_82mm_Mo_shells",3]; _camera camPreparePos position h2_1; _camera camPrepareFOV 0.700; _camera camCommitPrepared 6; _camera camPrepareFOV 0.700; waitUntil {camCommitted _camera}; _camera cameraEffect ["terminate","back"]; camDestroy _camera; for sure i test another command as : _camera = "camera" camcreate position h1; _camera cameraeffect ["internal", "back"]; _camera camPrepareTarget g1; _camera camCommitPrepared 5; g1 doArtilleryFire [position han1,"8Rnd_82mm_Mo_shells",3]; _camera camPreparePos position h1_1; _camera camPrepareFOV 0.700; _camera camCommitPrepared 6; _camera camPrepareFOV 0.700; waitUntil {camCommitted _camera}; _camera cameraEffect ["terminate","back"]; camDestroy _camera; both kind of codes work just in single and mp mod in my pc, and not work on server. any help have my regards.
  6. Ok guys, my problem now is as follows: I want to set the number of rounds from an artillery support provider (virtual) to just one. And I also want to know if there's a way to enable only the mk6 mortar to be used, because there's other options there, and I just want the mk6, and that players only use it too... Someone can help me? Tks in advance!
  7. Hello everyone! Can you please tell me if there is a script for calling artillery by clicking on the map for multiplayer? I need that the map interface in the window be called up and that you can click on the target and that the action of calling an artillery strike can be tied to an object (for example, to a radio station lying on the table) and, if possible, a limited number of times. Thanks everyone and sorry for my english.
  8. Sean Newberry

    First Armored Division

    Come join the First Armored Division, we currently have 12 people, but pull in the corp 30-40 in events and drills! We have many mos, everything from motorized rifleman to a helicopter gunner. We primarily focused on land fighting but will have the occasional apache in missions. There is no age limit, only requirement is to have arma 3 and speak ok english. https://discord.gg/NsUyQXjQ4z To join copy and paste this link into your browser and accept the invite.
  9. InsanityGamer

    Satchels Only

    If i wanted to make a script that requires a satchel to be placed on a radio tower to destroy it, what would be a method i could use? Basically im trying to make it so players cant just shoot it with CAS or Artillery. someone has to physically walk up and place a satchel on the tower to blow it up.
  10. In this topic I will display a simple design of Artillery Module. The "directly" in the topic means the artillery support is created by vehicles' directly shooting and the trajectory of shell strictly follows OFP original rule (namely airFriction is -0.0005*v^2 and gravity is 9.80665m/s^2). The "shotShell" in the topic means the CfgAmmo objects applied in this module have same "simulation" value: "shotShell". The (physical) rule (simulated in OFP) of "shotShell" is simple and totally known by now (August 17th, 2020), while rules of "shotRocket" or "shotMissile" are more complex and still remain unknown parts. See for more information. By motion equations one can solve the final range basing on initial data (direction and length of velocity vector and difference in height. The topography should be taken into consider when necessary, remain to readers), but the ODEs don't have elementary function solution, and I failed to build an appriximately one. The problem is "Cauchy Problem", we solve the final data basing on initial ones. And it's hard to solve conversely problem, like that we've known the range and difference in height between shooting position and the being attacked position, it's hard for us to solve the initial velocity, especially when we're still lacking of analysis solution of the ODEs. (Actually we can solve converse problem as an "Cauchy Problem" as well. If we know the final velocity and position, we can take converse velocity as initial velocity, and solve the ODEs whose form is totally same as while the coefficient shoult take "minus airfriction", namely if airFirction is -0.0005, the coefficient in converse problem should be +0.0005. However, mostly the final velocity is unknown. We might wish to solve the initial velocity basing on known range, which, however, provides only position information but not velocity.) I thus applied the numerical method in 2 aspects: 1. Use RK4 (Runge-Kutta-4-order) method to solve the ODEs and obtain final position/velocity. The time step is set as 0.05. This value is accuracy-and-efficiency-balanced one, with few meters' error. If set 0.1 then error will reach more than 10 meters with only half time cost, and set 0.01 can obtain precise result with no more than 1 meter error, but cost 5 times computation. 2. The relationship between elevation difference and range difference is locally linear (see figure below, which is a graduation of a initSpeed 180m/s weapon on elevation 15°~30°), and "Newton method" can thus be applied. Given Proper initSpeed and elevation, one can obtain precise enough range with no more than 4 meters' error by at most 5 iterations. The Proper elevation is provided by OFP vehicles in my Artillery Module. Roughly speaking, I designed a model for "target" object, and ask AI vehicles aiming at it. OFP will provide a predicted elevation when aiming, this elevation is precise only when initSpeed high and distance low, but it's enough as a "initial value" in iterating. The "Newton method" calculates the range basing on this initial elevation, and plus 1° (or -1° , depending on whether the range is less or more than actual distance between the vehicle and target. Mostly the range given by initial elevation is less) then calculates another range. Due to the locally linear relationship, a new elevation can be calculated by these 2 elevations and ranges, following a new range obtained again by RK4, which ends the first iteration. The terminate condition can be either that error no more than a threhold (like 4 meters) or having iterated 5 times (5 times is enough if initSpeed and elevation is proper, at least in OFP for shotShell). The error is defined as the absolute value of difference between iterated range and actual range. 3 videos displaying its effects: See more details below.
  11. Hi all, I've been stuck on this AI artillery problem for half a day now. I have 2 enemy mortars I wish to activate via trigger and script (separately, by that I mean they aren't grouped together and I have 2 triggers calling the script once for each mortar). Testing the trigger and script in game, I was originally getting an error for undefined variables (both _mortar and _target), but now I'm getting an error for "undefined variable in expression _target". In each trigger, I have: script = [mortarNumber, getMarkerPos markerNumber] execVM "eFireMission.sqf"; which, after some tuning, I turned into: markerTarget1 = getMarkerPos marker1; null = [mortar1, markerTarget1] execVM "eFireMission.sqf"; (does this difference do anything? I originally assumed that using "getMarkerPos" in the passed variable would work since "getMarkerPos" returns an array, doesn't it? And for my script, I incorporated a script I saw on the forums through a google search for artillery scripts from 7 years ago (user 2nd Ranger's post in that thread) for an MP mission I'm making for my friends and I: _mortar = _this select 0; //--- name of the mortar, arg passed from trigger _target = _this select 1; //--- central point around which mortar hits, arg passed from trigger if (isServer) then{ for "_i" from 0 to 8 do { _radius = 50; //--- random radius from the center _pos = [ (_target select 0) - _radius + (2 * random _radius), (_target select 1) - _radius + (2 * random _radius), 0 ]; _mortar doArtilleryFire[ _pos, getArtilleryAmmo[_mortar] select 0, 1 ]; sleep 2; //--- delay between rounds }; }; What am I doing wrong? Any help is appreciated, this is my first time scripting for Arma 3, I'm a little lost
  12. So like when I enter a trigger I want that the AI that is sitting in a artillery raise the barrel by some degrees and then shoot. If anyone knows another way make a AI shoot with a artillery on a target from like 200m please tell me. Why do I need this? I am trying to make a mission with a BM-21 artillery and I want it to shoot at a target inside of the minimum shooting range like 100m away or something like that. I can use doArtilleryFire but it will only work if the target is above the minimum shooting range
  13. Hello, I am one step away from finishing my first mission. BLUEFOR vs OPFOR PvP. I’ve watched and read a few tutorials on the subject, but i can’t get this to work. These are the details: each side has 3 ATV’s. ATV_Alpha, ATV_Bravo and ATV_Charlie for BLUEFOR. ATV_One, ATV_Two and ATV_Three for OPFOR. If they get fully destroyed, they respawn after 10s. When a team destroys one of three enemy ATV’s, they get arty support for reward, for example 7 rounds. Destroyed ATV respawns. After that team uses those 7 rounds, they dont have arty support available any more. If that team again destroys any of three enemy ATV’s, they again get arty support with 7 rounds available. And so on and so on...forever. If a team does not use the 7 rounds available and they destroy another ATV, they still have the maximum 7 rounds or 9 or whatever. I managed to set it up with artillery support modules and tasks, but after the ATV is destroyed, and one barrage is fired, support remains available. Also, eventualy the support providing artillery runs out of ammo. I am using RHS american and russian artillery but i dont care about where are the rounds coming from i just want those 7 rounds to hit around the area that a player has marked. Any help or advice would be greatly appreciated. EDITED: i expressed what i need abit clearer here... i hope
  14. REA [Redeploying Engage and Annex] 🔹 Very Friendly Community - 8 Units, One Objective a week. 🔹 We teach Newcomers how to play all the time. 🔹 Current map: Clafghan. 🔹 Current enemy: Taliban. 🔹 Next map: Lingor. 🔹 Next enemy: Russians. 🔹 No attendance required, but always helpful. 🔹 15+ Player Operations and growing. REQUIREMENTS Working mic is HIGHLY recommended Must be able to speak, understand, and type in English. Must be willing to contribute to the unit. Whether it's helping staff or showing up for ops, we like it when our members are a little more hands on. WHAT WE OFFER A friendly community of like-minded individuals who are teammates on the field and friends off of it. An environment where Quality of members is more focused on than Quantity. We like it when a lot of members join our operations, but do not like it when members start ruining the fun of everyone else. DIVISIONS/ROLES 164th Infantry Company - The main attacking force of REA. Typically composed of those that have a thirst for action. 62nd Force Recon Company - Secondary attacking force of REA, also specializes in Recon, and works closely with the 164th. 10th Mountain Division - Main Recon unit, typically located on mountain sides, not sky-lining. Primarily keeps over watch for other divisions. Can consist of a few Snipers/Spotters. 82nd Para Infantry - Airborne Unit, Focuses on jumping out of aircraft near combat areas/behind enemy lines via. C-130 or CH-47. Able to survive using limited resources. 300th Menewa Waya - A special unit that specializes in CQB, commonly clearing buildings and extracting subjects and/or hostages. 16th Air Cav - Specializes in anything air related. Redeployment, insertion/extraction, gun runs and more. 9th Armored Division - This division specializes with anything armored, aka tanks. 195th Artillery Detachment - This division supports from the ground, whether it be self-propelled artillery vehicles, or via. ground mortars. SCHEDULE ➤ SUNDAY: Post-op training ➤ MONDAY: Open for training/small ops ➤ TUESDAY: Open for training/small ops ➤ WEDNESDAY: Open for training/small ops ➤ THURSDAY: Open for training/small ops ➤ FRIDAY: Recruiting/Pre-op training ➤ SATURDAY: Main Op 4:30pm EST If Saturday is unavailable, then it will be pushed to Sunday. INTERESTED? If you are interested in joining us or coming in for a chat, please join our discord or our teamspeak. Discord Link: https://discord.gg/mT7mJ3y TeamSpeak IP: 75.117.242.188
  15. Hi I'm trying to find a script I can use to allow AI placed artillery to fire at an assigned target with parameters such as fire delay, disable auto-aim, move etc,. The script needs to work with the Iron Front artillery pieces. So far I have found and slightly modified a script by fatty that does what I want. The problem is the shells land some 700 meters short of the assigned Eden targets. I've moved the artillery targets further back and even changed the height of the targets. I also tried changing the targets from the invisible helipad to an invisible car and even tried game logics. The AI fired shells seem to land at the same short distance. The tested artillery piece I used is both the 10.5cm and Flak 36 guns. I'm at a loss to try and debug the issue. I also tried increasing the skill of the AI gunner and no dice. I even tried going into one of the guns myself while using the artillery computer and I couldn't even get the shells to land near the target area. Does anyone have any ideas on how to get reasonably accurate gun fire that works with the Iron Front artillery?
  16. Hi everyone, long time forum lurker. This is my first script to be released and i hope it won´t be the last. This script was and idea that came to my mind when a wrong click on a zeus mission sent a full 82mm mortar barrage on a squad. Thats when i came with the idea, even if it isnt completly realistic, of creating something that would give the players some time to react by displaying a small marker on the map to warn them of a possible round coming down on the area. I dont use any kind of eventhandlers, and if im not mistaken, all the calculations are run server-side. The script only works for mortars and artillery as easier to predict its target, where mlrs or rocket propelled rounds have an engine providing acceleration. (i might try to get them to work in the future) Radar Script 0.3 Hope you enjoy it, and if suggestions or ideas come up, write them down and if its in my skill range, ill try my best to add them. Future ideas: -Remove markers after hit. -Predict launch position after X rounds fired from around the same area. Released under APL-SA CHANGELOG: Version 0.3 #Changed -Fixed bug where markers wouldnt delete because of being stored the wrong way. -More optimizations were made. -Tested in Dedicated server and LAN. No script errors and no FPS drops while running. (Set at 5000m range and 6 second interval). Tested with 16 simultaneous players in VeteranMod. I can safely say that this boi saved lots of lives that day, exactly the purpose i built it for. Version 0.2 #Added -Radar_MrkR --- Its job is to mark the radar´s position and its range so its visible to everyone in the side of the radar. #Changed -All markers (Radar pos and range, and prediction markers) now only show to the side the radar belong to,making this viable for PVP. Markers are created globally but its alpha is set to 0 and only changed to 1 by remoteexec. -Several optimizations marked by sarogahtyp Version 0.1 BETA #Added -Added a floor height for the radar to detect rounds to simulate blind-zones too close to the radar.(Default Radar Pos ASL + 500m) -Added death range. This value shows the "sure range" of death around the round´s impact. If you are within this range, you die. THANKS sarogahtyp for showing me how to check class configs -Added filter to only predict artillery rounds and avoid tank shells or anything else - AGAIN THANKS sarogahtyp for the code -Markers are now stored and deleted in order when rounds impact #Changed -As artillery radars cant locate a single round, the threshold for detection has been increased from "> 0" to "> 2". -Position of the round was changed from getposATL to getposASL, this showed improved precision. -The radius of the marker now corresponds with the indirectHitRange X 5 #Removed -Replaced Radar_Alcance for Radar_CalcImpact.sqf by sarogahtyp Version 0 Release
  17. Steam workshop link - https://steamcommunity.com/sharedfiles/filedetails/?id=1618325439 MISSION Russians have invaded the small peaceful island of Malden, and are holding it's citizens captive! Execute missions to weaken the russian presence on the island and set it's citizens free! A randomly generated campaign, execute missions and lead the United States Armed Forces to capture the island of Malden and win the war against the Russian Federation. FEATURES Random AO - One of Malden's cities, the main airport, or the military island base will be selected to attack. Finish one and another is generated. Random Selectable Side Missions - If you want a bit more excitement, you can choose a side mission from the mapboard at base. It will open the map and show you all available missions. Side missions range from diffusing a bomb on your officer, to stealing an enemy supply truck, to finding and rescuing a downed pilot, plus much more. Every time you open the side mission map, there will be different missions at different locations, so if you don't like what's available, just close it and reopen it. Civilian Population and Traffic - There is a heavy civilian presence on Malden, its citizens populate most of the island and are driving cars (shocking!), and walking around everywhere. They aren't hostile to our forces. In fact the reason we are on malden is for them, as the russians have invaded and are making their life a living hell. Recruitable AI - You can recruit AI units from the officer at base. Please allow them a few seconds to get deployed and join your group. If you wish to dismiss a unit, simply walk up to him and select 'Dismiss.' Mobile Respawn - There are 3 mobile respawn vehicles, a 4 door Humvee, an unarmed M113, and an unarmed MRAP. They should have green letters above them saying M.H.Q. 1, 2, or 3. When you die, simply choose which M.H.Q. you wish to respawn on, or just choose to spawn at base. If a M.H.Q. is destroyed, it will respawn at base. Revive - You can be revived by your teammates if you are incapacitated. There is a 5 minute window to be revived before you die. Players can only revive other players, A.I. units do not revive or become incapacitated, they simply die. HALO Jumping - You can HALO Jump by choosing H.A.L.O. Jump from the mapboard at base. You can also choose H.A.L.O. Group to jump with your squad members. CAUTION: if you have joined another players group, it will force ALL GROUP MEMBERS to jump as well! Dynamic Group System - Press the Teamswitch key (Default "U") to open the group menu. Here you can create/disband your own group, invite other players, join or leave another players group. Virtual Arsenal - There is an ammobox at base with virtual arsenal, and all MHQ vehicles are virtual arsenal enabled. You may also call in a supply drop which has virtual arsenal. AVAILABLE SUPPORT (Called with 0-8 on Radio) Supply Drop - An ammobox will drop near you and be marked with green smoke. This box will have virtual arsenal. UAV Recon - Click a location on the map and after the data from the UAV comes in, all hostile and friendly units will be marked for 3 minutes. These markers will not be updated, so be aware units may move around. Artillery, Mortars, Carpet Bomb - Choose one of the 3 from the support menu and click on the map to rain down some good ol' american pop rocks on the enemies. Caution when using in cities, as it may result in lots of civilian casualties, our mission is to protect the civilians, not kill them. Laser Designated Missile - If you have a laser designator, you can call in laser designated missile strikes. You must keep your laser designator on the target until the missile strikes. (There might currently be a bug that removes the missile if you turn the designator off). Fast Travel Transport Helis - A UH-60 and MH-9 are available to transport you around Malden. When you select the heli you want, it will mark an LZ near your location and head that way. Green smoke will automatically be popped at the LZ when the Heli is near. Once you get in, choose "Give a LZ to the Pilot" and it will head to that location. After a few seconds, the screen will go black and you will fast travel to the location. If at any moment the heli becomes bugged out, choose "Detonate Heli Transport' from your action menu to destroy the heli and make the support available again. Paratroop Reinforcements - Click on the map and a squad will paradrop on your location. After the squad has landed, they will fall under your command (Or your group leader's, if you are in another player's squad). Requires both RHS USAF and AFRF. Credits: DUWS by Kibot. Modified Version by BigShot. EOS script & Occupation mission by BangaBob Civilian scripts by Enigma ATM Airdrop HALO script by PokerTour. Defuse Bomb script by Cobra4v320. Thanks to Kempco for the mapsize script. Thanks to FrankHH for correcting the typos. Thanks to Yumsum, Porte and Phil for all their patience in testing.
  18. Hi guys, I have a MP mission that has a capture zone on the USS Liberty and when the capture zone flips the commander of the side that owns the zone gains access to the Mk45 that is placed on the bow of the ship. My problem is that the Mk45 only exists for Blufor and as a result whenever an Opfor unit comes within range the Mk45 lets loose regardless of which faction has access to the artillery support. I would like the Mk45 to ignore everyone but the support requester, I played around with using the virtual artillery but it doesn't give the persistence that I'm after and it likes to spawn an Mk45 in the water and just overall looks bad. I've tried a few different disableAI in the units init, not sure what to try next. It seems that the Ai for drones or terminal accessed units is unique and I'm not finding much on how to control them.
  19. Hi there people, Is there a way to make a static artillery emplacement such as a mortar have an infinite range across an entire map via a script? I don't like using the virtual combat support modules as I like to hear/see the artillery being fired from a base camp far from the front lines. I've used the ALiVE mod and MCC forward observer artillery interface before however these both still require the artillery gun to be in range. I don't want to have to move Artillery vehicles across the map to get within range ya see. Thanks in advance, - Jack
  20. Hi there people, Is there a way to make a static artillery emplacement such as a mortar have an infinite range across an entire map via a script? I don't like using the virtual combat support modules as I like to hear/see the artillery being fired from a base camp far from the front lines. I've used the ALiVE mod and MCC forward observer artillery interface before however these both still require the artillery gun to be in range. I don't want to have to move Artillery vehicles across the map to get within range ya see. Thanks in advance, - Jack
  21. Hello all, I'm trying to get the following script to work, but I get the following error when the AI tries to call artillery fire: 'scalar |# |bool array string 0xfcffffefo': Error unknown operator bool Script: I'm not a scripter, so I'm not sure what the exact problem is. Any assistance appreciated!
  22. I'm trying to use BIS_fnc_fireSupportVirtual to work with RHS artillery assets (the m119a2 arty canon for the moment). But so far with no luck. I got the magazine classnames by getting in the m119a2 and using currentMagazine vehicle player; while changing the type of ammo in the artillery computer. I obtained these: "HE-FRAG M1" //"RHS_mag_m1_he_12" "Illumination M314" //"rhs_mag_m314_ilum_4" "Smoke M60A2" //"rhs_mag_m60a2_smoke_4" But using [player,"rhs_mag_m60a2_smoke_4",10,1,0] call BIS_fnc_fireSupportVirtual will not work. While [player,"32Rnd_155mm_Mo_shells",10,1,0] call BIS_fnc_fireSupportVirtual (vanilla ammo) works. I was wondering if maybe I was not using the correct classnames. Any ideas?
  23. Hey. I am clueless. I want to make a loop for an AI mortar. The goal is to have the mortar shell a specific place every 30 seconds om e activated by a blufor present trigger. And it has to work in mp. Needless to say, as a very fresh recruit in arma I'm pretty lost. I understa d coding fairly well but this, I don't even know where to start... Thankfull for ideas or help, Ernst Alfred
  24. ITC Land Systems Introduction ITC Land Systems is a mod that aims to add depth to some of arma’s ground based systems, with our main focus being player crewed artillery systems and anything related to them. Features Battery Control System Commander's Fire Control System for SPH and MLRS platforms. Self Propelled Howitzer Ammo Handler & Autoloader Improved Gunner's Sight for SPH and MLRS platforms. Improvements to AR2 Darter UAS. New 155mm and 152mm howitzer ammunition including 3 new special purpose types including 2 PGMs and 1 new anti armour shell. New Multi Option Fuzes for artillery shells including: Proximity, Point Detonate, Delay, and Timed functionality. CRAM system for vanilla Phalanx and Sea Sparrow systems. Overhaul to vanilla artillery accuracy. Variants of vanilla IDF systems with these features implemented. Media Changelogs V1.01 Hotfix Documentation and Tutorials Detailed information on the features added by ITC Land Systems can be found on our wiki Requirements CBA & ACE 3 Compatibility Download ITC Land Systems can be found on the Steam Workshop Contact To keep track on the mod’s progress, discuss its features, or have any questions, feel free to join the ITC Addons Discord! If you’d like to keep track of what we have planned for future versions, you can have a look at our project’s trello page!
  25. 10th Armoured Cavalry Brigade As a combined arms unit the 10th Armoured Cavalry Brigade possess four distinct elements that undertake different actions against the enemy. 10th ACB gameplay is developed thoughtfully, so — Infantry, Armour, Artillery, Air, Logistics must work in concert to achieve the Commander's Intent of each mission. Our unit main weekly event takes place on Saturdays between 9:15pm EST – 11:30pm EST, with almost daily more stuff going on throughout the week aswell. We welcome all experience levels into our unit and place an emphasis on continued training, learning, and leadership development. We require that members of our unit are active at operations and weekly training events as much as they can. If you are interested in learning more about us, but are not quite ready to apply as a recruit, we recommend you come to our teamspeak server **(ts3.10thacb.com)** and talk with one of our members. To apply simply go to our website **(http://www.10thacb.com)**. **Basic requirements for joining our group:** * Must be 21 years old (18+ is also accepted) * Must be willing to attend a 3-hour basic training class within 30 days of joining. * Must be willing to commit to playing regularly. We don’t expect or require you to attend every event we hold, but we do expect you to be as active as you can and to stay in touch with your unit so we can plan. * Must be a team player and check your ego at the door. **Our current needs:** * 11B Infantry man [highly needed] * 68W Medical personal [needed] * 19B Armour crew [highly needed] * Rotary Pilots [needed] * Fixed Wing Pilots [Not needed] * 13B Artillery personnel [needed] **Other Links** * Mod pack - http://steamcommunity.com/sharedfiles/filedetails/?id=1206976808 * Arma 3 Units Page - https://units.arma3.com/unit/10thacb If you have any more questions feel free to message me! SSG Brook J-1 Recruitment Chief 10th ACB
×