diff --git a/Writerside/hi.tree b/Writerside/hi.tree index 0923f02..18a3222 100644 --- a/Writerside/hi.tree +++ b/Writerside/hi.tree @@ -60,6 +60,7 @@ + diff --git a/Writerside/topics/How-does-it-work.md b/Writerside/topics/How-does-it-work.md new file mode 100644 index 0000000..c1b56e6 --- /dev/null +++ b/Writerside/topics/How-does-it-work.md @@ -0,0 +1,18 @@ +# How does it work? + +When you open a shulker for the first time, AxShulkers puts a UUID on it: + +img.png + +* output from /paper dumpitem + +The plugin stores everything in a database, and it finds the items based off the shulker's UUID + +img_1.png + +

So instead of storing the items within the shulker item's nbt, the plugin stores them in a database. +When a player first opens a shulker, it creates a database entry and after that it will load it into memory as a inventory. +Because of this the only way to dupe items is to find a dupe in the vanilla minecraft inventories.

+ +

However there is a big disadvantage, which is if you copy paste a shulker or duplicate them, they will share the same inventory, which is usually not what people want. +To prevent shared inventories, you must clear the UUID from shulkers with /axshulkers clear to be able to use them in crates or kits.

\ No newline at end of file diff --git a/Writerside/topics/img.png b/Writerside/topics/img.png new file mode 100644 index 0000000..d4838a9 Binary files /dev/null and b/Writerside/topics/img.png differ diff --git a/Writerside/topics/img_1.png b/Writerside/topics/img_1.png new file mode 100644 index 0000000..e1fdf72 Binary files /dev/null and b/Writerside/topics/img_1.png differ