Skip to content

Commit 4da5b2c

Browse files
authored
Update ItemBridgeHook
1 parent 11d931d commit 4da5b2c

File tree

1 file changed

+58
-10
lines changed

1 file changed

+58
-10
lines changed

content/addon/itembridge-hook/_index.md

Lines changed: 58 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,30 +5,78 @@ weight = 1
55

66
{{% button href="https://github.com/BetterGUI-MC/ItemBridgeHook" style="gray" icon="code" %}}Code{{% /button %}} {{% button href="https://ci.codemc.io/job/BetterGUI-MC/view/Addon/job/ItemBridgeHook/" style="green" icon="download" %}}Download{{% /button %}}
77

8+
This addons add support for some plugins that generate custom items
9+
810
{{% notice warning %}}
9-
Depend: [ItemBridge](https://www.spigotmc.org/resources/itembridge-save-items-and-use-them-wherever-you-want-including-other-plugins-best-w-customitems.77080/)
11+
The item modifier is order-sensitive. You have to set it before other modifiers.
1012
{{% /notice %}}
1113

12-
## Format
14+
## [ItemBridge](https://polymart.org/product/4/)
15+
16+
### Format
1317

1418
```yaml
1519
itembridge: <id>
1620
item-bridge: <id>
1721
```
1822
19-
## Description
23+
### Example
2024
21-
This item modifier allows you to use the item with the `<id>` from [ItemBridge](https://www.spigotmc.org/resources/itembridge-save-items-and-use-them-wherever-you-want-including-other-plugins-best-w-customitems.77080/) in your menus.
25+
```yaml
26+
test-itembridge:
27+
slot: 0
28+
itembridge: "minecraft:stone"
29+
name: "&bItemBridge"
30+
```
2231
23-
## Note
32+
## [ItemsAdder](https://www.spigotmc.org/resources/73355/)
2433
25-
This item modifier is order-sensitive. You have to set it before other modifiers.
34+
### Format
2635
27-
## Example
36+
```yaml
37+
itemsadder: <id>
38+
ia: <id>
39+
```
40+
41+
### Example
2842
2943
```yaml
30-
test-itembridge:
44+
test-itemsadder:
3145
slot: 0
32-
itembridge: "minecraft:stone"
33-
name: "&bItemBridge"
46+
ia: "iasurvival:ruby_block"
47+
name: "&bItemsAdder"
48+
```
49+
50+
## [Oraxen](https://www.spigotmc.org/resources/72448/)
51+
52+
### Format
53+
54+
```yaml
55+
oraxen: <id>
56+
```
57+
58+
### Example
59+
60+
```yaml
61+
test-oraxen:
62+
slot: 0
63+
oraxen: "onyx_axe"
64+
name: "&bOraxen"
65+
```
66+
67+
## [Nexo](https://polymart.org/product/6901/)
68+
69+
### Format
70+
71+
```yaml
72+
nexo: <id>
73+
```
74+
75+
### Example
76+
77+
```yaml
78+
test-nexo:
79+
slot: 0
80+
nexo: "my_item"
81+
name: "&bNexo"
3482
```

0 commit comments

Comments
 (0)