Author Topic: How do I get VA to perform multiple simultaneous inputs?  (Read 1174 times)

DanTheMan777

  • Guest
How do I get VA to perform multiple simultaneous inputs?
« on: February 24, 2019, 11:27:20 AM »
Is there a way to get VA to perform multiple simultaneous inputs? For example instead of pressing A then B (e.g. punch then kick) on the keyboard is there a way to make VA press A+B (e.g. grab)? I'd like to do this for games that require a single simultaneous button press for something like a grab or special move, without triggering each button's individual output.

Pfeil

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 4759
  • RTFM
Re: How do I get VA to perform multiple simultaneous inputs?
« Reply #1 on: February 24, 2019, 12:11:23 PM »
You can use separate press and release actions(as opposed to doing the press, hold, and release in a single action):

Code: [Select]
Press down A key
Press down B key
Pause 0,06 seconds
Release B key
Release A key

DanTheMan777

  • Guest
Re: How do I get VA to perform multiple simultaneous inputs?
« Reply #2 on: February 25, 2019, 05:07:01 PM »
You can use separate press and release actions(as opposed to doing the press, hold, and release in a single action):

Code: [Select]
Press down A key
Press down B key
Pause 0,06 seconds
Release B key
Release A key

Thanks. I'll try this out.