Limit amounts of shops that player can create - Ghost-chu/QuickShop-Reremake GitHub Wiki

Shop Amounts Limit (Permission Based)

QuickShop limit system can limit how many shops created by one player, you can use this feature to prevent player create too many shops.

Demo

limits:
  use: true
  default: 10
  old-algorithm: false
  ranks:
    quickshop: <-- key
      vip: 20  <-- value: amount
    bar:
      foo: 40

In the demo, player that have permission quickshop.vip can create 20 shops, and player that have permission bar.foo can create 40 shops.

Always, If player have multiple permission nodes, the node with the most quota will be applied.