Bitburner-Scripts/servers/home/hack.ts
2023-11-03 18:42:37 -03:00

11 lines
267 B
TypeScript

export async function main(ns: NS) {
const server: string = <string> ns.args[0]
while (true) {
// Guide https://darktechnomancer.github.io/#glossary-of-terms
await ns.weaken(server)
await ns.grow(server)
await ns.weaken(server)
await ns.hack(server)
}
}