diff --git a/README.md b/README.md index 5e67416..0ba4bf9 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,9 @@ the directory to the PATH-Environment-Variable. | cTIME | v2 | `cTIME ` | Converts a Millisecond-Unix-Timestamp to human-readable time, ready to output. | | MAKEANIMATION | v1 | `MAKEANIMATION [WORD]` | Outputs a valid animation value for the `ANIMATION` command.

Types:
`Rotate`:
`0 - / - \ \|`
`1 - ^ > V <`
`2 - + x`
`3 - p d b q`
`Range`:
Returns a set of numbers from 0 to the given number.
`Alphabet`:
Returns **n** letters of the alphabet. Maximum is 26.
`Appear`
Accepts the **WORD** Parameter, while a *0* for **Sub** is required. It makes the given word appear one letter at a time. | | PRINT | v1 | `PRINT ` | Prints the **String**. Only difference to the built-in `echo` is that no newline is added at the end. | +| READKEY | v3 | `READKEY ` | Waits **MS** Milliseconds for a keypress, then returns 0. The returned number when a key is pressed consists of two values:
Example: `7068`
The *68* stands for the KeyCode of the pressed key, in this case *D*. The 7 at the beginning stands for the Modifier-buttons that were pressed:
`0 - None, 1 - Alt, 2 - Shift, 3 - Alt+Shift, 4 - Control, 5 - Control+Alt, 6 - Control+Shift, 7 - Control+Alt+Shift`.
These values can be extracted using *Division* and *Modulo*. | +| SLEEP | v3 | `SLEEP ` | Pauses the script for **MS** Milliseconds. | +| STARTINVISBLE | v3 | `STARTINVISIBLE