diff --git a/docs-java/process/plugin/Front-Plugin/PlaceHolderAPI/CheckItem.md b/docs-java/process/plugin/Front-Plugin/PlaceHolderAPI/CheckItem.md index 8005faf0f..8cc209b04 100644 --- a/docs-java/process/plugin/Front-Plugin/PlaceHolderAPI/CheckItem.md +++ b/docs-java/process/plugin/Front-Plugin/PlaceHolderAPI/CheckItem.md @@ -48,7 +48,7 @@ sidebar_position: 4 - give 给予物品 %checkitem_give_mat:diamond% // 给予玩家一个钻石 - remove 收取物品 %checkitem_remove_mat:diamond% // 收取玩家背包中所有的钻石 - amount 查看数量 %checkitem_amount_mat:diamond% // 查看玩家背包中的钻石数量 -- getinfo 物品信息 %checkitem_getinfo:0% // 查看玩家槽位0的物品信息 +- getinfo 物品信息 下面会讲到 你应该注意到了 `mat:diamond` ,因为我写了diamond所以这些变量的功能是针对钻石的 @@ -74,6 +74,8 @@ sidebar_position: 4 ::: +### 修饰符 + 可用的修饰符有: - namecontains // 名字中包含 @@ -97,7 +99,29 @@ sidebar_position: 4 - nbtstrings // nbt - nbtints -## 例子:收取ia物品 +### getinfo + +用来获取玩家指定背包位置的物品信息 + +```text +%checkitem_getinfo:<槽位>_<修饰符1>,<修饰符2>,<...>% +``` + +特别的,\<槽位\> 可以使用 `mainhand`(手持物品) 和 `offhand`(副手物品) + +以及,**修饰符** 的 `:` 号也是需要写的,不过 `:` 之后写不写都一样 + +背包槽位可参考下图: + +![](./_images/CheckItem/玩家背包槽位图.webp) + +下方是使用案例 + +![](./_images/CheckItem/getinfo_1.png) + +![](./_images/CheckItem/getinfo_2.png) + +### 例子:收取ia物品 收取指定ia物品的指定数量 diff --git a/docs-java/process/plugin/Front-Plugin/PlaceHolderAPI/_images/CheckItem/getinfo_1.png b/docs-java/process/plugin/Front-Plugin/PlaceHolderAPI/_images/CheckItem/getinfo_1.png new file mode 100644 index 000000000..53964a18e Binary files /dev/null and b/docs-java/process/plugin/Front-Plugin/PlaceHolderAPI/_images/CheckItem/getinfo_1.png differ diff --git a/docs-java/process/plugin/Front-Plugin/PlaceHolderAPI/_images/CheckItem/getinfo_2.png b/docs-java/process/plugin/Front-Plugin/PlaceHolderAPI/_images/CheckItem/getinfo_2.png new file mode 100644 index 000000000..f4c291021 Binary files /dev/null and b/docs-java/process/plugin/Front-Plugin/PlaceHolderAPI/_images/CheckItem/getinfo_2.png differ diff --git a/docs-java/process/plugin/Front-Plugin/PlaceHolderAPI/_images/CheckItem/玩家背包槽位图.webp b/docs-java/process/plugin/Front-Plugin/PlaceHolderAPI/_images/CheckItem/玩家背包槽位图.webp new file mode 100644 index 000000000..cf5fbea81 Binary files /dev/null and b/docs-java/process/plugin/Front-Plugin/PlaceHolderAPI/_images/CheckItem/玩家背包槽位图.webp differ