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” »
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…
A script that makes its choice based on the odds of success with the amount of money made and the time involved. How it Works By utilizing a small formula to evaluate the crime it is possible to make better choices on the outcomes. The ranking is created by taking the amount of money that…
This is an automated script for midgame (or SF1+ games) that buys and rebuys servers. It has editable variables for extra customization. About this Bot This is a bot that will: Buy servers of RAM you specify (default is half your home RAM, minimum of 32GB) Upload and execute a script of your choosing Template…
This script will fully automate the purchase of all Hacknet upgrades in the fastest method possible. The fastest method is exponential returns awarded through selecting the cheapest upgrade at all times, therefore making your money work for you faster. Determine the cheapest upgrade, wait for funds, purchase, rinse and repeat. Note: RAM Usage is 5.7GB…
Read More “Bitburner – Hacknet Manager for All Upgrades (Full Automation)” »
This script will reveal every server in Bitburner, even including those hidden ones. ServersScan Script var playerServers = [‘home’, ‘Server1’]; var serverChecked = []; var checkList = []; /** @param {NS} ns **/ export async function main(ns) { await ServersScan(ns, ‘home’); await printArray(ns, serverChecked); } /** @param {NS} ns **/ async function ServersScan(ns, target) {…