Far丶果冻
按以下要求配置一个例子供我参考就行,帖子写的看不懂

创建一个图标
如果玩家没有bsp.see权限节点,那这个图标对他显示是泥土

如果玩家拥有bsp.see权限节点,那这个图标对他显示是草方块
如果玩家拥有bsp.nosee权限节点,那这个图标对他显示是菌丝



ABlueCat
刚刚看了wiki,现写的一份,不知道能不能用,不能的话告诉我:
  1. shop:
  2.   notsee:
  3.     RewardType: nothing
  4.     PriceType: free
  5.     MenuItem:
  6.     - type:DIRT
  7.     - name:&9DIRT
  8.     - amount:1
  9.     InventoryLocation: 23
  10.   see:
  11.     Condition:
  12.       - type:permission
  13.       - match:bsp.see
  14.     RewardType: nothing
  15.     PriceType: free
  16.     MenuItem:
  17.     - type:GRASS_BLOCK
  18.     - name:&9GRASS_BLOCK
  19.     - amount:1
  20.     InventoryLocation: 23
  21.   nosee:
  22.     Condition:
  23.       - type:permission
  24.       - match:bsp.nosee
  25.     RewardType: nothing
  26.     PriceType: free
  27.     MenuItem:
  28.     - type:MYCELIUM
  29.     - name:&9MYCELIUM
  30.     - amount:1
  31.     InventoryLocation: 23
复制代码

Far丶果冻
dengyu 发表于 2021-6-23 16:46
刚刚看了wiki,现写的一份,不知道能不能用,不能的话告诉我:

不能用,但足够帮助我理解怎么做了,问题已解决,感谢