Bitburner – Cat Viewer プログラムの作り方
Cat Viewer プログラムの作成ガイド
.ns ファイルの作成
- エディタを開く
nano GetCat.ns
- 次に、次のコードを貼り付けます:
export async function main(ns) {
await ns.wget("https://api.thecatapi.com/v1/images/search", "json.txt");
var content = await ns.read("json.txt");
var url = JSON.parse(content)[0]["url"];
await ns.write(ns.args[0], <html><body><img src=\"${url}\"></img></body></html>
, "w");
};
- 必ず Ctrl+B で保存してください!
ファイルの使用
- 猫の画像を取得するには、実行するだけです
run GetCat.ns img.txt; cat img.txt
- 別のファイル名を使用して猫の画像を保存することもできます。