Jump to content

xtended

Members
  • Content Count

    31
  • Donations

    $0.00 
  • Joined

  • Last visited

Everything posted by xtended

  1. Carenado's FMS isnt able. But if you install GTN750 mod...
  2. There's one song of Metallica. Its called "Sad but true".
  3. I'm wondering why do you need exactly this one, not, for example, 9A-DWA?!
  4. Ray, yes, I know it. But someone started the conversation about mach speed hold so I was confused
  5. That's exactly what I'm talking about: maybe the speed is too high...
  6. Guys, I see on screenshots above that your approach speed is at about 200 kts. Try the next technique for approach and landing (as it is in flight manual): 1. Reduce throttle to 65-69% N1 in tower proximity (20-15 nm to rwy). Your speed in clean configuration will be around 180-195 kts. 2. Before capturing GS (1 dot below) set flaps for approach (8 grad). 3. At 2200-2500 feet AGL gears down. 4. At 150 kts flaps for landing (20 grad). 5. At 400 feet AGL A/P off. Lazy fellows can keep it on Keep in mind that Vref is between 93 and 111 depending on weight. 6. At 50 feet AGL spoilers extend and a liiitle bit yoke up. 7. After touchdown throttles to idle, flaps in ground position (40 grad) and apply full brakes - antiskid will help you. Well, this is my receipt for smooth and gracious landing. If anyone wants I can make a video proof. Happy flying!
  7. I think it's the matter of rudder controller absence. I have the same problem, not in CJ only.
  8. Thanks a lot. Don't need their support. This editor is all I needed.
  9. Mouse wheel dials. Clicks - switch between registers.
  10. Left mouse button clicks on large knob switch between 100's and 10's, on small knob - between 1's and 0.1's.
  11. Can you post that here? I'm not registered in simforums but I'm interested in topic.
  12. I don't speak english well so I'll show you. First preselect the NAV source with this knob (small one). Then click that button. Just look at picture (preview on click). Hope it'll solve your problem as I understand you right.
  13. Left mouse button clicks on large knob switch between 100's and 10's, on small knob - between 1's and 0.1's.
  14. If this features work in this Carenado model...
  15. Yeah. EagleSoft Citation X has one for more then 7 years. They (Carenado), I'm sure, can do it but don't want somehow. Maybe it's just a business.
  16. Yes! Update to 4.949k solved simultaneous lights toggling. And I rewrite lua code using togglebits command so the final version looks like this: SW_Pos = "L:ASD_SWITCH_CJ2525A_LAND_TAXI_RECOG" -- Move Ldg_Taxi Lt SW UP one position if ipcPARAM == 1 then SWPos = ipc.readLvar(SW_Pos) if SWPos == -1 then ipc.writeLvar(SW_Pos, 0) ipc.togglebitsUW(0x0D0C, 8) end if SWPos == 0 then ipc.writeLvar(SW_Pos, 1) ipc.togglebitsUW(0x0D0C, 4) end end -- Move Ldg_Taxi Lt SW DN one position if ipcPARAM == 2 then SWPos = ipc.readLvar(SW_Pos) if SWPos == 1 then ipc.writeLvar(SW_Pos, 0) ipc.togglebitsUW(0x0D0C, 4) end if SWPos == 0 then ipc.writeLvar(SW_Pos, -1) ipc.togglebitsUW(0x0D0C, 8) end end P.S. God damn it! I'm becoming programist via my simmer way!
  17. I mentioned now that my switches turn ALL lights off somehow. I cannot fix it yet. My genious mind stucks.
  18. It seems I found the solution myself using my genius mind This is lua script I got: -------------------------------------------- -- Carenado CJ2+ Landing_Taxi Lights Scripts -------------------------------------------- -------------------------------------------- -- Parameters by Number -------------------------------------------- -- 1 Move Ldg_Taxi Lt SW UP one position -- 2 Move Ldg_Taxi Lt SW DN one position -------------------------------------------- ---- Variables -------------------------------------------- SW_Pos = "L:ASD_SWITCH_CJ2525A_LAND_TAXI_RECOG" -------------------------------------------- ---- Scripts -------------------------------------------- -- Move Ldg_Taxi Lt SW UP one position if ipcPARAM == 1 then SWPos = ipc.readLvar(SW_Pos) if SWPos == 0 then ipc.writeLvar(SW_Pos, 1) ipc.clearbitsUW(0x0D0C, 8) end if SWPos == 1 then ipc.writeLvar(SW_Pos, 2) ipc.setbitsUW(0x0D0C, 4) end end -- Move Ldg_Taxi Lt SW DN one position if ipcPARAM == 2 then SWPos = ipc.readLvar(SW_Pos) if SWPos == 2 then ipc.writeLvar(SW_Pos, 1) ipc.clearbitsUW(0x0D0C, 4) end if SWPos == 1 then ipc.writeLvar(SW_Pos, 0) ipc.setbitsUW(0x0D0C, 8) end end
  19. Bruce, a lot of thanks for your respond. I owe Carenado E50P too so I've tested your script and it works completly as I wished. Now can you tell me how to make it work in CJ2?
  20. The main problem is that switch has 3 positions: up (landing)/middle(off)/down(taxi). I'd like to switch this positions with two buttons, i.e ctrl-PgUp/ctrl-PgDn.
×
×
  • Create New...