There is an Add Pause button on the Edit Event Steps window. Why would I want to add a pause between event steps?
Adding a pause between event steps can be useful in some situations. For instance, you may want to have a key held down for a specific amount of time then release it, or you may want to create another complex command that performs one action, pauses, then performs another action. One common usage for a pause event step would be for creating “shot burst” commands. For instance, many FPS games will fire your weapon using the CTRL (control) key on your keyboard. So if your character had a machine gun that fired while the CTRL key was being held down, you could create a “shot burst” command using the following steps: ‘key CTRL down’, ‘pause 0.5’, ‘key CTRL up’. If you put those 3 event steps into a command’s pressed event (leave the released event empty), then the command would cause the machine gun to fire in ‘3 shot bursts’ each time you press the assigned button on your controller. This is because Pinnacle would tell your computer that the CTRL key is being held down for 0.5 seconds. Of