Posted June 10, 20205 yr Hi, is there any way to create world variable from save file? Something like this: World currentWorld = new World("pathToDirectory");
June 10, 20205 yr Author I wanted to create World variable with already set parametres like WorldInfo, Seed. I need this to use create ChunkGeneratorOverworld at my client while I'm on server. 16 minutes ago, diesieben07 said: What are you trying to achieve? Are you trying to load the world?
June 10, 20205 yr Why? Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
June 10, 20205 yr Author I figured out how to get current loaded world via Minecraft class but it still probably won't work because, I suppose, you can't get full WorldInfo from server.
June 10, 20205 yr Author 3 minutes ago, Draco18s said: Why? to generate chunk at my client and then compare it with one that is on the server. for example too see what blocks got changed from natural generation.
June 10, 20205 yr Author 6 minutes ago, diesieben07 said: That won't work on servers unless you are OP, because only OPs can get the world seed. I understand, but if I know the seed and know that generation settings are default can I somehow create World object? Edited June 10, 20205 yr by foreverstranded
June 10, 20205 yr Author 17 minutes ago, diesieben07 said: You'd have to create a ServerWorld, because client worlds don't generate anything. And those rely on a MinecraftServer instance that is started... This is a big can of worms you are opening here. I see... But do you know in which class Minecraft creates MinecraftServer? Can't find EDIT: I realized it is in New instance creation Edited June 10, 20205 yr by foreverstranded
June 10, 20205 yr Author Nope, I was wrong. There is no New instace creation for MinecraftServer.java. Only instanceof in Snooper class. Is this what I need to create instance of MinecraftServer?
June 10, 20205 yr Author or I better ask: how can I create instance of MinecraftServer? Edited June 10, 20205 yr by foreverstranded
June 10, 20205 yr Author 3 minutes ago, diesieben07 said: You can look at Minecraft#launchIntegratedServer. You will most likely have to adjust it considerably, as that method shuts down everything else and prepares to join a single player game. Thanks!
June 11, 20205 yr You should really just make the mod server side and send whatever information you need from there to the client. 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.
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.