Shop¶
The Screaming BedWars plugin uses our custom library, SimpleInventories, to create and render inventory-based GUIs, including shops. This article covers the basics of the shop item format. For more advanced features, see the SimpleInventories Wiki.
Creating a new item¶
To create a new item, you need to know the item's internal name. You can look it up on the Minecraft Wiki. The name usually starts with minecraft:
, but this prefix can be omitted.
In legacy environments (1.8.8–1.12.2), you can also use modern names. If they don’t work, refer to this page for old material names. Keep in mind that old names are deprecated and may not be supported in future BedWars releases.
There are two supported formats for defining items: short stack
and long stack
.
Using short stack¶
The short stack format supports only the material name, amount, display name, and lore. Except for the material, all parts are optional and separated by semicolons (;
).
1 2 3 4 5 |
|
To make the item purchasable, add for <amount> <resource>
:
1 2 3 4 5 |
|
In order to use additional attributes (like properties
used for Special items), simply convert the string format into a map with stack
and price
keys:
1 2 3 4 5 6 7 8 9 |
|
Using long stack¶
The long stack format allows full control over the item—enchantments, lore, display name, etc.
Let's see the previous example rewritten using long stacks:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
|
Now, let's enchant our Super Pickaxe with Fortune III.
1 2 3 4 5 6 |
|
For enchantment names, refer to this list.
See this page for a complete list of available options.
Using item as a category¶
You can use any item as a category entry (even if the item is in another category). When players click the item, it opens the corresponding subcategory. This is simply done by adding a new list to our item called items
. The format of items
inside a category is the same as in the base data
list.
1 2 3 4 5 6 7 8 |
|
Custom items¶
Sometimes, you may want to sell items that cannot be represented with long stack options alone. In such cases, use the tag
field to define additional item data using SNBT (stringified NBT) format.
Example:
1 2 3 |
|
This creates a diamond pickaxe with Fortune III. Keep in mind the tag format depends on the Minecraft version.
Tag in newer versions¶
Since Minecraft 1.20.5, item data uses the new data components format. Here's how the same pickaxe would be defined in Minecraft 1.21.4:
1 2 3 |
|
Note that this SNBT format required by tag
differs slightly from the command format nowadays used in-game:
1 |
|
To convert such a command into valid tag format:
- Extract the bracketed part:
1
[enchantments={levels:{fortune:3}}]
- Replace
[
at the beginning with{
and]
at the end with}
:1
{enchantments={levels:{fortune:3}}}
- Replace all top-level
=
signs with:
:1
{enchantments:{levels:{fortune:3}}}
Now you've got a valid value for the tag
key.
Upgrading items with tag¶
Because tags are version-specific, upgrading the server may break older tags. Since Screaming BedWars 0.2.27, you can add a DataVersion
field to let the game upgrade the tag:
1 2 3 4 |
|
Here, 1343
is the data version for Minecraft 1.12.2
. The tag will be upgraded when having server on newer versions everytime the server is loaded. The file itself remains unchanged.
You can find Minecraft data versions on this wiki page.
Item Positioning¶
By default, items are rendered in order from left to right, top to bottom. However, SimpleInventories (and therefore Screaming BedWars) allows you to control the layout using positioning directives. These can help with alignment, spacing, and organizing items into rows, columns, or even multiple pages.
skip
¶
Skips a number of slots before placing the next item.
1 2 |
|
column
and row
¶
Use these to place an item in a specific column or row. column
starts from 0
, while row
starts from 1
.
For column
, you can also use special values: left
, center
, and right
instead of a number.
1 2 3 4 5 |
|
linebreak
¶
Forces the next item to be placed on a new row. Think of it as pressing "Enter" after an item.
There are three valid values for linebreak
:
* before
- Breaks the line before the item is rendered
* after
- Breaks the line after the item is rendered
* both
- Applies both before
and after
1 2 |
|
pagebreak
¶
Forces the next item to be placed on a new page.
Like linebreak
, pagebreak
accepts three values:
* before
- Breaks the page before the item is rendered
* after
- Breaks the page after the item is rendered
* both
- Applies both before
and after
1 2 3 4 |
|
absolute
(not recommended)¶
Places an item at an exact slot index (starting from 0
). This bypasses all automatic positioning logic and should only be used if you need full manual control.
1 2 |
|
This can make layouts harder to maintain and is not recommended unless absolutely necessary.