mizzajl some random comment

This commit is contained in:
2024-10-05 21:33:00 +02:00
parent 7705683965
commit ae47b87feb
70 changed files with 6037 additions and 6 deletions

View File

@@ -0,0 +1,8 @@
/** @param {NS} ns */
export async function main(ns) {
let serverList = JSON.parse(ns.read("serverList.txt"));
for (const [name, entry] of Object.entries(serverList)) {
ns.killall(name, true)
}
}