Macro random imput delay | Razer Insider
Question

Macro random imput delay

  • 10 February 2024
  • 0 replies
  • 115 views

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


0 Replies

Be the first to reply!

Reply