Mantis SET_DELAY Command
The Mantis SET_DELAY command sets a global, fixed interval (in milliseconds) that Mantis waits between typing each individual character.
While DELAY inserts a one-time pause, SET_DELAY configures the inter-keystroke pacing for all subsequent STRING and keystroke commands.
What It Does
- Establishes a predictable cadence between every key down and key up event.
- Helps prevent buffer overflow on legacy hardware or remote desktop sessions (RDP/VNC).
- Overrides default hardware typing speed until changed by another
SET_DELAYorSET_SPEEDcall.
Syntax & Parameters
hello.mantis
1SET_DELAY <milliseconds>Parameters
<milliseconds>(required): Number of milliseconds to pause between each character (typical values:10to50).
Examples & Payload Snippets
hello.mantis
1REM Allow USB enumeration2DELAY 100034REM Set fixed 35ms pause between each character5SET_DELAY 3567GUI r8DELAY 5009STRINGLN notepad10DELAY 10001112STRING This text is typed with exactly 35ms between every character.Related Commands
Last updated on