Jump to content

MaDDogz

Members
  • Content Count

    862
  • Donations

    $0.00 
  • Joined

  • Last visited

Everything posted by MaDDogz

  1. Thanks for the info, I was unaware of the user lua. So if I make a function in future, put it in the user lua file instead of the main actions file to prevent my work being overwritten in future updates.? Luke
  2. Not sure if this would be of any help to anyone, but added a function to the module i find helpful when starting the connie Whilst an engine is selected this function will move the mixture lever for the selected engine from cut off too rich.. from a button on your joystick for example. (4 levers controlled from 1 button) -- ## Selected_Engine_Mixture_Rich ## -- function Selected_Engine_Mixture_Rich () ESelVar = ipc.readLvar("L:EngineSelection") if ESelVar == 1 then ipc.writeLvar("MixtureRatioLever1Position", 2) elseif ESelVar == 2 then ipc.writeLvar("MixtureRatioLever2Position", 2) elseif ESelVar == 4 then ipc.writeLvar("MixtureRatioLever3Position", 2) elseif ESelVar == 8 then ipc.writeLvar("MixtureRatioLever4Position", 2) else InertSelVar = 0 end Too add : Open the module in the editor, copy/paste the above into the bottom of the page after the last 'end'
  3. Some bent metal and a nut n bolt 🤗 Easy to make a clamp or, Velcro, take a walk around a hardware store to find inspiration! Ive made some awesome clamps this way. 🤓
  4. Lol chock thanks I wasn't aware, and see why it's not included.
  5. Show me Items only; Any tags Content Types All content Read Status Everything Ownership I posted in Following Everything Time Period Any time Sorting Newest first When i change the options across the top^^^^ of the forum, nothing happens. Where's the 'go' button?? Trying to find my posts...
  6. you're gonna build your own BMW? lol, it's the way it's worded that makes it look like that. luke pype
  7. strange this wasn't part of the paints from pmdg? given its unique-ness n all. luke pype
  8. Check throttle axis is set to all engines in FSX settings.
  9. That tip may well help me also so thanks for posting Norry
  10. Aerosoft has an a310 payware. Haven't flown it so can't comment any further. Ask google.
  11. That. Is cool! ..and a clear investment
  12. Blue on white on any aircraft, looks fresh.
  13. Check setting for having high res enabled in fsx? Settings
  14. how did you land? hand flown or AP-If the latter, Have you switched the autopilot off?
  15. If you can highlight the link then CTRL+C to copy, CTRL+V to paste.
  16. Well, i managed to do it Simple bit of copy and paste and a bit of guess work and i got it first time! and the editor :
  17. What's wrong with the pics on the A2A forum? :S
  18. Cuz' turkeys make funny noises, specially when the cranberry sauce comes out!
  19. Thanks for the reply Scotflieger. I can do this with the engine mesh on all 4 engines useing 1 switch, so im sure it can be done I have taken a look through the editor to try and see how it works useing my extreme limited knowledge and can see that it reads : Tvar = ipc.readLvar("L:EngineSelection") if Tvar == 1 then SVar = 1 end if Tvar == 2 then SVar = 2 end if Tvar == 4 then SVar = 3 end if Tvar == 8 then SVar = 4 end if Tvar == 15 then Svar = 0 end if SVar == 1 then ipc.writeLvar("L:Starter12Mesh", 0) elseif SVar == 2 then ipc.writeLvar("L:Starter12Mesh", 2) elseif SVar == 3 then ipc.writeLvar("L:Starter34Mesh", 2) elseif SVar == 4 then ipc.writeLvar("L:Starter34Mesh", 0) elseif SVar == 0 then end DspShow("Mesh", " " .. SVar .. " ") end To me that reads ''Computer, read whitch engine is selected'' to mesh. So, is it a case of inserting Tvar = ipc.readLvar("L:EngineSelection") -somewhere in the text below? function B17_Generator1_on () ipc.writeLvar("L:Eng1_GeneratorSwitch", 1) DspShow(" Gen", "1 on") end function B17_Generator2_on () ipc.writeLvar("L:Eng2_GeneratorSwitch", 1) DspShow(" Gen", "2 on") end function B17_Generator3_on () ipc.writeLvar("L:Eng3_GeneratorSwitch", 1) DspShow(" Gen", "3 on") end function B17_Generator4_on () ipc.writeLvar("L:Eng4_GeneratorSwitch", 1) DspShow(" Gen", "4 on") end function B17_GeneratorsAll_on () B17_Generator1_on () _sleep(200, 500) B17_Generator4_on () _sleep(200, 500) B17_Generator2_on () _sleep(200, 500) B17_Generator3_on () end function B17_Generator1_off () ipc.writeLvar("L:Eng1_GeneratorSwitch", 0) DspShow(" Gen", "1off") end function B17_Generator2_off () ipc.writeLvar("L:Eng2_GeneratorSwitch", 0) DspShow(" Gen", "2off") end function B17_Generator3_off () ipc.writeLvar("L:Eng3_GeneratorSwitch", 0) DspShow(" Gen", "3off") end function B17_Generator4_off () ipc.writeLvar("L:Eng4_GeneratorSwitch", 0) DspShow(" Gen", "4off") end function B17_GeneratorsAll_off () B17_Generator1_off () _sleep(200, 500) B17_Generator4_off () _sleep(200, 500) B17_Generator2_off () _sleep(200, 500) B17_Generator3_off () end
  20. Hi I am useing the hotas warthog with A2A B17, and LINDA V1.13 I've managed to assign all functions, apart from one. I have assigned 1 switch, that operate the mags. If all engines are selected, and i throw the mag switch, it will throw all mag switch to ''on''. If i select ENG 2 and throw the same switch it will it will only operate the mag2 switch. This is correct. The problem im having is with the generator switches. When i have Ex: Eng2 selected and press the button for gen on, it throws all 4 switches. I've looked through all the listed assignment and cannot find : ''Selected engine gen on / off'' assignment How would i create this assignment? If i select A2A B17 in the ''edit aircraft module'', the edit button is greyed out, non clickable? Thanks Luke
  21. ??? Im watching it no problem https://www.twitch.tv/lomaric/v/106660334
×
×
  • Create New...