First commit

This commit is contained in:
gauvainboiche
2025-07-10 18:29:15 +02:00
commit 6199426d67
5 changed files with 197 additions and 0 deletions

8
weaken.js Normal file
View File

@@ -0,0 +1,8 @@
export async function main(ns) {
const args = ns.flags([['help', false]]);
const host = args._[0];
while(true) {
await ns.weaken(host);
}
}