Jump to content

Recommended Posts

  • Replies 87
  • Created
  • Last Reply

Top Posters In This Topic

Posted

Seriously go learn Java!!!

 

Or at least learn to google basic java questions..

This has little to do with the forge API and is purely a Java question, a basic such as well..

 

Here ya go anyways -_-

[lmgtfy=save int to file java]Saving ints to file[/lmgtfy]

If you guys dont get it.. then well ya.. try harder...

Posted

Seriously go learn Java!!!

 

Or at least learn to google basic java questions..

This has little to do with the forge API and is purely a Java question, a basic such as well..

 

Here ya go anyways -_-

[lmgtfy=save int to file java]Saving ints to file[/lmgtfy]

 

Im trying my best here dude, no need to be rude. And I have googled that at least 6 different ways and nothing I try works.

Posted

I'm pretty sure that's about as non-rude as I could get..

And I also gave you the link which would answer your questions I believe?

 

If they didn't work, then why not mention what you tried and what failed, and since it's not within the scope of this board to do java basics why not use stackexchange or some other page which is made around dealing with basic/general java/programming questions? :)

 

The method in one of the top links using writer works I have used it before in some of my programs.

And this from another of the top hits also works fine:

http://www.java-examples.com/write-int-file-using-dataoutputstream

 

If you can't get them to work I suggest you open a new project and try to just get this function to work as you wish, then do the reading part as well, after that you should be able to open your modding project and do the same there :)

 

 

 

 

If you guys dont get it.. then well ya.. try harder...

Posted

I'm pretty sure that's about as non-rude as I could get..

And I also gave you the link which would answer your questions I believe?

 

If they didn't work, then why not mention what you tried and what failed, and since it's not within the scope of this board to do java basics why not use stackexchange or some other page which is made around dealing with basic/general java/programming questions? :)

 

The method in one of the top links using writer works I have used it before in some of my programs.

And this from another of the top hits also works fine:

http://www.java-examples.com/write-int-file-using-dataoutputstream

 

If you can't get them to work I suggest you open a new project and try to just get this function to work as you wish, then do the reading part as well, after that you should be able to open your modding project and do the same there :)

 

Heres the code im trying to set up to save and get.

 

package mods.cyphereion.cyphscape.levels;

import java.io.FileWriter;
import java.io.Writer;

import org.lwjgl.input.Keyboard;

import cpw.mods.fml.common.registry.GameRegistry;
import mods.cyphereion.cyphscape.blocks.BlockCopper;
import mods.cyphereion.cyphscape.core.Core;
import mods.cyphereion.cyphscape.core.CyphScapeMaterials;
import net.minecraft.block.Block;
import net.minecraft.entity.EntityLiving;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
import net.minecraft.src.ModLoader;
import net.minecraft.world.World;

public class Levels {

public static int MiningLevel;
public static int MiningXp;

public void levelCap(EntityPlayer par1EntityPlayer){
	if(MiningLevel > 100){
		MiningLevel = 100;
	}
}

public void onUpdate(EntityPlayer par1EntityPlayer) {
	for (int i = 0; i < 61; i++) {
		if (MiningXp / 50 == i) {
			MiningLevel = i;

		}

	}
}

public int getMiningLevel() {
	for (int i = 0; i < 61; i++) {
		if (MiningXp / 50 == i) {
			return MiningLevel = i;
		}
	}
	return 0;

}
}

Posted

I'm pretty sure that's about as non-rude as I could get..

And I also gave you the link which would answer your questions I believe?

 

If they didn't work, then why not mention what you tried and what failed, and since it's not within the scope of this board to do java basics why not use stackexchange or some other page which is made around dealing with basic/general java/programming questions? :)

 

The method in one of the top links using writer works I have used it before in some of my programs.

And this from another of the top hits also works fine:

http://www.java-examples.com/write-int-file-using-dataoutputstream

 

If you can't get them to work I suggest you open a new project and try to just get this function to work as you wish, then do the reading part as well, after that you should be able to open your modding project and do the same there :)

 

Heres the code im trying to set up to save and get.

 

package mods.cyphereion.cyphscape.levels;

import java.io.FileWriter;
import java.io.Writer;

import org.lwjgl.input.Keyboard;

import cpw.mods.fml.common.registry.GameRegistry;
import mods.cyphereion.cyphscape.blocks.BlockCopper;
import mods.cyphereion.cyphscape.core.Core;
import mods.cyphereion.cyphscape.core.CyphScapeMaterials;
import net.minecraft.block.Block;
import net.minecraft.entity.EntityLiving;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
import net.minecraft.src.ModLoader;
import net.minecraft.world.World;

public class Levels {

public static int MiningLevel;
public static int MiningXp;

public void levelCap(EntityPlayer par1EntityPlayer){
	if(MiningLevel > 100){
		MiningLevel = 100;
	}
}

public void onUpdate(EntityPlayer par1EntityPlayer) {
	for (int i = 0; i < 61; i++) {
		if (MiningXp / 50 == i) {
			MiningLevel = i;

		}

	}
}

public int getMiningLevel() {
	for (int i = 0; i < 61; i++) {
		if (MiningXp / 50 == i) {
			return MiningLevel = i;
		}
	}
	return 0;

}
}

That's going to cause problems if you try to use it on a server. You don't want to save that in a Configuration; you want to use EntityPlayer.registerExtendedProperties().

BEWARE OF GOD

---

Co-author of Pentachoron Labs' SBFP Tech.

Posted

I'm pretty sure that's about as non-rude as I could get..

And I also gave you the link which would answer your questions I believe?

 

If they didn't work, then why not mention what you tried and what failed, and since it's not within the scope of this board to do java basics why not use stackexchange or some other page which is made around dealing with basic/general java/programming questions? :)

 

The method in one of the top links using writer works I have used it before in some of my programs.

And this from another of the top hits also works fine:

http://www.java-examples.com/write-int-file-using-dataoutputstream

 

If you can't get them to work I suggest you open a new project and try to just get this function to work as you wish, then do the reading part as well, after that you should be able to open your modding project and do the same there :)

 

Heres the code im trying to set up to save and get.

 

package mods.cyphereion.cyphscape.levels;

import java.io.FileWriter;
import java.io.Writer;

import org.lwjgl.input.Keyboard;

import cpw.mods.fml.common.registry.GameRegistry;
import mods.cyphereion.cyphscape.blocks.BlockCopper;
import mods.cyphereion.cyphscape.core.Core;
import mods.cyphereion.cyphscape.core.CyphScapeMaterials;
import net.minecraft.block.Block;
import net.minecraft.entity.EntityLiving;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
import net.minecraft.src.ModLoader;
import net.minecraft.world.World;

public class Levels {

public static int MiningLevel;
public static int MiningXp;

public void levelCap(EntityPlayer par1EntityPlayer){
	if(MiningLevel > 100){
		MiningLevel = 100;
	}
}

public void onUpdate(EntityPlayer par1EntityPlayer) {
	for (int i = 0; i < 61; i++) {
		if (MiningXp / 50 == i) {
			MiningLevel = i;

		}

	}
}

public int getMiningLevel() {
	for (int i = 0; i < 61; i++) {
		if (MiningXp / 50 == i) {
			return MiningLevel = i;
		}
	}
	return 0;

}
}

That's going to cause problems if you try to use it on a server. You don't want to save that in a Configuration; you want to use EntityPlayer.registerExtendedProperties().

 

Its strictly singleplayer.

Posted

 

 

There's a local server even when you are playing on SSP, so there's a server and a client anyways

I know that but is all I need it to do is save and load from a file. The rest I can do myself.

Posted

I'm pretty sure that's about as non-rude as I could get..

And I also gave you the link which would answer your questions I believe?

 

If they didn't work, then why not mention what you tried and what failed, and since it's not within the scope of this board to do java basics why not use stackexchange or some other page which is made around dealing with basic/general java/programming questions? :)

 

The method in one of the top links using writer works I have used it before in some of my programs.

And this from another of the top hits also works fine:

http://www.java-examples.com/write-int-file-using-dataoutputstream

 

If you can't get them to work I suggest you open a new project and try to just get this function to work as you wish, then do the reading part as well, after that you should be able to open your modding project and do the same there :)

 

Heres the code im trying to set up to save and get.

 

package mods.cyphereion.cyphscape.levels;

import java.io.FileWriter;
import java.io.Writer;

import org.lwjgl.input.Keyboard;

import cpw.mods.fml.common.registry.GameRegistry;
import mods.cyphereion.cyphscape.blocks.BlockCopper;
import mods.cyphereion.cyphscape.core.Core;
import mods.cyphereion.cyphscape.core.CyphScapeMaterials;
import net.minecraft.block.Block;
import net.minecraft.entity.EntityLiving;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
import net.minecraft.src.ModLoader;
import net.minecraft.world.World;

public class Levels {

public static int MiningLevel;
public static int MiningXp;

public void levelCap(EntityPlayer par1EntityPlayer){
	if(MiningLevel > 100){
		MiningLevel = 100;
	}
}

public void onUpdate(EntityPlayer par1EntityPlayer) {
	for (int i = 0; i < 61; i++) {
		if (MiningXp / 50 == i) {
			MiningLevel = i;

		}

	}
}

public int getMiningLevel() {
	for (int i = 0; i < 61; i++) {
		if (MiningXp / 50 == i) {
			return MiningLevel = i;
		}
	}
	return 0;

}
}

That's going to cause problems if you try to use it on a server. You don't want to save that in a Configuration; you want to use EntityPlayer.registerExtendedProperties().

 

If a config won't work then a hashmap maybe?

Posted

Why do you need it saved to a file?? Oh right, you need some way of doing NBT saves.

 

Try doing something like so:

[urlhttps://github.com/ModderPenguin/MinePG/blob/master/source/minepg/rpg_common/rpg/playerinfo/PlayerInformation.java[/url]

I am Mew. The Legendary Psychic. I behave oddly and am always playing practical jokes.

 

I have also found that I really love making extremely long and extremely but sometimes not so descriptive variables. Sort of like what I just did there xD

Posted

Why do you need it saved to a file?? Oh right, you need some way of doing NBT saves.

 

Try doing something like so:

[urlhttps://github.com/ModderPenguin/MinePG/blob/master/source/minepg/rpg_common/rpg/playerinfo/PlayerInformation.java[/url]

That source code is a bust, its very hard to understand someone elses coding when it gets to that level. I need someone to explain this to me so that Im learning. Not being a scriptkitty, im trying to get out of that.

Posted
That source code is a bust, its very hard to understand someone elses coding when it gets to that level. I need someone to explain this to me so that Im learning. Not being a scriptkitty, im trying to get out of that.

 

I also am not being rude, but you should never accuse anyone of being rude when asking for help through a text means... that is actually rude in itself, but forgivable as it is frustrating getting something to work. If you cannot be bothered reading other peoples code then no one will want to help you... I don't think that's what you meant at all but if you are seriously considering modding, then you'll need to read a lot of other peoples code, and it will sometimes be very long and complex but should be well documented with comments. This API is not official and it's very obscured still. I understand your need to learn to gain the satisfaction of progress however, as you probably know, we all cannot help as much as we might like as we are working on projects, feeding family, working, and doing other things important to our own progress. Keep that in mind first and foremost when asking a question. Also, give a very good indication of your current skills, knowledge, and exactly what it is you want to achieve in your code. Saving an int to a file is generic. It would help to know what the purpose of doing so is and think how that feature may evolve later.

 

It's good to want to get better but I'd have to know a lot more about your current knowledge of java and forge to help teach you something. Have you done all of the Basic tutorials? http://www.minecraftforge.net/wiki/Tutorials. Indispensable. If it becomes frustrating to follow just keep trying. You can teach yourself anything if you apply yourself and do not allow frustration to set in. I have a feeling if you have a decent enough base knowledge of java that following the basic tutorials will allow you to intuitively discover your solutions for quite sometime. I do understand the frustration that can come if you are just getting into things as a new coder. I guess the idea is that if someone does it for you you won't learn anything, but no one should have a problem if you don't understand a particular class, in giving you some ideas or help.

 

If you are simply wanting persistent data that saves and loads on a save game, you should grok the classes for NBTTagCompounds.  This is how Vanilla saves most of it's persistent/unique data when the game saves. If you have something else in mind that minecraft doesn't already do then you may need your own data file system... however I doubt it would be necessary. It does require knowledge of java's file input/output classes. If you don't understand them, I suggest you try a basic java app first then play with the classes. If your knowledge of java is up to snuff then I'd master all the knowledge gained from the Basic Tutorials then amaze yourself at how much can be learned with a bit of patience and persistence.

 

Also, let the vanilla source guide you. ctrl+H in eclipse will let you search for text in all the packages open in your project. It's probably done me more good than the tutorials...

 

Update:

I just remembered something important. I understand that you are making a SSP mod. It is important to understand that a client and server are running even in SSP. Not much gets sent to the Client but rendering data. Even the levels, skills, other info would be on the server and the server value would be passed to the client either through a datawatcher or packet. I think the concept works best mentally if you say that the client cannot be trusted. The server is the master in this case and does all the saving of data. It's probably less intuitive but things got easier for me when dealing with Server/Client relations when I thought of it that way. But that could just be me.

Posted

Dude I've tried literally everything that I can think of. Hashmap's, NBT, FileWriter. But none of it seems to work for me. I've just never worked with these elements before and can't find anyone who knows or is willing to help me here. And btw I did read that guys code, actually I stripped it down and tried it then but it was still broken.

Posted

Step 1: get a reference to the player (object type EntityPlayer)

Step 2: get a reference to the player's NBT data:

player.getEntityData()

Step 3: write an integer to it:

nbt.setInteger("MiningLevel",lv);

Step 4: anywhere you need to reference the mining level, read it from the NBT:

nbt.getInteger("MiningLevel");

Step 5: if it changes, go to step 3.

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.

Posted

Step 1: get a reference to the player (object type EntityPlayer)

Step 2: get a reference to the player's NBT data:

player.getEntityData()

Step 3: write an integer to it:

nbt.setInteger("MiningLevel",lv);

Step 4: anywhere you need to reference the mining level, read it from the NBT:

nbt.getInteger("MiningLevel");

Step 5: if it changes, go to step 3.

 

Is there anything that I am missing here?

 public static void hashSaving(EntityPlayer player){
    	player.getEntityData();
    	map.put("MiningXp", MiningXp);
    	map.put("MiningLevel", MiningLevel);
    	map.put("SmithingXp", SmithingXp);
    	map.put("SmithingLevel", SmithingLevel);
    }
    
    public void getMiningXp(){
    	map.get("MiningXp");
    }
    public void getSmithingXp(){
    	map.get("SmithingXp");
    }

 

Note: I can change the integer values but they don't save.

Posted

Is there anything that I am missing here?

 public static void hashSaving(EntityPlayer player){
    	player.getEntityData();
    	map.put("MiningXp", MiningXp);
    	map.put("MiningLevel", MiningLevel);
    	map.put("SmithingXp", SmithingXp);
    	map.put("SmithingLevel", SmithingLevel);
    }
    
    public void getMiningXp(){
    	map.get("MiningXp");
    }
    public void getSmithingXp(){
    	map.get("SmithingXp");
    }

 

Note: I can change the integer values but they don't save.

 

Well you're kinda missing the entire read/write nbt parts...

 

 public static void hashSaving(EntityPlayer player){
              NBTTagCompound nbt = player.getEntityData();
              nbt.setInteger("MiningXp", MiningXp);
              nbt.setInteger("MiningLevel", MiningLevel);
              nbt.setInteger("SmithingXp", SmithingXp);
              nbt.setInteger("SmithingLevel", SmithingLevel);
    }
    
    public int getMiningXp(EntityPlayer player){
              NBTTagCompound nbt = player.getEntityData();
              return nbt.getInteger("MiningXp");
    }
    public int getSmithingXp(EntityPlayer player){
              NBTTagCompound nbt = player.getEntityData();
              return nbt.getInteger("SmithingXp");
    }

 

Edit: Tab-space derp

Posted

deadrecon, I don't suppose I could see the whole class could I? I'm trying to figure out the whole NBT on the player thing atm, can't quite figure it out... :P

 

Yes you may see it. If you need anything else just ask, I really want to get this done so that I can start working on the modding API for it :P

 

package mods.cyphereion.cyphscape.levels;

import java.util.HashMap;
import java.util.Set;

import net.minecraft.entity.Entity;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.nbt.NBTTagList;
import net.minecraft.world.World;
import net.minecraftforge.common.IExtendedEntityProperties;

public final class Levels {
  
/**
 * Creates the hashmap.
 */
public static HashMap map = new HashMap();

 /**
     * The total Mining Experience.
     */
    public static int MiningXp = 0;
    
    /**
     * The total Mining Level.
     */
    public static int MiningLevel = 0;
    
    /**
     * The total smithing xp.
     */
    public static int SmithingXp = 0;
    
    /**
     * The total smithing Level.
     */
    public static int SmithingLevel = 0;
    
    public static void hashSaving(EntityPlayer player, World par2World){
    	player.getEntityData();
    	map.put("MiningXp", MiningXp);
    	map.put("MiningLevel", MiningLevel);
    	map.put("SmithingXp", SmithingXp);
    	map.put("SmithingLevel", SmithingLevel);
    }
    
    public void getMiningXp(){
    	map.get("MiningXp");
    }
    public void getSmithingXp(){
    	map.get("SmithingXp");
    }
}

 

Btw im not using nbt im attempting to use a hashmap

Posted

Is there anything that I am missing here?

 public static void hashSaving(EntityPlayer player){
    	player.getEntityData();
    	map.put("MiningXp", MiningXp);
    	map.put("MiningLevel", MiningLevel);
    	map.put("SmithingXp", SmithingXp);
    	map.put("SmithingLevel", SmithingLevel);
    }
    
    public void getMiningXp(){
    	map.get("MiningXp");
    }
    public void getSmithingXp(){
    	map.get("SmithingXp");
    }

 

Note: I can change the integer values but they don't save.

 

Well you're kinda missing the entire read/write nbt parts...

 

 public static void hashSaving(EntityPlayer player){
              NBTTagCompound nbt = player.getEntityData();
              nbt.setInteger("MiningXp", MiningXp);
              nbt.setInteger("MiningLevel", MiningLevel);
              nbt.setInteger("SmithingXp", SmithingXp);
              nbt.setInteger("SmithingLevel", SmithingLevel);
    }
    
    public int getMiningXp(EntityPlayer player){
              NBTTagCompound nbt = player.getEntityData();
              return nbt.getInteger("MiningXp");
    }
    public int getSmithingXp(EntityPlayer player){
              NBTTagCompound nbt = player.getEntityData();
              return nbt.getInteger("SmithingXp");
    }

 

Edit: Tab-space derp

 

.... thats a hashmap dude not an nbt compound

Posted

You don't need the hashmap though, if you're saving and getting from the NBT compound!

 

package mods.cyphereion.cyphscape.levels;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.nbt.NBTTagCompound;

public final class Levels {
    /**
     * The total Mining Experience.
     */
    public static int MiningXp = 0;

    /**
     * The total Mining Level.
     */
    public static int MiningLevel = 0;

    /**
     * The total smithing xp.
     */
    public static int SmithingXp = 0;

    /**
     * The total smithing Level.
     */
    public static int SmithingLevel = 0;

    public static void saveLevelDataForPlayer(EntityPlayer player){
        NBTTagCompound nbt = player.getEntityData();
        nbt.setInteger("MiningXp", MiningXp);
        nbt.setInteger("MiningLevel", MiningLevel);
        nbt.setInteger("SmithingXp", SmithingXp);
        nbt.setInteger("SmithingLevel", SmithingLevel);
    }
    
    public static void getLevelDataForPlayer(EntityPlayer player){
        NBTTagCompound nbt = player.getEntityData();
        MiningXp = nbt.getInteger("MiningXp");
        MiningLevel = nbt.getInteger("MiningLevel");
        SmithingXp = nbt.getInteger("SmithingXp");
        SmithingLevel = nbt.getInteger("SmithingLevel");
    }

    public int getMiningXpForPlayer(EntityPlayer player){
        NBTTagCompound nbt = player.getEntityData();
        return nbt.getInteger("MiningXp");
    }

    public void saveMiningXpForPlayer(EntityPlayer player){
        NBTTagCompound nbt = player.getEntityData();
        nbt.setInteger("MiningXp", MiningXp);
    }
    
    public int getSmithingXpForPlayer(EntityPlayer player){
        NBTTagCompound nbt = player.getEntityData();
        return nbt.getInteger("SmithingXp");
    }

    public void saveSmithingXpForPlayer(EntityPlayer player){
        NBTTagCompound nbt = player.getEntityData();
        nbt.setInteger("SmithingXp", SmithingXp);
    }
}

Posted

You don't need the hashmap though, if you're saving and getting from the NBT compound!

 

package mods.cyphereion.cyphscape.levels;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.nbt.NBTTagCompound;

public final class Levels {
    /**
     * The total Mining Experience.
     */
    public static int MiningXp = 0;

    /**
     * The total Mining Level.
     */
    public static int MiningLevel = 0;

    /**
     * The total smithing xp.
     */
    public static int SmithingXp = 0;

    /**
     * The total smithing Level.
     */
    public static int SmithingLevel = 0;

    public static void saveLevelDataForPlayer(EntityPlayer player){
        NBTTagCompound nbt = player.getEntityData();
        nbt.setInteger("MiningXp", MiningXp);
        nbt.setInteger("MiningLevel", MiningLevel);
        nbt.setInteger("SmithingXp", SmithingXp);
        nbt.setInteger("SmithingLevel", SmithingLevel);
    }
    
    public static void getLevelDataForPlayer(EntityPlayer player){
        NBTTagCompound nbt = player.getEntityData();
        MiningXp = nbt.getInteger("MiningXp");
        MiningLevel = nbt.getInteger("MiningLevel");
        SmithingXp = nbt.getInteger("SmithingXp");
        SmithingLevel = nbt.getInteger("SmithingLevel");
    }

    public int getMiningXpForPlayer(EntityPlayer player){
        NBTTagCompound nbt = player.getEntityData();
        return nbt.getInteger("MiningXp");
    }

    public void saveMiningXpForPlayer(EntityPlayer player){
        NBTTagCompound nbt = player.getEntityData();
        nbt.setInteger("MiningXp", MiningXp);
    }
    
    public int getSmithingXpForPlayer(EntityPlayer player){
        NBTTagCompound nbt = player.getEntityData();
        return nbt.getInteger("SmithingXp");
    }

    public void saveSmithingXpForPlayer(EntityPlayer player){
        NBTTagCompound nbt = player.getEntityData();
        nbt.setInteger("SmithingXp", SmithingXp);
    }
}

 

But with nbt you cant load it from another class file wich is what I need to do.

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements




  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Hello support, I would like to tell you that I recently had troubles with getting into forge in Minecraft. I wanted to play with my friend a modpack in the game in version 1.20.1 when I downloaded it it crashed so we I started deleting some unnecessary mods to maybe lower the pressure if my PC is not good enough to run the modpack. But I went to delete every mod and installed a hole new version of forge with no mods installed or anything with it it still crashed. I found some help on the forms telling to download java 17 and install it on my windows so I did that and still couldn’t play because it crashes  The log files and everything I could find to help this problem is here : https://pastebin.com/9rWpANcW Hope your help arrives quickly
    • I'm testing a modpack for a server, and everything is fine, until I update the Aether mod from version "aether-1.20.1-1.4.2-neoforge" to version "aether-1.20.1-1.5.1-neoforge" now on the server it gives the error: Failed to load datapacks, can't proceed with server load. You can either fix your datapacks or reset to vanilla with --safeMode but in the game it says something different (scroll down) [21Nov2024 15:58:50.673] [main/WARN] [net.minecraft.server.Main/]: Failed to load datapacks, can't proceed with server load. You can either fix your datapacks or reset to vanilla with --safeMode 2002java.util.concurrent.ExecutionException: java.lang.IllegalStateException: Failed to load registries due to above errors 2003at java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:396) ~[?:?] 2004at java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2073) ~[?:?] 2005at net.minecraft.server.Main.main(Main.java:195) ~[server-1.20.1-20230612.114412-srg.jar%23535!/:?] 2006at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] 2007at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] 2008at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] 2009at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] 2010at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.3.12.jar%2369!/:?] 2011at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.serverService(CommonLaunchHandler.java:103) ~[fmlloader-1.20.1-47.3.12.jar%2369!/:?] 2012at net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$makeService$0(CommonServerLaunchHandler.java:27) ~[fmlloader-1.20.1-47.3.12.jar%2369!/:?] 2013at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar%2355!/:?] 2014at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar%2355!/:?] 2015at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar%2355!/:?] 2016at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar%2355!/:?] 2017at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar%2355!/:?] 2018at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar%2355!/:?] 2019at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar%2355!/:?] 2020at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] 2021Caused by: java.lang.IllegalStateException: Failed to load registries due to above errors 2022at net.minecraft.resources.RegistryDataLoader.m_247207_(RegistryDataLoader.java:77) ~[server-1.20.1-20230612.114412-srg.jar%23535!/:?] 2023at net.minecraft.server.WorldLoader.m_246152_(WorldLoader.java:54) ~[server-1.20.1-20230612.114412-srg.jar%23535!/:?] 2024at net.minecraft.server.WorldLoader.m_245736_(WorldLoader.java:58) ~[server-1.20.1-20230612.114412-srg.jar%23535!/:?] 2025at net.minecraft.server.WorldLoader.m_214362_(WorldLoader.java:31) ~[server-1.20.1-20230612.114412-srg.jar%23535!/:?] 2026at net.minecraft.server.Main.lambda$main$2(Main.java:167) ~[server-1.20.1-20230612.114412-srg.jar%23535!/:?] 2027at net.minecraft.Util.m_214652_(Util.java:777) ~[server-1.20.1-20230612.114412-srg.jar%23535!/:?] 2028at net.minecraft.Util.m_214679_(Util.java:772) ~[server-1.20.1-20230612.114412-srg.jar%23535!/:?] 2029at net.minecraft.server.Main.main(Main.java:166) ~[server-1.20.1-20230612.114412-srg.jar%23535!/:?] 2030... 15 more   AND THE ERROR THAT THE GAME SAY WENT I WANT TO PLAY IN SOLO (local): Time: 2024-11-21 16:16:37 Description: mouseClicked event handler java.lang.IllegalStateException: Failed to load registries due to above errors     at net.minecraft.resources.RegistryDataLoader.m_247207_(RegistryDataLoader.java:77) ~[client-1.20.1-20230612.114412-srg.jar%23652!/:?] {re:mixin,pl:connector_pre_launch:A,re:classloading,pl:mixin:APP:bclib.mixins.common.json:RegistryDataLoaderMixin from mod bclib,pl:mixin:APP:lithostitched.mixins.json:common.RegistryDataLoaderMixin from mod lithostitched,pl:mixin:APP:zeta.mixins.json:RegistryDataLoaderMixin from mod zeta,pl:mixin:APP:fabric-registry-sync-v0.mixins.json:RegistryLoaderMixin from mod fabric_registry_sync_v0,pl:mixin:APP:together.mixins.common.json:RegistryDataLoaderMixin from mod bclib,pl:mixin:APP:connectormod.mixins.json:registries.RegistryDataLoaderMixin from mod connectormod,pl:mixin:A,pl:connector_pre_launch:A} at net.minecraft.server.WorldLoader.m_246152_(WorldLoader.java:54) ~[client-1.20.1-20230612.114412-srg.jar%23652!/:?] {re:mixin,pl:connector_pre_launch:A,re:classloading,pl:mixin:APP:together.mixins.common.json:WorldLoaderMixin from mod bclib,pl:mixin:A,pl:connector_pre_launch:A}     at net.minecraft.server.WorldLoader.m_245736_(WorldLoader.java:58) ~[client-1.20.1-20230612.114412-srg.jar%23652!/:?] {re:mixin,pl:connector_pre_launch:A,re:classloading,pl:mixin:APP:together.mixins.common.json:WorldLoaderMixin from mod bclib,pl:mixin:A,pl:connector_pre_launch:A}     at net.minecraft.server.WorldLoader.m_214362_(WorldLoader.java:31) ~[client-1.20.1-20230612.114412-srg.jar%23652!/:?] {re:mixin,pl:connector_pre_launch:A,re:classloading,pl:mixin:APP:together.mixins.common.json:WorldLoaderMixin from mod bclib,pl:mixin:A,pl:connector_pre_launch:A}     at net.minecraft.client.gui.screens.worldselection.CreateWorldScreen.m_232896_(CreateWorldScreen.java:125) ~[client-1.20.1-20230612.114412-srg.jar%23652!/:?] {re:mixin,pl:accesstransformer:B,pl:connector_pre_launch:A,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.CreateWorldScreenMixin from mod modernfix,pl:mixin:APP:modernfix-forge.mixins.json:bugfix.extra_experimental_screen.CreateWorldScreenMixin from mod modernfix,pl:mixin:APP:cumulus_menus.mixins.json:client.accessor.CreateWorldScreenAccessor from mod cumulus_menus,pl:mixin:APP:mediumcore.mixins.json:client.CreateWorldScreenMixin from mod mediumcore,pl:mixin:APP:aether.mixins.json:client.CreateWorldScreenMixin from mod aether,pl:mixin:APP:together.mixins.client.json:CreateWorldScreen_Mixin from mod bclib,pl:mixin:APP:fancymenu.mixins.json:client.MixinCreateWorldScreen from mod fancymenu,pl:mixin:A,pl:connector_pre_launch:A,pl:runtimedistcleaner:A}        
    • I just tried installing Forge version 1.21.3, and tried launching it with no mods installed. It loads, and immediately crashes while "loading bootstrap resourses." Does anyone know a fix for this? My Java is up to date, as well as my graphics drivers. Here's a snip right before it crashes: https://imgur.com/a/elLujPj
    • I know this is a forge only place, but just to be clear, my error is in Fabric I was actually super frustrated while trying to fix this, like this mod does work when I play it by launching it in minecraft, but when I was trying to install it onto the server it just kept crashing so I decided to delete every mod I've got but kept the bewitchment mod and the necessary mod it needs to function and I tried to run the server... But it somehow still crashed, and the thing is that I really do want the bewitchment mod to be in the SMP so it'll be SUPER helpful if anyone can figure out on how to fix this: It didn't give me any "crash-reports" so I'll be sending the logs and what the console said: Console: [18:51:46] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=file:/home/container/libraries/net/fabricmc/sponge-mixin/0.13.3+mixin.0.8.5/sponge-mixin-0.13.3+mixin.0.8.5.jar Service=Knot/Fabric Env=SERVER [18:51:46] [main/WARN]: Error loading class: io/github/apace100/origins/power/PreventItemUsePower (java.lang.ClassNotFoundException: io/github/apace100/origins/power/PreventItemUsePower) [18:51:46] [main/WARN]: @Mixin target io.github.apace100.origins.power.PreventItemUsePower was not found bewitchment.mixins.json:integration.origins.PreventItemUsePowerMixin from mod bewitchment [18:51:47] [main/INFO]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.3.5). [18:51:52] [main/FATAL]: Failed to start the minecraft server java.lang.RuntimeException: Could not execute entrypoint stage 'main' due to errors, provided by 'bewitchment'! at net.fabricmc.loader.impl.FabricLoaderImpl.lambda$invokeEntrypoints$2(FabricLoaderImpl.java:388) ~[fabric-loader-0.15.11.jar:?] at net.fabricmc.loader.impl.util.ExceptionUtil.gatherExceptions(ExceptionUtil.java:33) ~[fabric-loader-0.15.11.jar:?] at net.fabricmc.loader.impl.FabricLoaderImpl.invokeEntrypoints(FabricLoaderImpl.java:386) ~[fabric-loader-0.15.11.jar:?] at net.fabricmc.loader.impl.game.minecraft.Hooks.startServer(Hooks.java:63) ~[fabric-loader-0.15.11.jar:?] at net.minecraft.server.Main.main(Main.java:92) [server-intermediary.jar:?] at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:470) [fabric-loader-0.15.11.jar:?] at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74) [fabric-loader-0.15.11.jar:?] at net.fabricmc.loader.impl.launch.knot.KnotServer.main(KnotServer.java:23) [fabric-loader-0.15.11.jar:?] at net.fabricmc.loader.impl.launch.server.FabricServerLauncher.main(FabricServerLauncher.java:69) [fabric-loader-0.15.11.jar:?] at net.fabricmc.installer.ServerLauncher.main(ServerLauncher.java:69) [server.jar:1.0.1] Caused by: java.lang.NoSuchFieldError: TEXTURE at moriyashiine.bewitchment.common.item.SpecterBangleItem.<clinit>(SpecterBangleItem.java:28) ~[bewitchment-1.16.5-18.jar:?] at moriyashiine.bewitchment.common.registry.BWObjects.<clinit>(BWObjects.java:272) ~[bewitchment-1.16.5-18.jar:?] at moriyashiine.bewitchment.common.Bewitchment.onInitialize(Bewitchment.java:221) ~[bewitchment-1.16.5-18.jar:?] at net.fabricmc.loader.impl.FabricLoaderImpl.invokeEntrypoints(FabricLoaderImpl.java:384) ~[fabric-loader-0.15.11.jar:?] ... 7 more Logs: https://mclo.gs/wSsqMfn
    • I know this is a forge only place, but just so you know my error is in Fabric I was actually super frustrated while trying to fix this, like this mod does work when I play it by launching it in minecraft, but when I was trying to install it onto the server it just kept crashing so I decided to delete every mod I've got but kept the bewitchment mod and the necessary mod it needs to function and I tried to run the server... But it somehow still crashed, and the thing is that I really do want the bewitchment mod to be in the SMP so it'll be SUPER helpful if anyone can figure out on how to fix this: It didn't give me any "crash-reports" so I'll be sending the logs and what the console said: Console: [18:51:46] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=file:/home/container/libraries/net/fabricmc/sponge-mixin/0.13.3+mixin.0.8.5/sponge-mixin-0.13.3+mixin.0.8.5.jar Service=Knot/Fabric Env=SERVER [18:51:46] [main/WARN]: Error loading class: io/github/apace100/origins/power/PreventItemUsePower (java.lang.ClassNotFoundException: io/github/apace100/origins/power/PreventItemUsePower) [18:51:46] [main/WARN]: @Mixin target io.github.apace100.origins.power.PreventItemUsePower was not found bewitchment.mixins.json:integration.origins.PreventItemUsePowerMixin from mod bewitchment [18:51:47] [main/INFO]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.3.5). [18:51:52] [main/FATAL]: Failed to start the minecraft server java.lang.RuntimeException: Could not execute entrypoint stage 'main' due to errors, provided by 'bewitchment'! at net.fabricmc.loader.impl.FabricLoaderImpl.lambda$invokeEntrypoints$2(FabricLoaderImpl.java:388) ~[fabric-loader-0.15.11.jar:?] at net.fabricmc.loader.impl.util.ExceptionUtil.gatherExceptions(ExceptionUtil.java:33) ~[fabric-loader-0.15.11.jar:?] at net.fabricmc.loader.impl.FabricLoaderImpl.invokeEntrypoints(FabricLoaderImpl.java:386) ~[fabric-loader-0.15.11.jar:?] at net.fabricmc.loader.impl.game.minecraft.Hooks.startServer(Hooks.java:63) ~[fabric-loader-0.15.11.jar:?] at net.minecraft.server.Main.main(Main.java:92) [server-intermediary.jar:?] at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:470) [fabric-loader-0.15.11.jar:?] at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74) [fabric-loader-0.15.11.jar:?] at net.fabricmc.loader.impl.launch.knot.KnotServer.main(KnotServer.java:23) [fabric-loader-0.15.11.jar:?] at net.fabricmc.loader.impl.launch.server.FabricServerLauncher.main(FabricServerLauncher.java:69) [fabric-loader-0.15.11.jar:?] at net.fabricmc.installer.ServerLauncher.main(ServerLauncher.java:69) [server.jar:1.0.1] Caused by: java.lang.NoSuchFieldError: TEXTURE at moriyashiine.bewitchment.common.item.SpecterBangleItem.<clinit>(SpecterBangleItem.java:28) ~[bewitchment-1.16.5-18.jar:?] at moriyashiine.bewitchment.common.registry.BWObjects.<clinit>(BWObjects.java:272) ~[bewitchment-1.16.5-18.jar:?] at moriyashiine.bewitchment.common.Bewitchment.onInitialize(Bewitchment.java:221) ~[bewitchment-1.16.5-18.jar:?] at net.fabricmc.loader.impl.FabricLoaderImpl.invokeEntrypoints(FabricLoaderImpl.java:384) ~[fabric-loader-0.15.11.jar:?] ... 7 more Logs: https://mclo.gs/wSsqMfn
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.