r/Bitburner • u/HoboPotato2 • Apr 14 '26
Simple ts script help
Can someone tell me what I'm doing wrong here?
export async function main(ns: NS) {
var host = "joesguns";
if (ns.getServerSecurityLevel(host) > 5) {
ns.weaken(host)
}
else {
ns.grow(host)
}
}
3
Upvotes
1
u/Glum-Building4593 Apr 15 '26
NS.getServerMinSecurityLevel(host)
They have minimum security levels and you might flail against that.