Jump to content

flybird141

Frozen-Inactivity
  • Content Count

    5
  • Donations

    $0.00 
  • Joined

  • Last visited

Community Reputation

1 Neutral

Profile Information

  • Gender
    Male

Flight Sim Profile

  • Commercial Member
    No
  • Online Flight Organization Membership
    Other
  • Virtual Airlines
    Yes

Recent Profile Visitors

360 profile views
  1. It's (1000) milliseconds...= one second. You can change it. 500 is a half second 250 quarter and so on. You can adjust to your needs can also be based on the encoder you are using so may need to be played with.
  2. Here is the code that got it working thanks to my son:) Open up the PMDG 777 in the Linda airplane editor. This should work with all planes though. Enter this starting with line 27... or near the top of your file. lastUsed = 0 ---------------------------------------------------------------- ---------------------------------------------------------------- function incrementFastOrSlow () local inc = 1 local now = ipc.elapsedtime() if now <= lastUsed + 1000 then inc = 5 end lastUsed = ipc.elapsedtime() return inc end And then set Linda to Incfast or decfast with the encoder functions you you want to use this with. Update both incfast and decfast lines of code to call incrementFastOrSlow() example before: function PMDG_AP_ALT_incfast () local i for i = 1, 5 do ipc.control(71882, 256) end PMDG_AP_ALT_show () end Example after: function PMDG_AP_ALT_incfast () local i for i = 1, incrementFastOrSlow() do ipc.control(71882, 256) end PMDG_AP_ALT_show () end
  3. I just built a MCP and have everything working. I would like to know if there is a solution to speed up the increase in Altitude and/or similar with a code in LUA or some other way. If I turn the dial faster it will increase the numbers faster? Any help would be highly appreciated!
  4. In the operations center there is a P3D V4 Plane tab. I have downloaded the latest installer from my account, however, I have both P3D v3... and P3D V4 on my computer and it only finds P3D V3.. sim?
  5. Great Virtual Airline! No mess no Fuss fly anything anywhere. Awsome! Great Virtual Airline! No mess no Fuss fly anything anywhere. Awsome!
×
×
  • Create New...