Bitburner-Scripts/servers/home/watcher.ts

15 lines
491 B
TypeScript
Raw Normal View History

2023-11-03 15:22:12 -03:00
export async function main(ns: NS) {
let hackingLevel = ns.getHackingLevel();
while (hackingLevel < 9999) {
let oldHackingLevel = hackingLevel;
hackingLevel = ns.getHackingLevel();
if(oldHackingLevel !== hackingLevel) {
ns.tprint(`Hacking level increased from ${oldHackingLevel} to ${hackingLevel}`);
ns.run("killall.js");
await ns.sleep(1000) // 1 second
ns.run("hackallservers.js");
}
2023-11-03 16:49:26 -03:00
// Wait 1 second before checking again
await ns.sleep(1000)
2023-11-03 15:22:12 -03:00
}
}