LOL_xz
商店插件如何VIP玩家商店创建的上限
例如 普通玩家10 VIP玩家 20  30 等等

93002549
打开config配置文件找到下面设置:↓
设置玩家的商店数量最大只能拥有多少个
limits:
    #设置为false将会关闭这项功能
    use: false

    #默认玩家拥有商店的最大数量
    default: 10

    #可设置该权限的玩家能拥有商店的最大数量
    ranks:
        #拥有'quickshop.vip'权限的玩家可创建20个,而不是10个
        quickshop.vip: 20

qyhaotime
以下是我配置的:

#Limits the number of shops a person can create and own at a single time.
#设置玩家的商店数量最大只能拥有多少个
limits:
    #Disable these if you're not using them! If this is false, the rest of this section is ignored
    #设置为false将会关闭这项功能
    use: true     [默认是false]  [true是开启此功能]
   
    #The default number of shops players can make
    #默认玩家拥有商店的最大数量
    default: 10
   
    #Players with these permissions can create these amounts of shops.
    #可设置该权限的玩家能拥有商店的最大数量
    ranks:
        #Anyone with 'quickshop.vip' permissions, can create 20 shops instead of 10.
        #拥有'quickshop.vip'权限的玩家可创建20个,而不是10个
        quickshop.vip1: 20 #Players with quickshop.vip can make 20 shops.
        quickshop.vip2: 40 #Players with quickshop.vip can make 40 shops.
        quickshop.vip3: 60 #Players with quickshop.vip can make 60 shops.
        quickshop.vip4: 80 #Players with quickshop.vip can make 80 shops.
        quickshop.vip5: 100 #Players with quickshop.vip can make 100 shops.
        quickshop.vip6: 130 #Players with quickshop.vip can make 130 shops.
        quickshop.vip7: 150 #Players with quickshop.vip can make 150 shops.
        quickshop.vip8: 200 #Players with quickshop.vip can make 200

LOL_xz
93002549 发表于 2017-8-16 10:31
打开config配置文件找到下面设置:↓
设置玩家的商店数量最大只能拥有多少个
limits:

谢谢解答!

LOL_xz
qyhaotime 发表于 2017-8-16 09:35
以下是我配置的:

#Limits the number of shops a person can create and own at a single time.

谢谢你的详细解答配置!