2021-11-04 22:51:50 +01:00
|
|
|
export default function EchoCommand(args, context) {
|
|
|
|
if (args[1] != "on" && args[1] != "off") {
|
|
|
|
context.print(`Usage: echo <on/off>`);
|
|
|
|
} else {
|
|
|
|
context.setInputEcho(args[1] == "on" ? true : false);
|
2021-11-05 14:28:01 +01:00
|
|
|
context.print(`Command echo is now ${args[1]}.`);
|
2021-11-04 22:51:50 +01:00
|
|
|
}
|
|
|
|
}
|