Step by step instruction on how to get infinite profit with Corporation in two days in Bitburner.
Read More “Bitburner – How to Get All the Money With Corporation” »
This is here for accessing the achievement only. Anything else you use it for isn’t within the scope of this guide. There are tons of spoilers and experience-ruining functions contained within. If you don’t want to see them, just open the menu and select another task to close it again. Note: I had a hard…
Here’s a way to get the window object in NS2 scripts for free. The Goods const funny_window = Function(“return this”)() How it Works Pretty simple, to be honest. When you create a new function using the constructor, it runs under the window context. By returning ‘this’, you end up getting a reference to the window….
Read More “Bitburner How To Get The Window Object Without Ram Cost” »
A short guide and simple working script for initially playing with the Bitburner Stock Market. The Beginning I never knew very much about the stock market other than it was like gambling and I am just terrible at gambling – I always seem to lose. But I got to a point in my early game…
This is a shortish 500+ line all-in-one Gang script I cobbled together. List of main features: Small memory footprint (only 3 GB) SINGLE contained script (no other scripts required) Handles all Gang actions (comment me for more features) Nice HUD for at-a-glance status of gang stuff Manages recruitment, ascension, task duties Automated equipment buying with…
Read More “Bitburner – All-In-One 3GB: Gang Script with HUD” »
Basic Script for BN8.1 Advanced Script for BN8.2-3 & BN8+ Achievement in Bitburner. BN8.1 function round(value) { let signs = [“”, “k”, “m”, “b”, “t”] let which = 0 while (value > 999 || value < -999) { value = Math.round(value / 10) / 100 ++which } return value + signs[which] } /** @param {NS}…
Read More “Bitburner – BitNode 8: Ghost of Wall Street Script” »
This is a very rough and tumble automated company progression script. its main purpose is to work you through every company that has an augment list (hopefully), and even auto-promotes you if available! General Description This script moves you through every company that has an augment list that I’m aware of, checking if you have…
Read More “Bitburner Automatic Company Progression Script” »
Step by step instruction on how to get infinite profit with Corporation in two days in Bitburner.
Read More “Bitburner – How to Get All the Money With Corporation” »
For those who are looking for something useful out here. I hope you will not blindly copy/paste it in your game but will find out a few new ideas for structuring your code. Also I can see several rooms for improvements: Create supervisor process that will watch for new available nodes and nuke them for…
Simple Bot that uses math to choose the most profitable upgrade. How It Works The bot takes the following steps. Checks cost and production growth of all the possible upgrades Calculates profitable ratio of each upgrade Sorts elements by ratio descending Chooses the first element Checks if you can purchase upgrade now, if not, it…