💻 HID MODE
Quote Types
Style | Example | Best For |
---|---|---|
"double" | writeLn "multi word text" | Standard text/phrases |
'single' | writeLn 'another value' | Alternative text quoting |
`back` | writeLn `special$chars` | Code/commands with symbols |
Keyboard Commands
Description: Prints the provided text as keyboard input.
Syntax:
Example:
Mouse Commands
Description: Moves the mouse cursor by a specified number of pixels.
Max X, Y Value: 127 to -128 (use 100 to -100 for Stable Movement)
Syntax:
Example:
Miscellaneous Commands
Description: Pauses execution for a specified amount of milliseconds.
Syntax:
Example:
Automation Commands
Description: Monitors a specific keyboard state (CapsLock, NumLock, or ScrollLock) and waits for it to change. The function will break out of the loop when the desired state change is detected.
Supported Keys:
capslock
,numlock
,scrolllock
Syntax:
Example:
Mode Configuration Commands
Description: Enables Mass Storage Controller (MSC) mode, making the device appear as a USB storage device.
Parameters:
volumeName
: The name that will appear for the storage deviceproductId
: Manufacturer product ID stringvendorId
: Manufacturer vendor ID string
Syntax:
Example:
This command initializes MSC mode. Use attackMode MSC false
to disable it.
Valid Command Usage
Invalid Command Usage
Always verify your command syntax. When in doubt, enclose arguments in quotes.