- Messages
- 2
- Country

Hello,
The pushback tug is really a tricky one. I am trying to simulate a tug connect and wait scenario but unfortunately the tug starts with the pushback as soon as it is connected. I have also tried to set the tug speed to zero but that doesnt stops the tug from pushing! Can some one help me out how to prevent the tug from pushing by its own once it is connected?
I am thankful for any help!
The pushback tug is really a tricky one. I am trying to simulate a tug connect and wait scenario but unfortunately the tug starts with the pushback as soon as it is connected. I have also tried to set the tug speed to zero but that doesnt stops the tug from pushing! Can some one help me out how to prevent the tug from pushing by its own once it is connected?
C#:
// Mapping
_simconnect.MapClientEventToSimEvent(EVENTS.KEY_PUSHBACK_SET, "TOGGLE_PUSHBACK");
_simconnect.MapClientEventToSimEvent(EVENTS.KEY_TUG_SPEED, "KEY_TUG_SPEED");
// Transmitting
_simconnect.TransmitClientEvent(0, EVENTS.KEY_PUSHBACK_SET, 1, NOTIFICATION_GROUPS.GROUP0, SIMCONNECT_EVENT_FLAG.GROUPID_IS_PRIORITY);
_simconnect.TransmitClientEvent(0, GROUND_SERVICE_EVENTS.KEY_TUG_SPEED, 0, NOTIFICATION_GROUPS.GROUP0, SIMCONNECT_EVENT_FLAG.GROUPID_IS_PRIORITY);
I am thankful for any help!