Skip to content
View in the app

A better way to browse. Learn more.

The AVSIM Community

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

HBE66

Members
  • Joined

  • Last visited

  1. ups, actually i ment LBS and not GAL :(
  2. darn, loading the C172 first and then the B737 didnt help <_<still got the same issue
  3. nope, no changes made to the b737, its as blank as it comesand i dont have similar issues with other aircraftsill give the C172 a try atleast it fixes several other issues with other non-standard-aircrafts
  4. does anyone here actually use the B737¿ :(
  5. im quite confused with the standard fsx b737-800 fuel system.i started a flight with about 8000gal in the center fuel tank and 900gal (each) left and right tankfuelpumps are both on and idle and i have tried with x-feed open aswell as closedbut the 737 seems to only take fuel from 1 tank... it doesnt touch the other nor the center tank(both engines are running yes)so with the 900gal at takeoff, it only lasts me to about 3000ft and the engines turn off =(has someone got a clue why? and/or how i can actually use the other two tanks toothank you!
  6. theres a setting (checkbox) in the fsx options to display tail numbers, by standard i think this is turned off
  7. thanks andy, ill add that to my pageand im glad your happy danira =)
  8. i finally got a solution, if any one is interested see hbe66.com
  9. alright ill see to get it handled somehow...and bring up any results for other js41 fans to enjoy =)thank you
  10. ok, sounds reasonablebut how did that work that i got the alt to 10000 on the panel, with peter dowsons lua plugin?is there maybe a way to just set the altitude on the panel?from there on id just need to find out how the alt knob reacts egsactly and should be able to handle itif i just startup fsx without using serial fp2 i get the alt on 10000 on both, panel and fsxbut as soon as i turn on serial fp2 (on fsx standard aircraft) it changes the alt to 4000 on the panel
  11. ive updated it a little bit, with seting the action for the release action of the altitude knob helpsbut it still comes to unsynchronized values on panel comared to fsx - think i still need something to synchronize the valuesand it already starts with panel alt 4000 and fsx alt 10000 when starting up everythingi found a lua plugin from pete dowson that helps synchronizing the values on startupbut everything else wont work properly anymoreand i couldnt extract how he did it =/for the heading ie it works nicely, its just the problem with the altitude -- Test Lua 1-- AP Course Left 6-- AP Course Left Fast 7-- AP Course Right 8-- AP Course Right Fast 9-- AP Course Press 10-- AP Speed Left 11-- AP Speed Left Fast 12-- AP Speed Right 13-- AP Speed Right Fast 14-- AP Speed Press 15-- AP Heading Left 16-- AP Heading Left Fast 17-- AP Heading Right 18-- AP Heading Right Fast 19-- AP Heading Press 20-- AP Altitude Left 21-- AP Altitude Left Fast 22-- AP Altitude Right 23-- AP Altitude Right Fast 24-- AP Altitude Press 25-- AP V-Speed Press 30-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- Var = ""Speed = 0Control1 = 0Control2 = 0-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- if ipcPARAM == 1 then ipc.control(66587, 8031) ipc.display("Test...")-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- AP COURSE LEFTelseif ipcPARAM == 6 then Var = "L:AP_CRS_Left" Speed = 1 Control1 = 66587 Control2 = 26701elseif ipcPARAM == 7 then Var = "L:AP_CRS_Left_Fast" Speed = 5 Control1 = 66587 Control2 = 26701-- AP COURSE RIGHTelseif ipcPARAM == 8 then Var = "L:AP_CRS_Right" Speed = 1 Control1 = 66587 Control2 = 26702elseif ipcPARAM == 9 then Var = "L:AP_CRS_Right_Fast" Speed = 5 Control1 = 66587 Control2 = 26702-- AP COURSE PRESSelseif ipcPARAM == 10 then Var = "L:AP_CRS_Press" Speed = 1 Control1 = 66587 Control2 = 2672end-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- AP SPEED LEFTif ipcPARAM == 11 then Var = "L:AP_SPD_Left" Speed = 1 Control1 = 66587 Control2 = 26801elseif ipcPARAM == 12 then Var = "L:AP_SPD_Left_Fast" Speed = 10 Control1 = 66587 Control2 = 26801-- AP SPEED RIGHTelseif ipcPARAM == 13 then Var = "L:AP_SPD_Right" Speed = 1 Control1 = 66587 Control2 = 26802elseif ipcPARAM == 14 then Var = "L:AP_SPD_Right_Fast" Speed = 10 Control1 = 66587 Control2 = 26802-- AP SPEED PRESSelseif ipcPARAM == 15 then Var = "L:AP_SPD_Press" Speed = 1 Control1 = 66587 Control2 = 2681-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- AP HEADING LEFTelseif ipcPARAM == 16 then Var = "L:AP_HDG_Left" Speed = 1 Control1 = 66587 Control2 = 26901elseif ipcPARAM == 17 then Var = "L:AP_HDG_Left_Fast" Speed = 5 Control1 = 66587 Control2 = 26901-- AP HEADING RIGHTelseif ipcPARAM == 18 then Var = "L:AP_HDG_Right" Speed = 1 Control1 = 66587 Control2 = 26902elseif ipcPARAM == 19 then Var = "L:AP_HDG_Right_Fast" Speed = 5 Control1 = 66587 Control2 = 26902-- AP HEADING PRESSelseif ipcPARAM == 20 then Var = "L:AP_HDG_Press" Speed = 1 Control1 = 66587 Control2 = 2691-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- AP ALTITUDE LEFTelseif ipcPARAM == 21 then Var = "L:AP_SPD_Left" Speed = 1 Control1 = 66587 Control2 = 3920elseif ipcPARAM == 22 then Var = "L:AP_SPD_Left_Fast" Speed = 10 Control1 = 66587 Control2 = 3920-- AP ALTITUDE RIGHTelseif ipcPARAM == 23 then Var = "L:AP_SPD_Right" Speed = 1 Control1 = 66587 Control2 = 3921elseif ipcPARAM == 24 then Var = "L:AP_SPD_Right_Fast" Speed = 10 Control1 = 66587 Control2 = 3921-- AP ALTITUDE PRESSelseif ipcPARAM == 25 then Var = "L:AP_SPD_Press" Speed = 1 Control1 = 66587 Control2 = 281-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- AP V-SPEED LEFTelseif ipcPARAM == 26 then Var = "L:AP_VS_Left" Speed = 1 Control1 = 66587 Control2 = 283elseif ipcPARAM == 27 then Var = "L:AP_VS_Left_Fast" Speed = 10 Control1 = 66587 Control2 = 283-- AP V-SPEED RIGHTelseif ipcPARAM == 28 then Var = "L:AP_VS_Right" Speed = 1 Control1 = 66587 Control2 = 283elseif ipcPARAM == 29 then Var = "L:AP_VS_Right_Fast" Speed = 10 Control1 = 66587 Control2 = 283-- AP V-SPEED PRESSelseif ipcPARAM == 30 then Var = "L:AP_VS_Press" Speed = 1 Control1 = 66587 Control2 = 283end-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- val = 0 if ipc.readLvar(Var) == 0 then val = 1 end ipc.control(66587, 8031) ipc.writeLvar(Var, val) for n=1, Speed, 1 do ipc.control(Control1, Control2) end
  12. alright, got it workingjust didnt find the VS parameters, some of the press'es wont work and altitude/speed isnt synchronized =/probably because the panel starts with a different value than the js41 in fsx - might there be a way to set this on start?but its faar better than before =)created a new lua called js41_ap.luawith the following: -- Test Lua 1-- AP Course Left 6-- AP Course Left Fast 7-- AP Course Right 8-- AP Course Right Fast 9-- AP Course Press 10-- AP Speed Left 11-- AP Speed Left Fast 12-- AP Speed Right 13-- AP Speed Right Fast 14-- AP Speed Press 15-- AP Heading Left 16-- AP Heading Left Fast 17-- AP Heading Right 18-- AP Heading Right Fast 19-- AP Heading Press 20-- AP Altitude Left 21-- AP Altitude Left Fast 22-- AP Altitude Right 23-- AP Altitude Right Fast 24-- AP Altitude Press 25-- AP V-Speed Press 30-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- if ipcPARAM == 1 then ipc.display("Test...")end-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- AP COURSE LEFTif ipcPARAM == 6 then Var = "L:AP_CRS_Left" Speed = 1 Control1 = 66587 Control2 = 26701endif ipcPARAM == 7 then Var = "L:AP_CRS_Left_Fast" Speed = 5 Control1 = 66587 Control2 = 26701end-- AP COURSE RIGHTif ipcPARAM == 8 then Var = "L:AP_CRS_Right" Speed = 1 Control1 = 66587 Control2 = 26702endif ipcPARAM == 9 then Var = "L:AP_CRS_Right_Fast" Speed = 5 Control1 = 66587 Control2 = 26702end-- AP COURSE PRESSif ipcPARAM == 10 then Var = "L:AP_CRS_Press" Speed = 1 Control1 = 66587 Control2 = 2672end-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- AP SPEED LEFTif ipcPARAM == 11 then Var = "L:AP_SPD_Left" Speed = 1 Control1 = 66587 Control2 = 26801endif ipcPARAM == 12 then Var = "L:AP_SPD_Left_Fast" Speed = 10 Control1 = 66587 Control2 = 26801end-- AP SPEED RIGHTif ipcPARAM == 13 then Var = "L:AP_SPD_Right" Speed = 1 Control1 = 66587 Control2 = 26802endif ipcPARAM == 14 then Var = "L:AP_SPD_Right_Fast" Speed = 10 Control1 = 66587 Control2 = 26802end-- AP SPEED PRESSif ipcPARAM == 15 then Var = "L:AP_SPD_Press" Speed = 1 Control1 = 66587 Control2 = 2681end-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- AP HEADING LEFTif ipcPARAM == 16 then Var = "L:AP_HDG_Left" Speed = 1 Control1 = 66587 Control2 = 26901endif ipcPARAM == 17 then Var = "L:AP_HDG_Left_Fast" Speed = 5 Control1 = 66587 Control2 = 26901end-- AP HEADING RIGHTif ipcPARAM == 18 then Var = "L:AP_HDG_Right" Speed = 1 Control1 = 66587 Control2 = 26902endif ipcPARAM == 19 then Var = "L:AP_HDG_Right_Fast" Speed = 5 Control1 = 66587 Control2 = 26902end-- AP HEADING PRESSif ipcPARAM == 20 then Var = "L:AP_HDG_Press" Speed = 1 Control1 = 66587 Control2 = 2691end-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- AP ALTITUDE LEFTif ipcPARAM == 21 then Var = "L:AP_SPD_Left" Speed = 1 Control1 = 66587 Control2 = 3920endif ipcPARAM == 22 then Var = "L:AP_SPD_Left_Fast" Speed = 10 Control1 = 66587 Control2 = 3920end-- AP ALTITUDE RIGHTif ipcPARAM == 23 then Var = "L:AP_SPD_Right" Speed = 1 Control1 = 66587 Control2 = 3921endif ipcPARAM == 24 then Var = "L:AP_SPD_Right_Fast" Speed = 10 Control1 = 66587 Control2 = 3921end-- AP ALTITUDE PRESSif ipcPARAM == 25 then Var = "L:AP_SPD_Press" Speed = 1 Control1 = 66587 Control2 = 281end-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- AP V-SPEED LEFTif ipcPARAM == 26 then Var = "L:AP_VS_Left" Speed = 1 Control1 = 66587 Control2 = 283endif ipcPARAM == 27 then Var = "L:AP_VS_Left_Fast" Speed = 10 Control1 = 66587 Control2 = 283end-- AP V-SPEED RIGHTif ipcPARAM == 28 then Var = "L:AP_VS_Right" Speed = 1 Control1 = 66587 Control2 = 283endif ipcPARAM == 29 then Var = "L:AP_VS_Right_Fast" Speed = 10 Control1 = 66587 Control2 = 283end-- AP V-SPEED PRESSif ipcPARAM == 30 then Var = "L:AP_VS_Press" Speed = 1 Control1 = 66587 Control2 = 283end-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- ipc.writeLvar(Var, 1)for i = 0, Speed, 1 do ipc.control(Control1, Control2)end
  13. yep i tried setting the macro 2ce for the fast dial (1ce for the action and 1ce after the action)but that doesnt help much, if i turn 180º it turns about 10º in fsx =)i couldnt find a solution for the js41, just someone that mentioned that hes got it working (but not how)im going to give it a try making my own lua, even though i dont quite understand how it works =)if that someone (Kensi) that has it working, has a tip for me - its more than welcomethank you
  14. ive been thinking...has anyone tried calling the heading multiple times through a lua?as it basically appears as if one click on the panel seems to be morethan a click through the macromy thaught was, when a click is trigered through the panelit just needs to be performed multiple times, to basically synchronize itie. through a lua
  15. got everything working =)the only "bugs" left are that i can only turn the heading slowly and the value shown on the panel is different from the one in fsx

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.