Skip to content

A collection of my bitburner scripts for backup/sharing purposes.

License

Notifications You must be signed in to change notification settings

JoshNotWright/BitBurnerScripts

 
 

Repository files navigation

BitBurnerScripts

A collection of my bitburner scripts for backup/sharing purposes.

Installation

  1. Create a new script called start.ns by issuing the following command: nano start.ns. Make sure you're on your home server if you're not (you can quickly go home by running home in the console).
  2. Paste the following content:
export async function main(ns) {
  if (ns.getHostname() !== "home") {
    throw new Exception("Run the script from home");
  }

  await ns.wget(
    `https://raw.githubusercontent.com/JoshNotWright/BitBurnerScripts/master/initDaemon.ns?ts=${new Date().getTime()}`,
    "initDaemon.ns"
  );
  ns.spawn("initDaemon.ns", 1);
}
  1. Exit the nano and write in console: run start.ns

About

A collection of my bitburner scripts for backup/sharing purposes.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%