kaiser_ Posted July 6, 2020 Posted July 6, 2020 Hello. I want to save different kinds of information for each player, but I don't really know where to start. I need a flexible solution, so I can save objects as well. It should be possible as far as I know. Quote
kaiser_ Posted July 7, 2020 Author Posted July 7, 2020 12 hours ago, diesieben07 said: You need to attach a capability. Sorry for the late reply, I was trying to find a way to figure out my problem. So for example I want to save a list of objects, the object has two properties, one string and one int, but You can imagine any type of properties as well from strings to items or blocks. I've tried to store a list of objects like this, but this is not working. Am I missing something? Is this possible with the capability system? I would really be happy about anyone's answer. If this is a bad approach, let me know as well. Quote
kaydogz Posted July 7, 2020 Posted July 7, 2020 7 minutes ago, kaiser_ said: Sorry for the late reply, I was trying to find a way to figure out my problem. So for example I want to save a list of objects, the object has two properties, one string and one int, but You can imagine any type of properties as well from strings to items or blocks. I've tried to store a list of objects like this, but this is not working. Am I missing something? Is this possible with the capability system? I would really be happy about anyone's answer. If this is a bad approach, let me know as well. It is most definitely possible with the capability system. In your storage class, you can write your capability instance's object list to a ListNBT. Quote
TheGreyGhost Posted July 7, 2020 Posted July 7, 2020 Howdy Here are some working examples of capabilities https://github.com/TheGreyGhost/MinecraftByExample/tree/master/src/main/java/minecraftbyexample/mbe65_capability and how to convert lists etc into NBT for permanent storage https://github.com/TheGreyGhost/MinecraftByExample/blob/master/src/main/java/minecraftbyexample/mbe20_tileentity_data/TileEntityData.java -TGG Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.