I am having an issue defining an axis-input type preset to update multiple simvars. The following preset works as expected, for single throttle control:
One Engine Throttle#@ 16383 + 32767.0 / (>A:GENERAL ENG THROTTLE LEVER POSITION:1, percent over 100)
However, when I extend this to multiple throttles, e.g. for two throttles
Two Engine Throttle#@ 16383 + 32767.0 / (>A:GENERAL ENG THROTTLE LEVER POSITION:1, percent over 100) @ 16383 + 32767.0 / (>A:GENERAL ENG THROTTLE LEVER POSITION:2, percent over 100)
then this causes throttle 2 to jump to max straight away, with no other movement and nothing on throttle 1.
How can I send the axis input value to both (or multiple) simvars?
Is there something wrong with the calc code syntax for updating multiple a-vars? Note the parameter ('@') is being correctly substituted in both locations before being executed.
I want to do this to define a preset for 6-engine aircraft, as there don't seem to be any events/k-type vars for throttles 5 and 6.
Any ideas?