Jump to content

kolpakov_79

Members
  • Posts

    325
  • Joined

  • Last visited

Everything posted by kolpakov_79

  1. Topic closed. Thank you. Whoever is looking will always find.
  2. Hello! I am very looking for a flying mod of a Japanese transport aircraft. I will be glad to help.
  3. Thanks for the model. I would like an animated ramp and a door.
  4. I don't know. Question to the authors.
  5. Perhaps the video card is at fault.
  6. The model did not find any J-7. Correct me. Unless you are using the Mig-21 model. Fundamentally different aircraft.
  7. Thank you so much. To remove the extra aeroflot icon on the left, delete the An-12 skin textures in the folder.
  8. Make a work ramp. Thanks for the work.
  9. Too many will reveal secrets. Can be accused of preparing real strikes with reference to the terrain.
  10. -- Approx. of data provided by https://en.wikipedia.org/wiki/Mikoyan-Gurevich_MiG-23 (updated by Firesilver) --"18° for take-off and landing, 47 for cruise at different altitudes, and 74° for minimum aspect ratio and wing area in low-level dashes" -- 18°, 47°, 74° are all possible values -- Declare self variables local dev = GetSelf() -- 0.01 rep. 1000th of second, by 10 ms. local update_time_step = 0.01 make_default_activity(update_time_step) local sensor_data = get_base_data() -- Defines what happens when the script loads in function post_initialize() print_message_to_user("Wing sweep automatic") end -- Defines how wing sweep animations should work function update() -- Preparing constants/dependencies local mach = sensor_data:getMachNumber() local altG = sensor_data:getRadarAltitude() local currentsweep = get_aircraft_draw_argument_value(7) local targetsweep = 0 local sweepstep = 0.0006 -- Fastest ~1M if mach > .8 and currentsweep < 1.0 then targetsweep = 1.0 -- Very low alt pass elseif altG < 200 and mach > .65 and currentsweep < 1.0 then targetsweep = 1.0 -- Subsonic/cruising (45°) elseif mach > .65 and currentsweep < 0.47 then targetsweep = 0.47 -- Subsonic/cruising (35°) elseif mach > .32 and currentsweep < 0.18 then targetsweep = 0.18 -- Takeoff/landing (<400Km/h) elseif mach > 0 and currentsweep > 0.0 then targetsweep = 0.0 end -- Actual update part if targetsweep >= 0.0 then if math.abs(targetsweep-currentsweep) < sweepstep then set_aircraft_draw_argument_value(7,targetsweep) elseif targetsweep > currentsweep then set_aircraft_draw_argument_value(7,currentsweep+sweepstep) elseif targetsweep < currentsweep then set_aircraft_draw_argument_value(7,currentsweep-sweepstep) end end end need_to_be_closed = false
  11. Kh-101 arrived in time.
  12. Mandatory. I'll finalize it. Of course, if the author of the model does not wake up against.
  13. You called me a dreamer...
  14. Much more interesting than the implemented Su-57 model. Is it possible to try it or just a demo?
  15. You yourself are a creature. Soon we will drown in Syria.
  16. Greetings. Is it possible to get a model for missions? Thank you.
×
×
  • Create New...