Update Bladeburner help formatting

This commit is contained in:
nickofolas 2022-01-13 18:51:26 -06:00
parent c7b3b9918e
commit 4195eb759b

@ -20,13 +20,15 @@ export const ConsoleHelpText: {
" skill [action] [name] Level or display info about your Bladeburner skills", " skill [action] [name] Level or display info about your Bladeburner skills",
" start [type] [name] Start a Bladeburner action/task", " start [type] [name] Start a Bladeburner action/task",
" stop Stops your current Bladeburner action/task", " stop Stops your current Bladeburner action/task",
" ",
], ],
automate: [ automate: [
"automate [var] [val] [hi/low]", "Usage: automate [var] [val] [hi/low]",
" ", " ",
"A simple way to automate your Bladeburner actions. This console command can be used " + "A simple way to automate your Bladeburner actions. This console command can be used " +
"to automatically start an action when your stamina rises above a certain threshold, and " + "to automatically start an action when your stamina rises above a certain threshold, and " +
"automatically switch to another action when your stamina drops below another threshold.", "automatically switch to another action when your stamina drops below another threshold.",
" ",
" automate status - Check the current status of your automation and get a brief description of what it'll do", " automate status - Check the current status of your automation and get a brief description of what it'll do",
" automate en - Enable the automation feature", " automate en - Enable the automation feature",
" automate dis - Disable the automation feature", " automate dis - Disable the automation feature",
@ -42,11 +44,12 @@ export const ConsoleHelpText: {
"if your stamina is 100 or higher, and then switch to Field Analysis if your stamina drops below " + "if your stamina is 100 or higher, and then switch to Field Analysis if your stamina drops below " +
"50. Note that when setting the action, the name of the action is CASE-SENSITIVE. It must " + "50. Note that when setting the action, the name of the action is CASE-SENSITIVE. It must " +
"exactly match whatever the name is in the UI.", "exactly match whatever the name is in the UI.",
" ",
], ],
clear: ["clear", "", "Clears the console"], clear: ["Usage: clear", " ", "Clears the console", " "],
cls: ["cls", "", "Clears the console"], cls: ["Usage: cls", " ", "Clears the console", " "],
help: [ help: [
"help [command]", "Usage: help [command]",
" ", " ",
"Running 'help' with no arguments displays the general help text, which lists all console commands " + "Running 'help' with no arguments displays the general help text, which lists all console commands " +
"and a brief description of what they do. A command can be specified to get more specific help text " + "and a brief description of what they do. A command can be specified to get more specific help text " +
@ -55,9 +58,10 @@ export const ConsoleHelpText: {
" help automate", " help automate",
" ", " ",
"will display specific information about using the automate console command", "will display specific information about using the automate console command",
" ",
], ],
log: [ log: [
"log [en/dis] [type]", "Usage: log [en/dis] [type]",
" ", " ",
"Enable or disable logging. By default, the results of completing actions such as contracts/operations are logged " + "Enable or disable logging. By default, the results of completing actions such as contracts/operations are logged " +
"in the console. There are also random events that are logged in the console as well. The five categories of " + "in the console. There are also random events that are logged in the console as well. The five categories of " +
@ -75,9 +79,10 @@ export const ConsoleHelpText: {
" ", " ",
" log dis all", " log dis all",
" log en all", " log en all",
" ",
], ],
skill: [ skill: [
"skill [action] [name]", "Usage: skill [action] [name]",
" ", " ",
"Level or display information about your skills.", "Level or display information about your skills.",
" ", " ",
@ -95,9 +100,10 @@ export const ConsoleHelpText: {
"This console command can also be used to level up skills:", "This console command can also be used to level up skills:",
" ", " ",
" skill level [skill name]", " skill level [skill name]",
" ",
], ],
start: [ start: [
"start [type] [name]", "Usage: start [type] [name]",
" ", " ",
"Start an action. An action is specified by its type and its name. The " + "Start an action. An action is specified by its type and its name. The " +
"name is case-sensitive. It must appear exactly as it does in the UI. If " + "name is case-sensitive. It must appear exactly as it does in the UI. If " +
@ -110,6 +116,7 @@ export const ConsoleHelpText: {
" ", " ",
" start contract Tracking", " start contract Tracking",
" start op 'Undercover Operation'", " start op 'Undercover Operation'",
" ",
], ],
stop: ["stop", "", "Stop your current action and go idle."], stop: ["Usage: stop", " ", "Stop your current action and go idle.", " "],
}; };