プロのゲーム攻略サイト

www.zgtz168.com

Bitburner – 色を使用して印刷する

色を使って印刷する方法

コード

色を変更するには、印刷コマンドの開始時に使用可能なキーワードを使用するだけで済みます。

既知

キーワード/色

  • INFO – 青
  • 警告 – 黄色
  • 警告 – 黄色
  • エラー – 赤

以下は、利用可能な色を出力してターミナルで表示するための簡単なコードです:

/** @param {NS} ns **/
export async function main(ns) {
 ns.tprintf('INFO---available log colors:')
 ns.tprintf('INFOthey only need to be at the start')
 ns.tprintf(`otherwise INFO or others won't work`)
 ns.tprintf('WARN this is a warning')
 ns.tprintf('WARNING this is also warning')
 ns.tprintf('ERROR this is an error')
} 

これは端末に出力されます: