10-17-2025, 03:40 PM
This should work.
Without options NoBlockInput and NoModOff the
The speed depends not on the language. It depends on: 1. The target app. 2. OS and computer speed. 3. Delays added by the "send keys" function.
Also try this. The sendL function does not use the "send keys" reliability features that interfere with triggers.
// script "BF6 spacebar.cs"
/*/ ifRunning end; /*/
script.setup(trayIcon: true, sleepExit: true, exitKey: KKey.MediaStop);
opt.key.KeySpeed = 15;
opt.key.NoBlockInput = true;
opt.key.NoModOff = true;
while (true)
{
keys.send("Space");
}Without options NoBlockInput and NoModOff the
keys.send makes triggers unreliable.The speed depends not on the language. It depends on: 1. The target app. 2. OS and computer speed. 3. Delays added by the "send keys" function.
Also try this. The sendL function does not use the "send keys" reliability features that interfere with triggers.

Having problems with quickly closing a macro