Files
The_Bitburner_Scripts/Mizzajl/home/corp/SetSalePrices.js
2024-10-14 15:49:08 +02:00

7 lines
309 B
JavaScript

/** @param {NS} ns */
export async function main(ns) {
let [sDivName, sCity, oCurrentGoods] = ns.args;
oCurrentGoods = JSON.parse(oCurrentGoods);
ns.corporation.sellMaterial(sDivName,sCity,oCurrentGoods.sMaterialName,oCurrentGoods.yAmount,oCurrentGoods.yPrice);
ns.writePort(ns.pid, true);
}