Started by
sn4p
on
Topic category: Help with Minecraft modding (Java Edition)
Is it possible to make a collector's album mod in Minecraft, so that collected items are saved across multiple pages (e.g. page 2, 3, etc.)?
Topic category: Help with Minecraft modding (Java Edition)
Is it possible to make a collector's album mod in Minecraft, so that collected items are saved across multiple pages (e.g. page 2, 3, etc.)?
Yes, it's possible but it will be a challenge. The only problem is that with MCreator there is no way to add slots (which will be used to display objects) without enabling the inventory.
Create the GUI (if you are willing to include the player's inventory). Then plot each page with a global "Player Persistent" variable and use buttons to change the value of the variable: one to increase the value and one to decrease it.
Download the Array List plugin. Then you have to create an array of ItemStaks and finally assign the item saved in the array to each slot and connect it to the number of the page in which it was saved.