Bitburner-Scripts/servers/home/hack.ts

11 lines
267 B
TypeScript
Raw Normal View History

2023-11-03 18:42:37 -03:00
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)
}
}