Jump to content

lancealotg

Members
  • Posts

    4
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

lancealotg's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Ok, that explains it. I had the ac on auto, will have to try manual if it happens again. I first thought my monitor was going bad lol. She is a wonderful plane. Thanks
  2. I had a strange effect today cruising at 16000 ft. A strange reddish like circle around the outside of my vision. Plane was pressurized ok saying a 4000 foot altitude in cabin. I put my oxygen mask on anyway with no effect. It went away later near the end of the flight. Does anyone know what that was?
  3. Thank you so much for your help. Not sure what you mean by NEXT frame. I tried the below commands but it does not work Do I need to add a timer to wait for the next frame? Thanks again. function tbmuser_alarm_off() command_begin("sim/annunciator/clear_master_caution") command_end("sim/annunciator/clear_master_caution")
  4. I am using FlyWithLua to customize my joystick buttons. Most everything works (thanks Hotstart by including the DataRefs and Commands in the documentation). My problem is with the master caution and master warning commands It looks like they are using the default xplane command (sim/annunciator/clear_master_caution) When I run a command_once statement, nothing happens. The other two functions work fine Can anyone tell me where I am going wrong? Thanks function tbmuser_pitot_heat_on_LR() command_once("tbm900/actuators/ice/pitot_r_on") command_once("tbm900/actuators/ice/pitot_l_on") end create_command("tbmuser/test/pitot_heat", "pitot_heat_on_LR", "tbmuser_pitot_heat_on_LR()", "", "") function tbmuser_pitot_heat_off_LR() command_once("tbm900/actuators/ice/pitot_l_off") command_once("tbm900/actuators/ice/pitot_r_off") end create_command("tbmuser/test/pitot_heat_off", "pitot_heat_off_LR", "tbmuser_pitot_heat_off_LR()", "", "") function tbmuser_alarm_off() command_once("sim/annunciator/clear_master_caution") command_once("sim/annunciator/clear_master_warning") end create_command("tbmuser/test/alarm_off", "alarms_off", "tbmuser_alarm_off()", "", "")
×
×
  • Create New...