Jump to content

Barnowl

Members
  • Posts

    31
  • Joined

  • Last visited

Personal Information

  • Flight Simulators
    A10C, FC3, UH1-Huey, Ka-50, rFactor
  • Location
    North Carolina, USA
  • Interests
    Electronics, Flight Sims
  1. Is there any way to make changes to the lua file and see the results without shutting down and restarting DCS?
  2. I would like to assign the TDC to axis but, the mouse is the only option I have for this, everything else is grayed out. What do I need to do to correct this?
  3. Thank you for your help. What I am trying to do is duplicate what ED's code does but, have the ability for the game to 'Remember' the switch position. Example: { down = iCommandPlaneGearUp, up = iCommandPlaneGearDown, value_down = 1.0, value_up = 0.0, name = _('Alt Landing Gear Control Handle 2-Pos UP/DOWN'), category = {_('Special For Joystick'), _('Left Vertical Panel')}}, This code knows where my switch position is at all times. If I understand you correctly, with this code that you use, allows you to 'Extend/Retract' with only one line of code. And with your example it can only be fully Extended or Retracted, nothing in between. Again thanks for your help.
  4. Is there any way to make changes to the lua file and see the results without shutting down and restarting DCS?
  5. I am in need of some assistance with my joystick default.lua file. I am trying to modify the speed brake function like I did for the landing gear. The problem is that no matter what I do at best I can only see one action in the control panel but, usually none. Ed's is there and working but not mine. At first I thought it was because of a naming conflict, 'Alt Speed Brake Switch - EXTEND', 'Alt Speed Brake Switch - RETRACT' but, Ed's is nearly identical, 'Speed Brake Switch - EXTEND', 'Speed Brake Switch - RETRACT' and it still works. I am still new at LUA so, it may be something simple. Hopefully someone will spot my error. Maybe someone can tell me how to insert code correctly. Since I don't know how to insert code, I will list my examples below. -- ED's approach { down = hotas_commands.THROTTLE_SPEED_BRAKE, up = hotas_commands.THROTTLE_SPEED_BRAKE, cockpit_device_id = devices.HOTAS, value_down = -1.0, value_up = 0.0, name = _('Speed Brake Switch - EXTEND'), category = {_('Throttle Grip'), _('HOTAS')}}, { down = hotas_commands.THROTTLE_SPEED_BRAKE, cockpit_device_id = devices.HOTAS, value_down = 0.0, name = _('Speed Brake Switch - OFF'), category = {_('Throttle Grip'), _('HOTAS')}}, { down = hotas_commands.THROTTLE_SPEED_BRAKE, cockpit_device_id = devices.HOTAS, value_down = 1.0, name = _('Speed Brake Switch - RETRACT'), category = {_('Throttle Grip'), _('HOTAS')}}, -- My first { down = hotas_commands.THROTTLE_SPEED_BRAKE, up = hotas_commands.THROTTLE_SPEED_BRAKE, cockpit_device_id = devices.HOTAS, value_down = 1.0, value_up = 0.0, name = _('Alt Speed Brake Switch - EXTEND/ON'), category = {_('Special For Joystick'), _('Throttle Grip'), _('HOTAS')}}, { down = hotas_commands.THROTTLE_SPEED_BRAKE, cockpit_device_id = devices.HOTAS, value_down = 1.0, value_up = 0.0, name = _('Alt Speed Brake Switch - RETRACT/OFF'), category = {_('Special For Joystick'), _('Throttle Grip'), _('HOTAS')}}, -- My current { down = hotas_commands.THROTTLE_SPEED_BRAKE, up = hotas_commands.THROTTLE_SPEED_BRAKE, cockpit_device_id = devices.HOTAS, value_down = -1.0, value_up = 0.0, name = _('Alt Speed Brake Switch - EXTEND'), category = {_('Special For Joystick'), _('Throttle Grip'), _('HOTAS')}}, { down = hotas_commands.THROTTLE_SPEED_BRAKE, cockpit_device_id = devices.HOTAS, value_down = 1.0, name = _('Alt Speed Brake Switch - RETRACT'), category = {_('Special For Joystick'), _('Throttle Grip'), _('HOTAS')}},
  6. And Skatezillas program does the same thing.
  7. But I want to go to 2.5.1, how do I do that?
  8. Esac, When I ran the updater as you mentioned I get DCS_Updater 2.6.25.40 and then 2.5.0.15365.345 is up to date.
  9. Hey PhaseShift, Did you ever resolve this issue? I am having the same problem.
  10. Yes I did and I downloaded your files but, have yet to try them.
  11. Update: I finally figured it out. From the editor, go to Mission Goals and create a goal for each piece of cargo with a score value, and set a condition to Unhook in a zone. Select the aircraft, and select the 2nd icon, I think it is Triggers and define a rule for each piece of cargo and a pickup zone. This will create smoke at the delivery zone. Upon completion of delivery you will get a score.
×
×
  • Create New...