Is there a way of creating random delays for the instructions? Any ideas?
Gemini told me to insert a script with:
function randomDelay() { return Math.floor(Math.random() * (max - min + 1)) + min; } var min = 100; // Mínimo retardo en milisegundos var max = 500; // Máximo retardo en milisegundos // Retardo aleatorio entre cada acción var delay = randomDelay(); Synapse.Keyboard.KeyPress(KeyboardKey.Space, delay);
But I’m not sure if this is possible