Jump to content
The simFlight Network Forums

NookyBookyIV

new Members
  • Posts

    2
  • Joined

  • Last visited

Profile Information

  • Gender
    Male
  • Location
    France

NookyBookyIV's Achievements

Newbie

Newbie (1/14)

  • First Post Rare
  • Conversation Starter Rare

Recent Badges

0

Reputation

  1. Thanks John, it seems to be the logical explanation. I do not see my InputEvent in FSUIPC console, it is never called. I would like to be able to have it working simply by assigning the throttle to an axis, using an offet + LUA script is not an option for most of the users. I will follow the bug logged on Asobo side, thanks for your help.
  2. Hello, I am currently developing an aircraft where I need to have a custom throttle behaviour based on throttle input. Hence I created an InputEvent in the XML where I intercept all throttle bindings like the following: <Set> <Code> p0 (&gt;L:THROTTLE_POS_#ID#, percent) </Code> <Parameters> <Param Type="Int" RPN="True">p0</Param> </Parameters> <Bindings> <Binding EventID="AXIS_THROTTLE#ID#_SET"> <Param Type="Int" RPN="True">#THROTTLE_AXIS_BINDING_CODE#</Param> </Binding> <Binding EventID="AXIS_THROTTLE_SET"> <Param Type="Int" RPN="True">#THROTTLE_AXIS_BINDING_CODE#</Param> </Binding> <Binding EventID="THROTTLE#ID#_SET"> <Param Type="Int" RPN="True">#THROTTLE_AXIS_BINDING_CODE#</Param> </Binding> <Binding EventID="THROTTLE_SET"> <Param Type="Int" RPN="True">#THROTTLE_AXIS_BINDING_CODE#</Param> </Binding> <Binding EventID="THROTTLE#ID#_AXIS_SET_EX1"> <Param Type="Int" RPN="True">#THROTTLE_AXIS_BINDING_CODE#</Param> </Binding> <Binding EventID="THROTTLE_AXIS_SET_EX1"> <Param Type="Int" RPN="True">#THROTTLE_AXIS_BINDING_CODE#</Param> </Binding> <Binding EventID="THROTTLE#ID#_FULL"> <Param Type="Int" RPN="True">100</Param> </Binding> <Binding EventID="THROTTLE_FULL"> <Param Type="Int" RPN="True">100</Param> </Binding> <Binding EventID="THROTTLE#ID#_CUT"> <Param Type="Int" RPN="True">0</Param> </Binding> <Binding EventID="THROTTLE_CUT"> <Param Type="Int" RPN="True">0</Param> </Binding> </Bindings> </Set> It is working perfectly fine when assigning my throttle axis inside MFS controls options. However, if I use FSUIPC to bind my throttle axis (using "Send to FS as normal axis" with "Axis Throttle 1 Set"), this InputEvent is never called. I can see in FSUIPC console that the InputEvent is not received. Do I need additional code in my XML is order to solve the problem? Thanks!
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use. Guidelines Privacy Policy We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.