Project1

标题: 关于强行改数据库中的物品价格 [打印本页]

作者: zzz19961    时间: 2020-11-29 22:16
标题: 关于强行改数据库中的物品价格
请教一下大佬有什么插件或者脚本可以强制修改数据库中定好的某个物品价格(不是全部加减)
这种方式会不会造成存档报错或者储存读取后失效
或者有没有用变量修改物品的售出 购买价格的  求教!
作者: 347780682    时间: 2020-11-29 22:41
yep商店插件
作者: 347780682    时间: 2020-11-29 22:42
yep商店插件
作者: zzz19961    时间: 2020-11-30 09:18
347780682 发表于 2020-11-29 22:41
yep商店插件

yep商店插件 试过了,他的售出价格改不了,还是数据库里设定的一半,不能变量变动
作者: wabcmcc    时间: 2020-11-30 20:34
簡單物品售價,作者MrTS網址:https://mrtrivelrpg.wordpress.com/2016/03/15/simple-item-sell-price/
  1. //=============================================================================
  2. // MrTS_SimpleItemPrice.js
  3. //=============================================================================

  4. /*:
  5. * @plugindesc Allows to set default sell price in note tags.
  6. * @author Mr. Trivel
  7. *
  8. * @help
  9. * --------------------------------------------------------------------------------
  10. * Terms of Use
  11. * --------------------------------------------------------------------------------
  12. * Don't remove the header or claim that you wrote this plugin.
  13. * Credit Mr. Trivel if using this plugin in your project.
  14. * Free for commercial and non-commercial projects.
  15. * --------------------------------------------------------------------------------
  16. * Version 1.0
  17. * --------------------------------------------------------------------------------
  18. *
  19. * --------------------------------------------------------------------------------
  20. * Item/Weapon/Armor Tags
  21. * --------------------------------------------------------------------------------
  22. * <SellPrice: [PRICE]>
  23. * [PRICE] - default sell price.
  24. *
  25. * E.g.:
  26. * <SellPrice: 9999>
  27. * <SellPrice: 2000>
  28. * --------------------------------------------------------------------------------
  29. *
  30. * --------------------------------------------------------------------------------
  31. * Version History
  32. * --------------------------------------------------------------------------------
  33. * 1.0 - Release
  34. */

  35. (function() {
  36.         var _SceneShop_sellingPrice = Scene_Shop.prototype.sellingPrice;
  37.         Scene_Shop.prototype.sellingPrice = function() {
  38.                 if (this._item.meta.SellPrice)
  39.                         return Number(this._item.meta.SellPrice)
  40.                 else
  41.                         return _SceneShop_sellingPrice.call(this);
  42.         };
  43. })();
复制代码

作者: zzz19961    时间: 2020-12-13 10:32
wabcmcc 发表于 2020-11-30 20:34
簡單物品售價,作者MrTS網址:https://mrtrivelrpg.wordpress.com/2016/03/15/simple-item-sell-price/
...

大佬,这个和YEP的功能差不多,可以自行定义售价,但是不能游戏中按变量实时定义售价
作者: wabcmcc    时间: 2020-12-13 13:02
本帖最后由 wabcmcc 于 2020-12-13 13:06 编辑

同作者MrTS插件,稅金
利用稅金特性增加或減少價格.

MrTS_SimpleShopTax.js





欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1