diff --git a/Scripting.md b/Scripting.md index 4d016c5..5389dbb 100644 --- a/Scripting.md +++ b/Scripting.md @@ -16,7 +16,7 @@ GodMode9 scripts resemble shell scripts. Comments are denoted by `#` and work an An unknown command will lead to a script abort. #### Wildcards -(please reword this better, I don't know how to say it well) - (short explanation of what they do here) - GodMode9 has support for two types of Wildcards, `*` and `?`. `*` will check for anything of any length, while `?` will check for only one character (multiple `?` can be used in a row to make a set amount of characters) +A wildcard is a character that will be seen as any character or sequence of characters in a search. GodMode9 has support for two types of Wildcards, `*` and `?`. `*` will check for anything of any length, while `?` will check for only one character (multiple `?` can be used in a row to make a set amount of characters). #### `-o` and `-s` Switches You can use `-o` and/or `-s` switches on any command, or `--optional` / `--silent` respectively. `-o` Continues on failures of a command, and `-s` will try to suppress all error messages.