更新于:

4.6 点券兑换

在本示例中,我们在商店中放置的商品与普通商品有如下不同:

  • 我们添加了 display-item 部分的配置,因为本示例中出售的物品不是真实物品;
  • 我们将价格和商品模式设置为了没有 CLASSIC_ 前缀的类型,因为我们将 start-apply 项设置为了其他值。这代表玩家前5次兑换比例是10:1,第6次开始是20:1,玩家个人每天兑换上限是10次,VIP玩家是20次,全服每日上限1000次。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
items:
A:
display-item:
material: GOLDEN_BLOCK
price-mode: ALL
product-mode: ANY
products:
1:
economy-plugin: PlayerPoints
amount: 1
buy-prices:
1:
economy-plugin: Vault
amount: 10
placeholder: '&6{amount} 枚金币'
apply: [1,2,3,4,5]
1:
economy-plugin: Vault
amount: 20
placeholder: '&6{amount} 枚金币'
start-apply: 6
buy-limits:
global: 1000
default: 10
vip: 20
buy-limits-conditions:
vip:
- 'permission: group.vip'
buy-limits-reset-mode: 'TIMED'
buy-limits-reset-time: '00:00:00'