更新于:

3.2 简单定价

配置

你可以使用 config.yml 下的 prices 部分配置来创建新的简单定价! 例如:

1
2
3
4
5
6
7
8
9
prices:
example:
economy-plugin: Vault
placeholder: '200 金币'
mmoitems-example:
hook-plugin: MMOItems
hook-item: AXE;;TEST_AXE
amount: 1
placeholder: '1 神秘斧'

此处示例包含了两个简单定价,一个是 examplemmoitems-example。你可以在商店出售的商品中的 ]buy-pricessell-prices 部分配置来通过对应种类设置使用这些数值。例如:

products:
  A:
    give-item: true
    price-mode: ALL
    product-mode: ALL
    products:
      1:
        material: APPLE
        amount: 1
    buy-prices:
      1:
        custom-type: example # <--- 新选项!
        amount: 20
        start-apply: 0
      2:
        custom-type: mmoitems-example # <--- 新选项!
        placeholder: '{amount} 把神秘斧'
        start-apply: 0

商品里面的价格也可以再设置 amount 选项,如果设置了会覆盖掉 config.yml 里面有的 amount 选项。