This commit is contained in:
2023-08-29 03:50:21 +02:00
parent af84e9b05f
commit 673abd49b2
9 changed files with 133 additions and 130 deletions
+3 -7
View File
@@ -3,12 +3,8 @@
export async function main(ns) {
ns.disableLog('ALL');
for (let server = 0; server <= ns.args[0]; server++) {
for (let server = 0; ns.serverExists(`home-${server}`); server++) {
ns.scp('grow-helper.js', `home-${server}`, 'home');
ns.exec('grow-helper.js', `home-${server}`, 5, 20);
ns.exec('grow-helper.js', `home-${server}`, 10);
}
}
}