Skip to content

digitalcraig/bitburner-scripts

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bitburner scripts

Welcome to my collection of Bitburner scripts. They are written using the in-game language of NetscriptJS, which is a mutation of Javascript. The approach is inspired by Mori.

If you want to play the game itself - click on the name above.

Disclaimer

I've made no attempt to make these scripts work for anyone else or be generally useful. They are likely to be broken or not be fit for any purpose at any time. They may evolve as my knowledge and experience grows or be abandoned because I got bored.

Installation

  1. Create a new script called start.js by issuing the following command: nano start.js. 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:
/** @param {NS} ns **/

// Initiate scripts

export async function main(ns) {
  if (ns.getHostname() !== "home") {
    throw new Exception("Run the script from home");
  }

  await ns.wget(
    `https://raw.githubusercontent.com/digitalcraig/bitburner-scripts/master/src/init.js?ts=${new Date().getTime()}`,
    "init.js"
  );
  ns.spawn("init.js", 1);
}
  1. Exit the nano and write in console: run start.ns

About

Repository of Bitburner scripts

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%