Jump to content

Miguel21

Members
  • Posts

    955
  • Joined

  • Last visited

5 Followers

About Miguel21

  • Birthday 01/01/1970

Personal Information

  • Flight Simulators
    DCS
    Cliff of Dover
  • Location
    France
  • Interests
    Plane

Recent Profile Visitors

4504 profile views
  1. null
  2. As I wrote above, Cef should clean up its list of campaigns supported by the current DCE_Manager, as well as by the current DCS. Mbot's original campaigns will no longer be supported here, such as Delta Group EastMed Fleet Defence Screaming Eagle Desert 76 F-5E Dynamic Campaign: Wild Weasel: as well as all campaigns by Eagle01 The campaigns currently supported are: Those by Cef (of course) Those by Roll Those by Polia (to be confirmed ^^) Translated with DeepL.com (free version)
  3. Haha ^^ No, DCE isn't dead yet ^^ It's just that the old (very old) campaigns can no longer be supported because their owners have left the ship. The list of supported campaigns should be updated by Cef. For now, we're working on releasing a campaign on the theme of Vietnam, but based on the Kola map.
  4. You can start creating the db_airbase table using the RunwayLife table in the temporary end-of-mission file: camp_status. However, it is not necessary to include all the bases. You can start with 10 on each side, for example, which will give you an overview. ["RunwayLife"] = { [1] = { ["baseObject"] = { ["id_"] = 5000002, }, ["life"] = 3600, ["life0"] = 3600, ["name"] = "Banak", ["pointVec3"] = { ["x"] = 233623.484375, ["y"] = 5.2753481864929, ["z"] = 88526.1171875, }, }, [2] = { ["baseObject"] = { ["id_"] = 5000004, }, ["life"] = 3600, ["life0"] = 3600, ["name"] = "Rovaniemi", ["pointVec3"] = { ["x"] = -151314.21875, ["y"] = 186.5428314209, ["z"] = 152281.609375, }, }, [3] = { ["baseObject"] = { ["id_"] = 5000006, }, ["life"] = 3600, ["life0"] = 3600, ["name"] = "Kemi Tornio",
  5. Hi. All maps can be added. Just give me the details so I can add them automatically in the next update (to avoid overwriting your data). movedBullseye in UTIL_ConfModCheck.lua and LocationForEphemeris in UTIL_DataMap.lua That's all I can see for now.
  6. Try these two files, which are from version 553 (back up the old files, just in case ^^, I can't test this version) MAIN_NextMission.lua DC_Weather.lua
  7. Thank you. Do you re-save the mission with the mission editor before playing it? Or do you use (I don't know the exact term) the mission preparer or planner? Always before playing it
  8. There are no stupid questions. The DCE settings are not really user friendly ^^. What's more, when you try to add or correct things, it often breaks something else
  9. null Which version of scriptsMod are you using? Because I did indeed have a major bug with weather generation. However, it doesn't sound like what you're describing. Can you push your mission here? In the screenshot, I posted the settings needed for bad weather, but with 50/50 it could be mixed.
  10. Oh, I didn't see that. The prefix C (or A or B or other) is only used on certain maps, for example PersianGulf. In Causacuse, it's not necessary, so you should write it like this: parking_id = { [""] = {1, 31}, }, For comparison, I'm sending you a parking that uses the prefix C.
  11. Hi, On which map and which base? Because we have the same problem on Kola.
  12. I'm really sorry for the delay, but I'm getting less and less time at the moment. That said, I think I've found the solution. I'm posting here the full results of the last few months of upgrades, pending a hypothetical release. ==:20.88.553:== 553 fixed [timing] bug 2nd strike TOT 552 fixed [spawn] 6-pack spawn bug 551 fixed [assign] bug assigning player in multiplayer 550 fixed [alias] removal of aliases from oob_air_init, automatic transfer to \Init\various_table.lua 549 fixed [WPT] WPT before landing 548 fixed [spawn] anti-collision at air spawn 547 fixed [campaign] campaign can be updated during play by modifying Init files 546 fixed [date] 1970 bug again 545 add [date][time jump] time jump possible with conf_mod (change date in conf_mod then run SkipMission.BAT) 544 fixed [inter] player interceptors are "delayed" 543 fixed [weather] added latest weather presets + major bug on random weather 542 fixed [AI] prohibits in-flight refueling and strafing for AIs 541 fixed [scen] map buildings are not destroyed when they should be 540 fixed [debrief][stats] revision of map building destruction detection and statistics code 539 fixed [debrief][stats] ground unit destruction stats error 538 fixed [refuel][M88] CheckRefuelProgress (in progress) 537 mod [loadout][M87] change of logic for the “day” variable: day will always be considered true (even if it's not in the loadout). However, if you want ONLY a night loadout, set this: night = true, and day = false, 536 mod [date][M86] new variables added to conf_mod (RepairOption, current_date, weather, etc.) 535 fixed [generator][inter] choosing interceptor causes mission generation to crash 553.zip
  13. can you provide us with the mission in question
  14. because it's “enough” to use this kind of function, taken from DCS, getPosition(), which gives x and y positions getPoint(), which gives x and z positions with something like this: local flightGroup = Group.getByName(afacFlightName) if flightGroup then local unitsAFAC = flightGroup:getUnits() local unitAFAC = unitsAFAC[1] if unitAFAC and unitAFAC:isExist() then local afacPos = unitAFAC:getPoint() local unit_Pos = unit:getPoint() local distance = math.sqrt((afacPos.x - unit_Pos.x)^2 + (afacPos.z - unit_Pos.z)^2) etc...
  15. it's a function of DCE for DCE ^^ if you just want to find the player's position, it all depends on the context. You want a script that has nothing to do with DCE, right? And then, what do you want to do with this position?
×
×
  • Create New...