-
Posts
218 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by LiveBait
-
Ok, glad you sorted it, but TAB works for me.
-
Cool, thanks Grimes.
-
Anyone know what this means?
-
Don't know why but this Zweiblau.dll issue appeared again for me after updating to 1.2.14.35605. Renamed the 'bin' folder and ran a repair and that fixed it. What does this file do?
-
I want the Mig 21. Thanks Witchking..
-
Help needed with Helios setup and toucn inputs
LiveBait replied to ozTRipwiRE's topic in PC Hardware and Related Software
Have a look at Gadrocs directions for setting up a touchscreen monitor, pretty sure that it will sort you out. http://www.gadrocsworkshop.com/node/48 -
Thanks for the opportunity xaoslaad.
-
Hide/Unhide Helios Panel with button or key press?
LiveBait replied to OverDhill's topic in PC Hardware and Related Software
To hide/unhide a panel using a joystick button Firstly you need to add the joystick -- ADD INTERFACE in the profile drop down menu. Then on the bottom left window pane select INPUT then navigate to the joystick (it will be under 'Interface'). Select the button that you wish to use to hide/unhide the panel, and on the right panel you will see 'TOGGLE HIDDEN' and 'SET HIDDEN'. Now set the main window to view 'Monitor 2', and select the panel you wish to hide. Then drag 'Button # pressed' from the left pane to the right pane and drop it into 'Toggle Hidden' You can use the 'set hidden' function to hide/unhide panels also. However to use this function to unhide a panel you need to change the 'Value Source' to 'Static Value' and put a zero in the value box. Once you get it, it really is easy. -
White Owl, try using the views.lua in the 'DCS World\CoreMods\aircraft\F-86' folder.
-
Hey Stonehouse, i had the same problem. Tried renaming that Zweiblau.dll and running a repair. That only gave me errors on the effects.dll. In the end i sorted it by renaming the whole bin folder and running a repair. Not sure of the relevance, but i also deleted the beta files i still had in my saved games folder before renaming the bin folder and repair. Good luck..
-
Help ED to help us - stateful commands
LiveBait replied to -MadCat-'s topic in PC Hardware and Related Software
Working Perfectly F-86 --Alternate Flight control {down = device_commands.Button_3, cockpit_device_id = devices.HYDRO_INTERFACE, value_down = 0.0, name = 'FlightControl Normal', category = 'Left Side Panel'}, {down = device_commands.Button_3, cockpit_device_id = devices.HYDRO_INTERFACE, value_down = 1.0, name = 'FlightControl Alternate', category = 'Left Side Panel'}, {down = device_commands.Button_3, up = device_commands.Button_3, cockpit_device_id = devices.HYDRO_INTERFACE, value_down = -1, value_up = 0, name = 'FlightControl Reset', category = 'Left Side Panel'}, --Alternate Hydraulics Overide {down = device_commands.Button_8, cockpit_device_id = devices.HYDRO_INTERFACE, value_down = 0.0, name = 'Hydraulics Overide In', category = 'Emergency Systems'}, {down = device_commands.Button_8, cockpit_device_id = devices.HYDRO_INTERFACE, value_down = 1.0, name = 'Hydraulics Overide Out', category = 'Emergency Systems'}, --Emergency Airbrake Lever {down = device_commands.Button_6, cockpit_device_id = devices.HYDRO_INTERFACE, value_down = 0.0, name = 'Emergency Airbrake Lever Close', category = 'Emergency Systems'}, {down = device_commands.Button_6, cockpit_device_id = devices.HYDRO_INTERFACE, value_down = 1.0, name = 'Emergency Airbrake Lever Open', category = 'Emergency Systems'}, --Hydraulic Pressure Selector {down = device_commands.Button_4, cockpit_device_id = devices.HYDRO_INTERFACE, value_down = 1.0, name = 'Hydraulic Pressure Utility', category = 'Front Dashboard'}, {down = device_commands.Button_4, cockpit_device_id = devices.HYDRO_INTERFACE, value_down = 0.0, name = 'Hydraulic Pressure Normal', category = 'Front Dashboard'}, {down = device_commands.Button_4, cockpit_device_id = devices.HYDRO_INTERFACE, value_down = -1.0, name = 'Hydraulic Pressure Alternate', category = 'Front Dashboard'}, --SIGHT FILAMENT SWITCH {down = device_commands.Button_15, cockpit_device_id = devices.A4_GUNSIGHT, value_down = -1.0, name = 'Sight filament primary', category = 'Center Pedestal'}, {down = device_commands.Button_15, cockpit_device_id = devices.A4_GUNSIGHT, value_down = 1.0, name = 'Sight filament secondary', category = 'Center Pedestal'}, --INSTRUMENT POWER ALTERNATE {down = electric_commands.F86_CockpitDeviceCommand_InverterSw, cockpit_device_id = devices.ELEC_INTERFACE, value_down = -1.0, name = 'Instrument Power Primary', category = 'Center Pedestal'}, {down = electric_commands.F86_CockpitDeviceCommand_InverterSw, cockpit_device_id = devices.ELEC_INTERFACE, value_down = 1.0, name = 'Instrument Power Alternate', category = 'Center Pedestal'}, This one may contradict your rule #2 --Emergency Gear Up {down = device_commands.Button_2, up = device_commands.Button_2, cockpit_device_id = devices.HYDRO_INTERFACE, value_down = 1.0, value_up = 0.0, name = 'Emergency Gear Up', category = 'Front Dashboard'}, Got to thank you again MadCat, great initiative. I would not have been able to do this without you showing the way :thumbup: -
Help ED to help us - stateful commands
LiveBait replied to -MadCat-'s topic in PC Hardware and Related Software
Thanks again MadCat. I'm having trouble with the Fuel tank selector for the F-86, doesnt seem to want to co-operate. When i put this one in, my control options show no keybinds for anything and the whole keyboard column is not useable. All the rest I've tried work great. @ johnv2pt0. either dont copy the switch name in or comment it out with -- in front of it eg: edit: Could also be the same prob i was having with the Fuel Tank selector edit2: Thanks GregP for making me look closer. It had a space between the o and the r. (CockpitDeviceCommand_TankSelecto r_Sw,) on each line. Here is a working Drop Tank Selector Working Perfectly F-86 Drop Tank Selector : {down = fuel_commands.F86_CockpitDeviceCommand_TankSelector_Sw, cockpit_device_id = devices.FUEL_INTERFACE, value_down = 0.0, name = 'Drop Tanks ALL OFF', category = 'Drop Tank Control Panel'}, {down = fuel_commands.F86_CockpitDeviceCommand_TankSelector_Sw, cockpit_device_id = devices.FUEL_INTERFACE, value_down = 0.1, name = 'Drop Tanks OUTBOARD', category = 'Drop Tank Control Panel'}, {down = fuel_commands.F86_CockpitDeviceCommand_TankSelector_Sw, cockpit_device_id = devices.FUEL_INTERFACE, value_down = 0.2, name = 'Drop Tanks INBOARD', category = 'Drop Tank Control Panel'}, {down = fuel_commands.F86_CockpitDeviceCommand_TankSelector_Sw, cockpit_device_id = devices.FUEL_INTERFACE, value_down = 0.3, name = 'Drop Tanks LH OUTBOARD', category = 'Drop Tank Control Panel'}, {down = fuel_commands.F86_CockpitDeviceCommand_TankSelector_Sw, cockpit_device_id = devices.FUEL_INTERFACE, value_down = 0.4, name = 'Drop Tanks RH OUTBOARD', category = 'Drop Tank Control Panel'}, {down = fuel_commands.F86_CockpitDeviceCommand_TankSelector_Sw, cockpit_device_id = devices.FUEL_INTERFACE, value_down = 0.5, name = 'Drop Tanks LH INBOARD', category = 'Drop Tank Control Panel'}, {down = fuel_commands.F86_CockpitDeviceCommand_TankSelector_Sw, cockpit_device_id = devices.FUEL_INTERFACE, value_down = 0.6, name = 'Drop Tanks RH INBOARD', category = 'Drop Tank Control Panel'}, -
Awesome work MadCat, much appreciated.
-
It is crucial to be be able to swap easily between missiles and guns in a dogfight. Losing sight of your enemy while you try to to mouse over a knob and click on it, often ends in a 'where did he go' moment, only to find him on your six shortly after (or hiding behind the compass :D ). This, in my opinion, is a high priority, unlike the lighting dials................... Don't get me wrong, every switch / knob / dial / button in the cockpit should have its own keyboard assignment. Individuals can then decide what they want to use within their home pits. This then allows a better level of immersion that these high fidelity sims deserve.
-
I too would really appreciate this thing moved. Sneaky Migs like to try and hide behind it.
-
Is it necessary to post in this thread, saying that i have sent an email? Oh well, email sent. Thanks for the opportunity.
-
me too........:pain:
-
-
Really like this, and appreciate the work you guys have put into this, Thanks
-
Quick and dirty Afghanistan style repint of DCS world.
LiveBait replied to Stratos's topic in DCS Modding
Then you should have stopped right there.... Awesome mod guys, thanks......... -
I've just installed this great mod and discovered that with 1.2.7 and the Huey, the Gunners AI panel will not show. So I did some fiddling and got it working. So for all you Huey drivers out there, keep the 'Base Mod' and simply replace 'KNEEBOARD_MOD_for_UH-1H 1.2.6' with the one below. Thanks PeterP and good luck on your new endeavors. KNEEBOARD_MOD_for_UH-1H 1.2.7.rar