-
Notifications
You must be signed in to change notification settings - Fork 402
Command arguments
ORelio edited this page Jan 5, 2021
·
2 revisions
$ MinecraftClient.exe
--keyboard-debug Enter keyboard debug mode
BasicIO Enable basic console input output mode.
BasicIO-NoColor Enable basic console input output mode and disable console color output
--keyboard-debug
: After enter this mode, console will display the key information as you press a key.
BasicIO
: After enable this, client will print text without preserving the text you are inputting. If you are typing command while console is printing text, it can interrupt you.
<testbot> foo
>i am inputt
(some other player msg)
<testbot> foo
>i am inputt<player2> bar
ing
This is useful when the console client is executed from other process (e.g. python) which they can easily get outputted text from stdout.
BasicIO-NoColor
: Is basically the same as above but with color code removed. (§c escape codes
)