Files
The_Bitburner_Scripts/Ramses/home/corp/SetSmartSupply.js
2024-10-11 00:38:54 +02:00

6 lines
177 B
JavaScript

/** @param {NS} ns */
export async function main(ns) {
let [sDivName, sCity] = ns.args;
ns.corporation.setSmartSupply(sDivName, sCity, true);
ns.writePort(ns.pid, true);
}