Welcome to my log of Bitburner scripts. They are written using the in-game language of NetscriptJS, which is a mutation of Javascript.
If you want to play the game itself - click on the name above.
The script has been modified to be able to start on 8 GB (the default starting RAM for a player) on the home
server. Obviously, when you expand the memory available, you'll get extra perks - being able to buy and manage player-owned servers, as well as using spare RAM to do actions.
The script can be slow to get going, but it'll get there eventually. Getting access to more port hackers will improve the performance.
- 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 runninghome
in the console). - 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/rlarrode/bitburner/master/src/initHacking.ns?ts=${new Date().getTime()}`,
"initHacking.ns"
);
ns.spawn("initHacking.ns", 1);
}
- Exit the nano and write in console:
run start.ns