Jump to content

dark_wood

Members
  • Posts

    442
  • Joined

  • Last visited

Everything posted by dark_wood

  1. I'm curios, how much time will take your mission? At 30 kts it won't be so far from initial point (30 knots is almost 56km/h). Anyway, from Waypoint Actions you can change waypoint: click on Stennis, add your waypoints, then select a waypoint, go to Waypoint Actions (right side), choose perform task, then "go to waypoint" As an alternative: set a zone around carrier in ME set ONCE > your group outside zone > Group AI OFF (carrier) + flag 1 = true - this should stop it (speed 0) when you return, switch it back set ONCE > your group inside zone and flag 1 = true > Group AI ON (carrier) - speed back to 30kts I just hope that Group AI OFF/ON works with naval groups, i'm not at my PC and can't test it
  2. Hi, can you be more clear about "Task Push "activate group""? This option is usually used if you checked "uncontrolled". For "Late activation" just do: ONCE > second flag is less than 6 > group activate Mig-29 Maybe you should set that random flag to be 0 or 1, then just do: ONCE > second flag value equals 1 > group activate Mig-29 and also check the other option (for debugging): ONCE > second flag value equals 0 > message: "Flag value is 0 - no Mig-29" Test the mission several times, to see that random flag works.
  3. https://forums.eagle.ru/showthread.php?t=211393 https://forums.eagle.ru/showthread.php?t=141383
  4. no land on ground waypoint type for heli groups (and yes, i know about the advanced waypoint action "land" - that is just for land and go) can't change coallitions after mission creation we can't hide detection and danger zone circles please update triggers documentation
  5. In DCS, select "Mission" from right side, select one, then, on the bottom of the window you'll have 3 buttons: Cancel, Mission Planner, Start. In Mission Planner, you can do small adjustments to your mission. The units checked with "HIDDEN ON PLANNER" won't be visible here.
  6. Check if the airport have your plane in warehouse: - in ME, click on the airport - in right side, click FULL INFO button - find your plane type in the list (Type of Aircraft) and make sure is NOT set to 0 (Initial)
  7. As an alternative, you can bind some of F10 commands to a joystick button.
  8. You could try something like: ONCE > FLAG IS TRUE > SOUND TO GROUP - but you will need sound files (.wav or .ogg) If you reffer the F10 menu, then i don't know if you can trigger it without scripting..
  9. https://www.razbamsimulations.com/files/DCS-AV-8B-Harrier-Guide.pdf - page 92 (or search restart)
  10. Which Razbam plane?
  11. Try with "group dead" condition
  12. Yesterday DCS launched F14-B module on OB - do the update and see if you have it
  13. see here: https://forums.eagle.ru/showthread.php?t=209158 "Start a command prompt. Navigate to DCS install directory and then into the folder "bin". Run command "DCS_updater.exe update @openbeta". Finished!"
  14. Have you set the payload to escort?
  15. Solution 1 (less work) - set "Condition" for each group: SAM 1 (condition 20%), SAM 2 (condition 40%), etc. (no need to set late activation here). Each time you will start the mission you will have different groups, but it will happen only on mission start. If you want to delay when they activate, then: Solution 2- use random flag value: MISSION START > no condition > FLAG SET RANDOM VALUE (flag 1, values from 0 to 10 - for example) ONCE > FLAG 1 equals 0 and TIME MORE 120 sec. > GROUP ACTIVATE SAM 1 ONCE > FLAG 1 equals 1 and TIME MORE 360 sec. > GROUP ACTIVATE SAM 1, GROUP ACTIVATE SAM 2 and so on, until you cover all needed scenarios. Solution 3 - use "random" flag condition: MISSION START > RANDOM 30% and TIME MORE 30 sec. > GROUP ACTIVATE SAM 3 Solution 4 - combine all the above :) More info here: https://wiki.hoggitworld.com/view/DCS_editor_Randomization
  16. Yes, you are right, you can use goals for that.
  17. You can add it like static object: select "effects" then "smoke" - and i think (not sure) that you can hide/show it with "DEACTIVATE STATIC"
  18. Not very clear what you need (i can't check the mission file now), so i will try to guess an answer: --first, set the radio item triggers MISSION START > no condition > RADIO ITEM ADD (flag 1, value 1, activate targets) ONCE > FLAG EQUALS (flag 1 = 1) > SET RANDOM FLAG VALUE >flag 2, from 0 to 20 --then activate desired groups - 0 value will not activate anything --activate single groups ONCE > FLAG EQUALS (flag 2 = 1) > GROUP ACTIVATE (group 1) ONCE > FLAG EQUALS (flag 2 = 2) > GROUP ACTIVATE (group 2) ONCE > FLAG EQUALS (flag 2 = 3) > GROUP ACTIVATE (group 3) --activate multiple groups (clone first and update the data) ONCE > FLAG EQUALS (flag 2 = 4) > GROUP ACTIVATE (group 1), GROUP ACTIVATE (group 2) ONCE > FLAG EQUALS (flag 2 = 5) > GROUP ACTIVATE (group 2), GROUP ACTIVATE (group 3) --activate 5 groups ONCE > FLAG EQUALS (flag 2 = 12) > GROUP ACTIVATE (group 1), GROUP ACTIVATE (group 2), GROUP ACTIVATE (group 3) , GROUP ACTIVATE (group 4) , GROUP ACTIVATE (group 5) And so on, until you cover all desired combinations. I have set the random flag from 0 to 20, but you can set it to whatever you need, is up to you how many groups/units activate once.
  19. In the action panel (trigger section) you have "load mission" option - so you can create all needed scenarios in separated .miz files, then call them when you need: ONCE > UNIT DEAD (Mig 1) > Load Mission (first_mig_destroyed.miz) ONCE >UNIT DEAD (Mig 2) > Load Mission (second_mig_destroyed.miz) Not an easy solution, so maybe you should keep all things in a single mission.
  20. Is new, but still bugged
  21. just close the Liberation engine and open it again
  22. In ME, click the airport icon, then "Full info" button - you will see all aircraft models listed - be sure that "initial amount" is greater that zero
  23. I got some small suggestions for this great work: 1 - set the time in minutes in settings - you can do later something like: local a2a_respawn_time_min = userInput * 60 2 - maybe you should randomize those times too: a2a_respawn_time_max = math.random(60, 120); 3 - if we already have RAT here, why not add CAM (Civil Aircraft Mode)? - https://cam.em-key.de/ Those russian planes looks like crap compared to CAM. At the end, one question: when a random SAM is activated, i get a message to call some SEAD support - how i can do that? Thanks again for this great mission/work, :thumbup:
  24. And to be sure, trigger first a message: if trigger.misc.getUserFlag(1) == 1 then trigger.action.outText('Good job!' , 10) end Dcumentation: https://wiki.hoggitworld.com/view/DCS_func_getUserFlag
×
×
  • Create New...