Jump to content

d0ppler

Members
  • Posts

    556
  • Joined

  • Last visited

Everything posted by d0ppler

  1. Or play single player campaigns where you actually need to taxi back to the correct parking spot in order to get the mission complete and proceed to the next.. You won't get immersion on most of the public servers. They are more instant action. It's fun, but not realistic, if that's what you're looking for.
  2. I give up. I created a small test mission where the same kind of unit does the exact same thing, then it plays a sound over that frequency. I have absolutely no idea why it doesn't work on my "main" mission.
  3. We are both on blue
  4. I'm 100% sure that I monitor the right channel in my Viper (UHF 243), but I can't hear the audio sound file. Which I know works when I play it off manually in the editor. What am I missing?
  5. It's made in the Open Beta version.
  6. Are you using the version I’m using? This is excacly why I hate mods, but due to DCS civil plane limitations and my campaign needs civil planes, I needed to use this. I would try to download and install the CAM I’m referring to
  7. That way, I can get his findings on my HSD through L16
  8. I agree 100%. That's why I created my own Viper campaign. https://www.digitalcombatsimulator.com/en/files/3328036 The argument that the Hornet had a head start doesn't work anymore. The Viper has been functional the last two years, still no Viper Campaign. I've lost track of how many Hornet campaigns that has been released the last two years. Besides, DCS liberation tends to favor Hornet/Tomcat, unless you have a monster PC, because all their dynamic campaigns are either small and naval based, or huge land based, where you could use a Viper.
  9. https://www.digitalcombatsimulator.com/en/files/3328036/ Bug reports and feedback are always welcome!
  10. Thank you so much for your reply. Is this how it is IRL or only DCS?
  11. Thanks for your answer. Makes sense. I’m not the author of that campaign.
  12. Nice! Go through all the triggers to make sure your Mirage is getting every trigger the F-5 (or one of the other) has. Otherwise it won't work. null Here's my record
  13. Me and my AI wingman are on a CAP mission. No awacs, so we rely on what we see on our own radars. Then my wingman shouts out a contact. Why doesn't that contact appear on my FCR and HSD through L16? Because if I ask my wingman to "engage bandits", then it pops up. Is there something I'm missing? Is it possible if I push button X or Y?
  14. https://www.digitalcombatsimulator.com/en/files/3327920/
  15. ED, I'm begging you, could you please make a deal with the creators of CAM, so those aircrafts are available straight from the bat in the mission editor? These planes adds another dimension to mission making, and when I create missions, I hate to have extra requirements for my mission to work. If the skins/brands adds a problem, then I'm fine with just generic skins, but please make the standard passenger jets available as standard.
  16. If I hypothetically should release a payware campaign, could I use units from CAM and bundle the whole package along with the campaign? I can't find any EULA or any good contact point for the authors of it.
  17. Thanks! Really appreciate it!
  18. I can't seem to find any solutions to this when I search, but my apologies if it has been up before. I'm trying to get the clock bearing to a unit from my player unit's standpoint. I've divided this problem up in several "sub problems" : 1. I need to know the heading of my player (check) 2. I need to know the x/y pos on both my units (check) 3. I need to calculate the angle between those positions (check) 4. I need to be smart in order to put these things into a smart math formula so I can convert this into 1 to 12 (not gonna happen, I'm not smart enough) local function getAngleDeg(p1, p2) return math.atan2(p2.y - p1.y, p2.x - p1.x) * 180 / math.pi; end b747 = Unit.getByName("b747") player = Unit.getByName("player") player_hdg_degrees = mist.getHeading(player, false) * 180 / math.pi; angle = getAngleDeg(player:getPoint(), b747:getPoint()) trigger.action.outText("Plr hdg : " .. player_hdg .. "\nAngle : " .. angle, 1, true) I'm using the mist library, so maybe we have some tricks there? Regards, d0ppler
  19. Thanks for your replies! It makes sense!
  20. I'm working on a mission where sometimes me as the player and my AI wingman needs to refuel in the air. I have a tanker that flies a simple racetrack in the center of the map. For the most part my wingman can do his refueling without acting like a monkey, but sometimes, especially when the tanker flies straight at us, my ACE skilled wingman flies straight into my tanker making a nice mid air explosion taking obviously the tanker as well as himself down to the fishes. Are there any tricks/features I can do in my mission editor I can set on either my wingman or the tanker to mitigate this mid-air crash?
  21. Thank you for pointing that out! Here's what it looks like now, and seems to work. fratricide = {} function fratricide:onEvent(event) local _initname = '' if event.id == world.event.S_EVENT_HIT then _initname = event.initiator:getName() if event.target:getCoalition() and _initname == 'Player1' then if event.initiator:getCoalition() == event.target:getCoalition() then -- you have screwed up trigger.action.setUserFlag('505', true) end end end end world.addEventHandler(fratricide)
  22. I've literally made my first LUA script from scratch! It works, and it looks like this (It's enough to hit a friendly guy to not get mission success, and S_EVENT_HIT served perfectly) fratricide = {} function fratricide:onEvent(event) local _initname = '' if event.id == world.event.S_EVENT_HIT then _initname = event.initiator:getName() if event.initiator:getCoalition() == event.target:getCoalition() then -- you have screwed up trigger.action.setUserFlag('9', true) -- this flag gets true if misconduct of ROE as well. Mission won't be completed trigger.action.outText(_initname .. ' has shot at one of his own', 20) end end end world.addEventHandler(fratricide)
  23. Thanks! I'll try myself first, but please feel free to help me out when you have any spare time I've barely touched lua scripting, but I see now that I must learn at least the basics.
×
×
  • Create New...