Posted March 31, 20205 yr Hi, is it possible to save a resourceLocation List on the player (or similar) clientside? if so, how? i have a gui with a list of names and i want to keep those names after the client is closed and open. thanks
March 31, 20205 yr You can write a file to disk. When you need it simply read the file. Capabilities would also work, and would probably be a bit simpler to implement. Some tips: Spoiler Modder Support: Spoiler 1. Do not follow tutorials on YouTube, especially TechnoVision (previously called Loremaster) and HarryTalks, due to their promotion of bad practice and usage of outdated code. 2. Always post your code. 3. Never copy and paste code. You won't learn anything from doing that. 4. Quote Programming via Eclipse's hotfixes will get you nowhere 5. Learn to use your IDE, especially the debugger. 6. Quote The "picture that's worth 1000 words" only works if there's an obvious problem or a freehand red circle around it. Support & Bug Reports: Spoiler 1. Read the EAQ before asking for help. Remember to provide the appropriate log(s). 2. Versions below 1.11 are no longer supported due to their age. Update to a modern version of Minecraft to receive support.
March 31, 20205 yr 2 minutes ago, DavidM said: Capabilities would also work, and would probably be a bit simpler to implement. Capabilities wouldn't save the data if the mod is meant to be client side. At least not on dedicated servers. So @Tupaç is better off writing the file to disk themselves. Edited March 31, 20205 yr by Animefan8888 VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect. Forge and vanilla BlockState generator.
March 31, 20205 yr Author Ah, i see. ok is there a suggested method for saving data on disk? or you recommend anyone in special?
March 31, 20205 yr 9 hours ago, Tupaç said: Ah, i see. ok is there a suggested method for saving data on disk? or you recommend anyone in special? Either to a JSON file via the GSON library(good if you want to easily be able to read the data with your eyes) or using CompoundNBT and CompressedStreamTools. VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect. Forge and vanilla BlockState generator.
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.