Everything posted by xtended
-
Repaint Request
I'm wondering why do you need exactly this one, not, for example, 9A-DWA?!
- Any Speed Knob located in the plane?
- Any Speed Knob located in the plane?
-
S550/CJ2 merge?
Welcome to nonB737 flightsim flyers
- Any Speed Knob located in the plane?
-
ILS Capture - How to
That's exactly what I'm talking about: maybe the speed is too high...
-
ILS Capture - How to
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!
-
CJ2 thrust during takeoff
I think it's the matter of rudder controller absence. I have the same problem, not in CJ only.
-
ADF radio
Mouse wheel dials. Clicks - switch between registers.
-
ADF radio
Left mouse button clicks on large knob switch between 100's and 10's, on small knob - between 1's and 0.1's.
-
Question about ACP
If this features work in this Carenado model...
-
Landing lights switch
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!
-
Landing lights switch
I mentioned now that my switches turn ALL lights off somehow. I cannot fix it yet. My genious mind stucks.
-
Landing lights switch
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
-
Landing lights switch
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?
-
Landing lights switch
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.
-
Landing lights switch
Does anybody know how to assign landing/taxi lights switch to joystick button or keyboard shortcut?
-
Flight Envelope Data Tested
So what about great loss of power from very slight throttles decrease at higher (102% to 98% N1) rates? Is this similar to real CJ2?