跳至主要內容

创建领地接口

LazuliKao小于 1 分钟

/// <reference path="PXBANALuminousPolymerization/scripts/node_modules/@pf/index.d.ts" />
mc.listen("onServerStarted", () => {
  $pf.event.onLandCalcPrice.subscribe((player, info) => {
    $pf.log("land calc: " + info);
    $pf.log("land calc info json: " + JSON.stringify(info));
    info.OriginalPrice; //原价
    info.SetPrice(1000, "打折描述");
  });
});
效果
效果