

ESAc_matador
Members-
Posts
1605 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by ESAc_matador
-
Put them on the ramp cold. select non controllable in the right menu. in advanced task (right window menu too), clic in triggered actions. THen, in orders, there is an option "start". Then go to triggers and create a trigger ONCE-TIME MORE (or any event) - push IA task You will see the task to start there.
-
F-5E TIGER II CAPTURE THE FLAG USING NEVADA ON SATURDAY (20:00 UTC)
ESAc_matador replied to Azazel's topic in DCS: F-5E
Can you post the address of the TS? -
F-5E TIGER II CAPTURE THE FLAG USING NEVADA ON SATURDAY (20:00 UTC)
ESAc_matador replied to Azazel's topic in DCS: F-5E
Dumb question. What hour is the event? What time is UTC? Edit. Ok i lookes for that in internet. Heeh Put a slot to me -
Looks great!
-
Yew, this has been confirmed
-
F-5E TIGER II CAPTURE THE FLAG USING NEVADA ON SATURDAY (20:00 UTC)
ESAc_matador replied to Azazel's topic in DCS: F-5E
i m in -
That would be great, and out of my skills... but, would be awesome.
-
Not that i know... but there should be a way to do it.
-
For Gazelle. I have another scrip released, very alpha, but it works. You can give position to CAS fligths. I need to adapt it yet, and I want to learn MOOSE yet.
-
I am new programing so my code is everything but elegant. Feel free to use it or part of it!. Checking the speed is a good idea. To be completed, would be better with a chronometer, so you have 5 minutes for record, in total. Have you guys tested? I will do a real mission with it, with navigation and Random Spawned enemies
-
First of all, For CAP flights, disable in advance task the CAP definition, this makes the AI go for any aircrafts. Then create another advance task. To orbit from wp 2 to 1, and another order, SEARCH THEN ENGAGE IN ZONE... put the zone where you like, and put the aircraft making orbits. I ll do one for you, watch carefully the advance task of the F18 at the right panel. You see how blue aircraft do not attack the red one because is not in the area, where is given instructions. CAPS.miz
-
I have seen some specifications n the F5 real Manual, the angle of the cameras in the F5 is 41° so I made it work with that angle. How this works?? easy!. You have a menu via F10, called RECON FLIGHT, this has two submenus. - START RECORDING: it will be taking pictures every 3 seconds displaying a message "RECORDING", during one minute, you will receive a message saying STOP RECORDING, TYPE FULL". You can do as many times as you want, but for entertaining purposes, until I fix it, I would use just 3 o 4 "shots", once you do 2 or 3 times, come back home!!!. If the aricraft is banking or pitching more than 15° the Camera will not work. (we interpret the picture is wrong). - REVEAL PICTURES: by pressing this, there will be a message with all information about enemy units collected. Once you land, just select this option, and write the info in a paper. You can do it during fligt coming back, if you want, but this would not be so realistic. See attached how the info is displayed. Do not make HUGE recon missions because you can leave no space for dsiplay!!!Or just do not to put many many groups in the area, there is a line for group. This is a buisy airbase... you can see. The aricrafts are groups non activated, SAMs, Air Defenses, Trucks, Tanks... The camera got everything inside a radius, depending on the altitude. High altitude, and low altitude recon, has its own adventages, depending on the threat expected. Higher, you get more info, but you have other possible enemies and SAMs coming at you. Lower, you have small caliber an IR missiles... up to you!!!!! Also, it uses LOS, so if you fly low, and there is a mountain you will miss the target. REmember that any good recon pilot, uses the camara and visual!!! TO INSTALL> You need Mist, and call your group name and aircraft name "recon1" like in the mission. For squadrons that like long campaigns, this is really funny, collecting info before launch an attack. And plan according the collected data. planerecon.lua recontest1.0.miz
-
Very interesting, and funny. I made lots of navigation, it is very important for the attack role, to learn how to navigate properly. Also, in my missions, i put many restrictions, No flying zones, and Dangerous zones, you avoid them via navigation. For instance corridors, to get the enemy lines. Every bird outside the zone, will be shot down. . This is like real life, you can put some enemies in friendly non flying zone area, such as, near big cities, or airports, or bridges. Try that, and the inmersion be for bombing, hunting, is massive. Instead of, take off, heading to enemy, bomb, and rtb.
-
Mmmm i ll se what I can do. I have almost finahed a really cool recon script. I ll post a demo with what I have now... It puts all units you overflow in a table (there is a radius depending on the altitude, I have some problema with this, at the moment it is fixed, predefined before flying). I need a chronometer, so you can switch on off the camera. At the moment you have 5 shots of one minute each. When you land, you "reveal" the photos and it gives you numer of units in groups, location (avg pos) and type of units. Really funny If you are flying a campaign. Then you plot the enemies in a map and prepare your attack fligth with your mates (or alone), only with the info given.
-
Hello Guys. I have a need for a Scritp I am doing. I want to do the following, via F10 I will start a chronometre. Then, I want to be able to stop it via F10 Menu too, and keep the postiion. Then I want to resume... at the end, when it has let say 300 seconds there is a flag. I was thinking in adding a vaule of 1 to a flag each second... but seems quite weird solution...
-
And commandos insertion.... (UK)
-
You got the point. If at least we have some rockets!
-
ME: unit groups to relocate once they under fire
ESAc_matador replied to sea2sky's topic in User Created Missions General
Upload it here!t -
hello Grimes. I am back from hollydays, and I am again with the Recon Camera Plane... what happen is when I try to combine the getUnitLOS with results gotten from getUnitsInMovingZones it does not work. Separately, they work fine, and I can get the results expected. I am putting all results in a table of units called targets, after the mission I process it, and it works fine. The problem is, I first do: redunitsrec_insidezone = mist.getUnitsInMovingZones(redunits , blueunits, _reconradius , 'cylinder' ) so I get all red units in the moving zone, this works fine. After that, I do mist.getUnitsLOS(blueunits,2,redunitsrec_insidezone,2,12000) but seems like he is not using redunitsrec_insidezone. if I put redunits instead of redunitsrec_insidezone redunits = mist.makeUnitTable({'[red][vehicle]'}) instead of redunitsrec_insidezone it works fine, so the problem is localized. Here is all it works fine... Here is all the script function getUnitsRecon() local redunits = mist.makeUnitTable({'[red][vehicle]'})-- all red vehicles. local blueunits = mist.makeUnitTable({'recon1'}) -- this is our recon aircraft local Position_vec3 = Unit.getByName('recon1'):getPoint() local _elevation = land.getHeight({x = Position_vec3.x, y = Position_vec3.z}) local _height = Position_vec3.y - _elevation local _reconradius = math.sin(0.50) * _height -- with this snipet we get the instant height. --trigger.action.outText(_reconradius,20) local redunitsrec_insidezone = mist.getUnitsInMovingZones(redunits , blueunits, _reconradius , 'cylinder' )-- i am traying to get all units inside the _reconradius. This works fine... it gets the info LOSData = mist.getUnitsLOS(blueunits,2,redunitsrec_insidezone,2,12000)-- now I want to see which of the units in redunitsrec_insidezone are line of sight. for k, v in pairs (LOSData) do -- This works, I have tested. local tabledata = LOSData[k] for j, w in pairs (tabledata.vis)do local targetinLOS = tabledata.vis[j] targets[#targets+1] = targetinLOS end end trigger.action.outText(mist.utils.tableShow(targets),5) end
-
Adding more functioning TACAN stations to DCS World
ESAc_matador replied to Ebs's topic in How To Mod for DCS World
Can we put a Tacan in a non airfield place? -
Yes. It works fine, sorry for the post.