Jump to content

609_Relentov

Members
  • Posts

    588
  • Joined

  • Last visited

Everything posted by 609_Relentov

  1. Added the following kneeboard for employing the AIM-9 Sidewinder and AKAN M/55 gun pod in both air-to-air and air-to-ground modes: AJS37 - AIM-9 AAM AKAN M55 GUNPOD.png
  2. Yep, I think you hit the nail on the head @Sedlo, much appreciated. Apparently by default the first time you edit one of your User Files (since this Map field was added), that drop down has "not set", and if you don't select something (e.g. All maps), it won't save your changes. I just did another update on another kneeboard of mine after setting that field properly, and the changes stuck. Not sure if this was posted somewhere (apologies if it was), but it would have been nice if us users got a warning about ensuring this new field has a proper selection before clicking Update ... Still doesn't explain why another of my User Files (kneeboard - https://www.digitalcombatsimulator.com/en/files/3318837/ ) was removed .
  3. Not sure what’s happening on the ED site, but I just noticed my A-10C II kneeboard user file (link in OP above) has been removed???
  4. @BIGNEWY thanks, it’s the AJS37 kneeboards, user file 3319591. It seems to be happening with other files as well; also sent you a forum message
  5. Thanks Rudel, strange, I deleted cookies on Edge, and tried again, still doesn't work. I then download/installed Chrome, logged in and tried on that browser, same result after clicking Update... this is really odd.
  6. Tried again today, still not saving to web site, even though when I click the Update button, it's displaying "File uploaded". Is anyone else able to save their User Files successfully?
  7. I made some updates to one of my kneeboards, and then clicked Update; when I go back to view the page, the old version text still shows (including the old zip file) without any updates saved. I tried this multiple times, no success.
  8. Added the following kneeboard for using the AIM-9 Sidewinder and AGM-122 Sidearm, along with the GAU-12 gun pod in both air-to-air and air-to-ground modes: AV8BNA - AIM-9 AGM-122 GUN.png
  9. I was looking at the hoggitworld SSE documentation, and I didn't see a method that would allow you to assign a country that was currently neutral (e.g. coalition.side.NEUTRAL) to the blue or red coalition (e.g. coalition.side.BLUE, etc.). Is this possible via scripting? The reason is that it might be nice if a script that required a specific country to be RED or BLUE but was instead NEUTRAL to be automatically assigned to the proper coalition at the start of the mission. I don't see that it's possible given what I've seen in the SSE documentation, and from doing some searches here, but wanted to double check in case someone was able to do this.
  10. I uploaded a new Zip, now version 1.4 I added two features: - Once an AI OpFor aircraft returns to a friendly/neutral base and lands, it will be de-spawned once the aircraft stops (there is a function that checks for this every 120 seconds) - A maximum of 24 AI OpFor aircraft can be spawned and active (alive) at a time, as defined by the glbMaxOpForSpawnable variable; If you attempt to spawn AI OpFor aircraft and it would cause the total number of active (alive) AI OpFor aircraft to exceed this maximum number, you will see a message telling you they cannot be spawned, until the number of active AI OpFor aircraft is reduced by attrition or they land and de-spawn Also made two fixes: - Previously the call signs for the spawned OpFor aircraft were fixed (e.g. Enfield11), and hadn't given it much thought, until I was testing and switched sides. Then I saw a bunch of "Enfield11" aircraft all over the place :). So, for OpFor aircraft spawned on the blue/alllied side, they will use more dynamic in-game call signs. Those on the red/axis side will use dynamic numeric call signs. - With the changes to the SA-342, the OpFor SA-342L and SA-342Mistral were spawning with no/missing weapons. They were corrected such that both are now SA-342L, one with cannon/rocket load out, one with Mistral loadout.
  11. Interestingly now it's working - I had another condition in that expression with the isActive, so that may have been the culprit. In any case thanks for putting up your code example to help re-affirm that it's working.
  12. Thanks, Kanelbolle, interesting that it works for you. I was utilizing isActive slightly differently, which was not working after the target groups/units were activated. for i, grp in pairs(coalition.getGroups(coalition.side.RED, Group.Category.GROUND)) do for idx, theUnit in pairs(Group.getUnits(grp)) do if (Unit.isActive(theUnit) == true) then -- late activation unit is active ... <do stuff> end end I can try it more how you are using the method/function and see how it goes.
  13. What about checking if a group set to late activation has actually been activated? From testing, when using isActive, if it's used on a group that is set to late activation, it returns false both before and after it's activated. I also tried isExist, but that will return true both on groups that are not set to late activation, as well as those that are (before or after activation). That's what I'm trying to figure out now (i.e. how to check if a group set to late activation has been activated or not). Thanks for any further suggestions...
  14. Thanks cfrag - I ended up coding a work around for what I was doing, but this is good info in that there is actually an addZone function (method) I hadn't known about :).
  15. Hmm, so I created a simple mission and added a trigger zone, and looking at the .miz file, I see the table is a bit more involved than I thought above: ["triggers"] = { ["zones"] = { [1] = { ["radius"] = 12070.08, ["zoneId"] = 495, ["color"] = { [1] = 1, [2] = 1, [3] = 1, [4] = 0.15, }, -- end of ["color"] ["properties"] = { }, -- end of ["properties"] ["hidden"] = false, ["y"] = 620280.80453354, ["x"] = -290504.63453896, ["name"] = "CAS search zone", ["heading"] = 0, ["type"] = 0, }, -- end of [1] }, -- end of ["zones"] }, -- end of ["triggers"] So, I presume I need to create a table with the properties above and append it to the zones table (which is appears to be in the triggers table). I'm actually just trying to create a temporary trigger zone (so I can then search for units within it), not a permanent trigger zone. Any additional thoughts on how best to create a zone via lua/SSE are appreciated.
  16. I'm trying to create a trigger zone in one of my scripts, and was looking at the hoggitworld wiki, which shows that a trigger zone table has the following format: ZoneTable Format TriggerZone = { point = Vec3, radius = Distance } In the trigger singleton class, I see a method getZone(), but when I used it against a table I created in the format above, it's not recognizing it as a trigger zone. Is there a method you must use to create a trigger zone, without having to create one manually within the mission via the mission editor?
  17. Can’t you simply park a couple of/few (supply) trucks near the launchers? Wouldn’t the launchers then just rearm using the supply trucks when they run out of missiles?
  18. Not sure if these are what you are looking for, but for using the FCR, I recently updated my AH-64D kneeboards for weapons employment to include the AGM-114L using FCR from the pilot / back seat and CP/G / front seat. Specifically, these kneeboards: AH-64D - AGM114L HELLFIRE PILOT WITH FCR-1.png AH-64D - AGM114L HELLFIRE PILOT WITH FCR-2.png AH-64D CPG - AGM114L HELLFIRE WITH FCR-1.png AH-64D CPG - AGM114L HELLFIRE WITH FCR-2.png AH-64D CPG - AGM114L HELLFIRE WITH FCR-3.png Please see this thread:
  19. I've added a three-page kneeboard for employing the AGM114L radar guided Hellfire using the FCR from the CP/G seat: AH-64D CPG - AGM114L HELLFIRE WITH FCR-1.png AH-64D CPG - AGM114L HELLFIRE WITH FCR-2.png AH-64D CPG - AGM114L HELLFIRE WITH FCR-3.png NOTE: Similar to the recent kneeboard above, as more FCR modes become available, including LINK mode (that will slave the TADS to the FCR NTS), I will probably make additional updates to this kneeboard. I've also made a very minor update to the following kneeboard, correcting part of the description of the IHADSS overlay display: AH-64D CPG - AGM114 HELLFIRE-1.png
  20. With the addition of the FCR (GTM mode), I've added a two-page kneeboard for employing the AGM114L radar guided Hellfire using the FCR from the pilot seat: AH-64D - AGM114L HELLFIRE PILOT WITH FCR-1.png AH-64D - AGM114L HELLFIRE PILOT WITH FCR-2.png NOTE: As more FCR modes become available, including LINK mode (that will slave the TADS to the FCR NTS), I will probably make additional updates to this kneeboard. Also, I plan to add a kneeboard(s) for employing the AGM114L radar guided Hellfire using the FCR from the co-pilot (CP/G) seat, but it may take a bit longer; thus, I wanted to provide this kneeboard sooner rather than later. ==================================================================================================== I've added a three-page kneeboard for employing the AGM114L radar guided Hellfire using the FCR from the CP/G seat: AH-64D CPG - AGM114L HELLFIRE WITH FCR-1.png AH-64D CPG - AGM114L HELLFIRE WITH FCR-2.png AH-64D CPG - AGM114L HELLFIRE WITH FCR-3.png NOTE: Similar to the recent kneeboard above, as more FCR modes become available, including LINK mode (that will slave the TADS to the FCR NTS), I will probably make additional updates to this kneeboard. I've also made a very minor update to the following kneeboard, correcting part of the description of the IHADSS overlay display: AH-64D CPG - AGM114 HELLFIRE-1.png
  21. Thanks for the comments FalcoGer, feedback is always appreciated. A few follow up points: - I'm assuming you are referring mainly to the two-page kneeboard I just made available this past Sunday, as you mention the FCR. Rocket and gun engagement procedures using FCR are not within the scope of this particular kneeboard, as noted in the name (i.e. just Hellfire) - As for having too much text, well, I guess that is a matter of taste :). As noted in the original post, "these are not official procedures, just what I've put together as a quick reminder on how to employ various weapons on the AH-64D". When I created these types of kneeboards for most of the modules I own, they were originally for my own personal use. I only made them available first to my squad, then to the DCS community as I thought they might be helpful to some who are new to this/these modules (or haven't flown them for a while) and can use some basic procedures to get them going. I am detail oriented, so I like having procedures laid out that I can follow, especially if it's been a while since I've flown a module and have forgotten most of the procedures - thus the details, some of which you find obvious. Lastly, one more point is that when I create these kneeboards, I have added actual device mappings, so I can quickly see what joystick/throttle/button box buttons/hats/axis/etc to use for given procedures. This is the primary reason the kneeboards seem "wordy". Then, I strip out the mappings and share those versions of the kneeboards to my squad/DCS community, as they (mappings) would only be applicable to me. Below is an example of the AH-64D - AGM114L HELLFIRE PILOT WITH FCR-1.png released Sunday, first my version with the key mappings, then the public version without, so you can see what I mean. I will keep it in mind to try and reduce text if possible, but again, I create these first for myself, as my memory isn't what it used to be. So, if there are what seem like extra/obvious details, it's because nothing is obvious for me anymore w/respect to what device and key/hat/axis/etc. I need to use for a particular action!
  22. With the addition of the FCR (GTM mode), I've added a two-page kneeboard for employing the AGM114L radar guided Hellfire using the FCR from the pilot seat: AH-64D - AGM114L HELLFIRE PILOT WITH FCR-1.png AH-64D - AGM114L HELLFIRE PILOT WITH FCR-2.png NOTE: As more FCR modes become available, including LINK mode (that will slave the TADS to the FCR NTS), I will probably make additional updates to this kneeboard. Also, I plan to add a kneeboard(s) for employing the AGM114L radar guided Hellfire using the FCR from the co-pilot (CP/G) seat, but it may take a bit longer; thus, I wanted to provide this kneeboard sooner rather than later.
  23. Minor update - after testing using AGM-154 JSOWs, I updated the following two kneeboards, adding a note at the end of each page that deploying a JSOW is identical to deploying a JDAM. F-15ESE - GBU-38 WMM TPOD-LN-2.png F-15ESE - GBU-38 WMM UFC COORDS-2.png
  24. 609_Relentov

    CBU

    Copied from one of my F-15E kneeboards. Formatting changed when pasted. Hopefully this helps as well. F-15E SE - Updating PACS after re-arming Updating the Programmable Armament Control Set (PACS) After re-arming the F-15E SE, all air-to-air missiles, including the AIM-120, AIM-7, and AIM-9, are automatically recognized by PACS. However, only certain smart air-to-ground weapons are recognized - all other air-to-ground weapon types must be manually identified within PACS in order to employ them. On any MFD, select PB-11 until "M2" displays Select "ARMT" (PB-2) Select "A/G LOAD" (PB-7) At the top of the MFD, PB-16 through PB-20 will show the type and number of any air-to-ground smart weapons on that station that have been recognized; any weapons not recognized will only show the number of, and not the type Select "STEP" (PB-10), until the air-to-ground weapon matching what has been loaded is shown Select the appropriate weapon (one of PB-1 through PB-5, PB-12 through PB-14), which will put a selection box around it Select all stations from PB-16 through PB-20 that have that weapon type loaded; the weapon type should now show above the number of weapons for that station Select "MENU" (PB-11), then select "A/G" (PB-3) All updated air-to-ground weapons on their respective stations should now be identified at the top of the MFD Repeat the steps above for any additional air-to-ground weapons that have not yet been recognized by PACS
  25. Thanks cfrag! This bug fix broke one of my scripts, so thanks for the suggestion to use Object.getCategory(event.initiator)...
×
×
  • Create New...