Jump to content

buur

Members
  • Posts

    627
  • Joined

  • Last visited

1 Follower

About buur

  • Birthday 09/27/1976

Personal Information

  • Location
    germany

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Don't see your problem. For me it was a nice touchdown. Couldn't see your weight, maybe a litte bit heavy.
  2. Try to override the gain. This helps for me. https://forum.dcs.world/topic/380238-any-suggestion-to-air-refuel-the-18-in-vr/#findComment-5704454
  3. For the AI I use following formula for the relation of IAS and TAS for slow moving planes like tankers. IAS[kn] = TAS[kn] * ( 1 - 1.34*10^(-5) * h[ft]) This formula is only valid for AI because for AI there is no influence of temperature or pressure.
  4. as speed-of-heat has written, simply place your general kneeboard pages in the top folder and you see them in all planes.
  5. For me AAR is easier when I override the gain. Than I have more sensitivity.
  6. So, gerade mal probiert und nachdem ich beim ersten mal ejecten prompt in einen See gelandet bin konnte ich beim zweiten mal den Pilot mit den Pfeiltasten laufen lassen.
  7. do we have any comment by a developer on this topic up to now?
  8. sorry not talking about magnetic but about geographic bearing.
  9. Compared the runway headings for Hamburg, Pferdsfeld and Frankfurt and all all of by +10°. For example in DCS Hamburg is 342° in DCS and in real world it is 332° (Checked with Google Earth.) See also that the coordinates are ok, only the bearing is wrong. Is in Ugra's map the pole on the wrong position?
  10. unfortunately not. You can't slave the HSI or the radio to the NS430. You have to use the NS430 internal HSI and set the course in the normal HSI by hand. Radio has no function.
  11. You can do a flight planning based on waypoints and fixes in the database. Also on some maps you can fly approaches.
  12. hast du den historischen Filter an? Mach ihn mal aus. Und sonst sind die wie beschrieben unter Unarmed→RSBN car
  13. Hi guys, here a small script to determine the exact heading of the runways. Simply execute in a DO SCRPT trigger and change the airport name in the first line. Think could be helpful for the exact alignment. myAirbase = Airbase.getByName("Pferdsfeld") rny = myAirbase:getRunways() name = myAirbase:getName() if rny then for j = 1, #rny do local bearing = rny[j].course * -1 degree = bearing*180/math.pi if degree < 0 then degree = 180+ degree end antidegree = degree + 180 if antidegree > 360 then antidegree = antidegree -360 end rnyname = rny[j].Name local text = string.format( '%s runway %s heading: %.2f ; anti heading: %.2f',name,rnyname,degree, antidegree) trigger.action.outText( text , 20 , false) end end null
  14. and now for ICLS and ILS
×
×
  • Create New...