Files
The_Bitburner_Scripts/Ramses/home/corp/SetSalePrices.js
Philipp 15bf3332af Sync
2024-10-13 23:07:09 +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);
}