Jump to content

Failing to load my own mod. Server Side Now


Recommended Posts

While the mod completely works on eclipse, I can't load it with Forge on a normal game run.

 

My mod_ class, hoping I have everything right in there.

 

 

package mod_AsgardShield;

import java.util.Random;

import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.Side;
import cpw.mods.fml.common.SidedProxy;
import cpw.mods.fml.common.Mod.Init;
import cpw.mods.fml.common.event.FMLInitializationEvent;
import cpw.mods.fml.common.network.NetworkMod;
import cpw.mods.fml.common.registry.GameRegistry; 
import cpw.mods.fml.common.registry.LanguageRegistry;
import cpw.mods.fml.common.registry.TickRegistry;
import net.minecraft.src.DamageSource;
import net.minecraft.src.Entity;
import net.minecraft.src.EntityArrow;
import net.minecraft.src.EntityBlaze;
import net.minecraft.src.EntityFireball;
import net.minecraft.src.EntityGhast;
import net.minecraft.src.EntityPlayer;
import net.minecraft.src.EntitySkeleton;
import net.minecraft.src.EntitySmallFireball;
import net.minecraft.src.EnumToolMaterial;
import net.minecraft.src.Item;
import net.minecraft.src.ItemStack;
import net.minecraft.src.Block;
import net.minecraft.src.MathHelper;
import net.minecraft.src.Vec3;
import net.minecraftforge.client.MinecraftForgeClient;


@Mod(modid = "Jade_Knightblazer", name = "AsgardShield", version = "1.3.2")
@NetworkMod(clientSideRequired = true, serverSideRequired = false)
public class mod_AsgardShield {

//Random Gen stuff
static int roll;
static Random rand;
static int asgardShieldBlockChance;
static int asgardShieldPerk;
static boolean smartMovingModActive = false;
public static int EnableSmartMovingGuardID = 1;

static boolean guardTired = false;
static boolean shieldBroke = false;

public static Item AsgardShieldWood;
public static Item AsgardShieldStone;
public static Item AsgardShieldIron;
public static Item AsgardShieldDiamond;

public static Item AsgardShieldWoodGilded;
public static Item AsgardShieldStoneGilded;
public static Item AsgardShieldIronGilded;
public static Item AsgardShieldDiamondGilded;

public static Item ZedSwordWoodSword;
public static Item ZedSwordStoneSword;
public static Item ZedSwordIronSword;
public static Item ZedSwordGoldSword;
public static Item ZedSwordDiamondSword;

 @SidedProxy(clientSide = "AsgardShield.client.ClientProxyTutorial", serverSide = "mod_AsgardShield.CommonProxyTutorial")
    public static CommonProxyTutorial proxy;


 @Init
 public void load(FMLInitializationEvent event)
 {

	 AsgardShieldWood = new ItemAsgardShield(400,EnumToolMaterial.WOOD, 1).setIconIndex(0).setItemName("WoodenShield");
	 AsgardShieldStone = new ItemAsgardShield(402,EnumToolMaterial.STONE, 1).setIconIndex(1).setItemName("StoneShield");
	 AsgardShieldIron = new ItemAsgardShield(404,EnumToolMaterial.IRON, 1).setIconIndex(2).setItemName("IronShield");
	 AsgardShieldDiamond = new ItemAsgardShield(406,EnumToolMaterial.EMERALD, 1).setIconIndex(3).setItemName("DiamondShield");

	 AsgardShieldWoodGilded = new ItemAsgardShield(401,EnumToolMaterial.WOOD, 2).setIconIndex(16).setItemName("WoodenShieldGilded");
	 AsgardShieldStoneGilded = new ItemAsgardShield(403,EnumToolMaterial.STONE, 2).setIconIndex(17).setItemName("StoneShieldGilded");
	 AsgardShieldIronGilded = new ItemAsgardShield(405,EnumToolMaterial.IRON, 2).setIconIndex(18).setItemName("IronShieldGilded");
	 AsgardShieldDiamondGilded = new ItemAsgardShield(407,EnumToolMaterial.EMERALD, 2).setIconIndex(19).setItemName("DiamondShieldGilded");

	 ZedSwordWoodSword = new ItemZedSword(408,EnumToolMaterial.WOOD).setIconIndex(0).setItemName("WoodenGSword");
	 ZedSwordStoneSword = new ItemZedSword(409,EnumToolMaterial.STONE).setIconIndex(1).setItemName("StoneGSword");
	 ZedSwordIronSword = new ItemZedSword(410,EnumToolMaterial.IRON).setIconIndex(2).setItemName("IronGSword");
	 ZedSwordGoldSword = new ItemZedSword(411,EnumToolMaterial.GOLD).setIconIndex(3).setItemName("GoldenGSword");
	 ZedSwordDiamondSword = new ItemZedSword(412,EnumToolMaterial.EMERALD).setIconIndex(4).setItemName("DiamondGSword");

	 //Basic Shield Recipes
	 GameRegistry.addRecipe(new ItemStack(AsgardShieldWood), new Object[]
			    {
			     "XXX", "X+X", " X ", 'X', Block.planks, '+', Item.leather
			    });
	 GameRegistry.addRecipe(new ItemStack(AsgardShieldStone), new Object[]
			    {
			     "XXX", "X+X", " X ", 'X', Block.cobblestone, '+', Item.leather
			    });
	 GameRegistry.addRecipe(new ItemStack(AsgardShieldIron), new Object[]
			    {
			     "XXX", "X+X", " X ", 'X', Item.ingotIron, '+', Item.leather
			    });
	 GameRegistry.addRecipe(new ItemStack(AsgardShieldDiamond), new Object[]
			    {
			     "XXX", "X+X", " X ", 'X', Item.diamond, '+', Item.leather
			    });

	 //Gilded Shield Recipes
	 GameRegistry.addRecipe(new ItemStack(AsgardShieldWoodGilded), new Object[]
			    {
			     "XXX", "X+X", " X ", 'X', Item.ingotGold, '+', mod_AsgardShield.AsgardShieldWood
			    });

	 GameRegistry.addRecipe(new ItemStack(AsgardShieldStoneGilded), new Object[]
			    {
			     "XXX", "X+X", " X ", 'X', Item.ingotGold, '+', mod_AsgardShield.AsgardShieldStone
			    });
	 GameRegistry.addRecipe(new ItemStack(AsgardShieldIronGilded), new Object[]
			    {
			     "XXX", "X+X", " X ", 'X', Item.ingotGold, '+', mod_AsgardShield.AsgardShieldIron
			    });
	 GameRegistry.addRecipe(new ItemStack(AsgardShieldDiamondGilded), new Object[]
			    {
			     "XXX", "X+X", " X ", 'X', Item.ingotGold, '+', mod_AsgardShield.AsgardShieldDiamond
			    });

	 //Giant Sword Recipes
	 GameRegistry.addRecipe(new ItemStack(ZedSwordWoodSword), new Object[]
			    {
			     " XX", "XXX", "+X ", 'X', Block.planks, '+', Item.stick
			    });
	 GameRegistry.addRecipe(new ItemStack(ZedSwordStoneSword), new Object[]
			    {
			     " XX", "XXX", "+X ", 'X', Block.cobblestone, '+', Item.stick
			    });
	 GameRegistry.addRecipe(new ItemStack(ZedSwordIronSword), new Object[]
			    {
			     " XX", "XXX", "+X ", 'X', Item.ingotIron, '+', Item.stick
			    });
	 GameRegistry.addRecipe(new ItemStack(ZedSwordGoldSword), new Object[]
			    {
			     " XX", "XXX", "+X ", 'X', Item.ingotGold, '+', Item.stick
			    });
	 GameRegistry.addRecipe(new ItemStack(ZedSwordDiamondSword), new Object[]
			    {
			     " XX", "XXX", "+X ", 'X', Item.diamond, '+', Item.stick
			    });
	  
	 LanguageRegistry.addName(AsgardShieldWood, "Wooden Shield");
	 LanguageRegistry.addName(AsgardShieldStone, "Stone Shield");
	 LanguageRegistry.addName(AsgardShieldIron, "Iron Shield");
	 LanguageRegistry.addName(AsgardShieldDiamond, "Diamond Shield");

	 LanguageRegistry.addName(AsgardShieldWoodGilded, "Gilded Wooden Shield");
	 LanguageRegistry.addName(AsgardShieldStoneGilded, "Gilded Stone Shield");
	 LanguageRegistry.addName(AsgardShieldIronGilded, "Gilded Iron Shield");
	 LanguageRegistry.addName(AsgardShieldDiamondGilded, "Gilded Diamond Shield");

	 LanguageRegistry.addName(ZedSwordWoodSword, "Wooden Giant Sword");
	 LanguageRegistry.addName(ZedSwordStoneSword, "Stone Giant Sword");
	 LanguageRegistry.addName(ZedSwordIronSword, "Iron Giant Sword");
	 LanguageRegistry.addName(ZedSwordGoldSword, "Golden Giant Sword");
	 LanguageRegistry.addName(ZedSwordDiamondSword, "Diamond Giant Sword");

	 proxy.registerRenderThings();
	 TickRegistry.registerTickHandler(new YourTicker(), Side.CLIENT);
 }
}

 

 

 

When I reobf, I get the following. reobf/minecraft  Then two folders: AsgardShield and mod_AsgardShield.

 

Do I need both and .zip them together or just mod_AsgardShield like I would do with Modloader.

 

Lastly here is my ForgeModLoader-client-0.  This is when I placed the two folders above in 1 .zip, and put them in the .minecraft/mods folder.

 

 

2012-08-27 14:14:36 [iNFO] [ForgeModLoader] Forge Mod Loader version 3.0.148.332 for Minecraft client:1.3.2, server:1.3.2 loading

2012-08-27 14:14:36 [FINEST] [ForgeModLoader] All core mods are successfully located

2012-08-27 14:14:36 [FINEST] [ForgeModLoader] Discovering coremods

2012-08-27 14:14:36 [FINEST] [ForgeModLoader] Found library file argo-2.25.jar present and correct in lib dir

 

2012-08-27 14:14:37 [FINEST] [ForgeModLoader] Found library file guava-12.0.1.jar present and correct in lib dir

 

2012-08-27 14:14:37 [FINEST] [ForgeModLoader] Found library file asm-all-4.0.jar present and correct in lib dir

 

2012-08-27 14:14:37 [FINEST] [ForgeModLoader] Running coremod plugins

2012-08-27 14:14:37 [FINEST] [ForgeModLoader] Running coremod plugin FMLCorePlugin

2012-08-27 14:14:37 [FINEST] [ForgeModLoader] Coremod plugin FMLCorePlugin run successfully

2012-08-27 14:14:37 [FINEST] [ForgeModLoader] Running coremod plugin FMLForgePlugin

2012-08-27 14:14:37 [FINEST] [ForgeModLoader] Coremod plugin FMLForgePlugin run successfully

2012-08-27 14:14:37 [FINEST] [ForgeModLoader] Validating minecraft

2012-08-27 14:14:37 [FINEST] [ForgeModLoader] Minecraft validated, launching...

2012-08-27 14:14:37 [iNFO] [sTDOUT] 27 achievements

2012-08-27 14:14:37 [iNFO] [sTDOUT] 195 recipes

2012-08-27 14:14:38 [iNFO] [sTDOUT] Setting user: Jade_Knightblaze, 551418960191753715

2012-08-27 14:14:38 [iNFO] [sTDOUT] LWJGL Version: 2.4.2

2012-08-27 14:14:38 [iNFO] [ForgeModLoader] Attempting early MinecraftForge initialization

2012-08-27 14:14:38 [iNFO] [ForgeModLoader] Completed early MinecraftForge initialization

2012-08-27 14:14:38 [FINE] [ForgeModLoader] Building injected Mod Containers [cpw.mods.fml.common.FMLDummyContainer, net.minecraftforge.common.ForgeDummyContainer]

2012-08-27 14:14:38 [FINE] [ForgeModLoader] Attempting to load mods contained in the minecraft jar file and associated classes

2012-08-27 14:14:38 [FINE] [ForgeModLoader] Skipping known library file C:\Users\Jade Knightblazer\AppData\Roaming\.minecraft\bin\lwjgl.jar

2012-08-27 14:14:38 [FINE] [ForgeModLoader] Skipping known library file C:\Users\Jade Knightblazer\AppData\Roaming\.minecraft\bin\jinput.jar

2012-08-27 14:14:38 [FINE] [ForgeModLoader] Skipping known library file C:\Users\Jade Knightblazer\AppData\Roaming\.minecraft\bin\lwjgl_util.jar

2012-08-27 14:14:38 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Jade Knightblazer\AppData\Roaming\.minecraft\bin\minecraft.jar, examining for mod candidates

2012-08-27 14:14:38 [FINE] [ForgeModLoader] Skipping known library file C:\Users\Jade Knightblazer\AppData\Roaming\.minecraft\lib\argo-2.25.jar

2012-08-27 14:14:38 [FINE] [ForgeModLoader] Skipping known library file C:\Users\Jade Knightblazer\AppData\Roaming\.minecraft\lib\guava-12.0.1.jar

2012-08-27 14:14:38 [FINE] [ForgeModLoader] Skipping known library file C:\Users\Jade Knightblazer\AppData\Roaming\.minecraft\lib\asm-all-4.0.jar

2012-08-27 14:14:38 [FINE] [ForgeModLoader] Minecraft jar mods loaded successfully

2012-08-27 14:14:38 [iNFO] [ForgeModLoader] Searching C:\Users\Jade Knightblazer\AppData\Roaming\.minecraft\mods for mods

2012-08-27 14:14:38 [FINE] [ForgeModLoader] Ignoring unknown file AsgardShieldMod.rar in mods directory

2012-08-27 14:14:38 [FINE] [ForgeModLoader] Examining file minecraft.jar for potential mods

2012-08-27 14:14:38 [iNFO] [ForgeModLoader] The mod container minecraft.jar appears to be missing an mcmod.info file

2012-08-27 14:14:38 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 2 mods to load

2012-08-27 14:14:38 [FINE] [ForgeModLoader] Received a system property request ''

2012-08-27 14:14:38 [FINE] [ForgeModLoader] System property request managing the state of 0 mods

2012-08-27 14:14:38 [FINE] [ForgeModLoader] After merging, found state information for 0 mods

2012-08-27 14:14:38 [FINE] [ForgeModLoader] Activating mod FML

2012-08-27 14:14:38 [FINE] [ForgeModLoader] Activating mod Forge

2012-08-27 14:14:38 [FINE] [ForgeModLoader] Verifying mod requirements are satisfied

2012-08-27 14:14:38 [FINE] [ForgeModLoader] All mod requirements are satisfied

2012-08-27 14:14:38 [FINE] [ForgeModLoader] Sorting mods into an ordered list

2012-08-27 14:14:38 [FINE] [ForgeModLoader] Mod sorting completed successfully

2012-08-27 14:14:38 [FINE] [ForgeModLoader] Mod sorting data:

2012-08-27 14:14:38 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@76774e0f to mod FML

2012-08-27 14:14:38 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@76774e0f delivered to mod FML

2012-08-27 14:14:38 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@76774e0f to mod Forge

2012-08-27 14:14:38 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@76774e0f delivered to mod Forge

2012-08-27 14:14:38 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@36205329 to mod FML

2012-08-27 14:14:38 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@36205329 delivered to mod FML

2012-08-27 14:14:38 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@36205329 to mod Forge

2012-08-27 14:14:38 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@36205329 delivered to mod Forge

2012-08-27 14:14:39 [iNFO] [sTDOUT] Starting up SoundSystem...

2012-08-27 14:14:39 [iNFO] [sTDOUT] Initializing LWJGL OpenAL

2012-08-27 14:14:39 [iNFO] [sTDOUT]    (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

2012-08-27 14:14:39 [iNFO] [sTDOUT] OpenAL initialized.

2012-08-27 14:14:39 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@560cb746 to mod FML

2012-08-27 14:14:39 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLInitializationEvent@560cb746 delivered to mod FML

2012-08-27 14:14:39 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@560cb746 to mod Forge

2012-08-27 14:14:39 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLInitializationEvent@560cb746 delivered to mod Forge

2012-08-27 14:14:39 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPostInitializationEvent@35400b1 to mod FML

2012-08-27 14:14:39 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPostInitializationEvent@35400b1 delivered to mod FML

2012-08-27 14:14:39 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPostInitializationEvent@35400b1 to mod Forge

2012-08-27 14:14:39 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPostInitializationEvent@35400b1 delivered to mod Forge

2012-08-27 14:14:39 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLLoadCompleteEvent@4ea2d2b0 to mod FML

2012-08-27 14:14:39 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLLoadCompleteEvent@4ea2d2b0 delivered to mod FML

2012-08-27 14:14:39 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLLoadCompleteEvent@4ea2d2b0 to mod Forge

2012-08-27 14:14:39 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLLoadCompleteEvent@4ea2d2b0 delivered to mod Forge

2012-08-27 14:14:39 [iNFO] [ForgeModLoader] Forge Mod Loader has successfully loaded 2 mods

2012-08-27 14:14:43 [iNFO] [sTDOUT] Stopping!

2012-08-27 14:14:43 [iNFO] [sTDOUT] SoundSystem shutting down...

2012-08-27 14:14:43 [iNFO] [sTDOUT]    Author: Paul Lamb, www.paulscode.com

 

 

Link to comment
Share on other sites

Works fine on client, however Server is having its issues.

 

ForgeModLoader-server-0

 

 

2012-08-27 14:52:52 [iNFO] [ForgeModLoader] Forge Mod Loader version 3.0.148.332 for Minecraft client:1.3.2, server:1.3.2 loading

2012-08-27 14:52:52 [FINEST] [ForgeModLoader] All core mods are successfully located

2012-08-27 14:52:52 [FINEST] [ForgeModLoader] Discovering coremods

2012-08-27 14:52:52 [FINEST] [ForgeModLoader] Found library file argo-2.25.jar present and correct in lib dir

 

2012-08-27 14:52:52 [FINEST] [ForgeModLoader] Found library file guava-12.0.1.jar present and correct in lib dir

 

2012-08-27 14:52:52 [FINEST] [ForgeModLoader] Found library file asm-all-4.0.jar present and correct in lib dir

 

2012-08-27 14:52:52 [FINEST] [ForgeModLoader] Running coremod plugins

2012-08-27 14:52:52 [FINEST] [ForgeModLoader] Running coremod plugin FMLCorePlugin

2012-08-27 14:52:52 [FINEST] [ForgeModLoader] Coremod plugin FMLCorePlugin run successfully

2012-08-27 14:52:52 [FINEST] [ForgeModLoader] Running coremod plugin FMLForgePlugin

2012-08-27 14:52:52 [FINEST] [ForgeModLoader] Coremod plugin FMLForgePlugin run successfully

2012-08-27 14:52:52 [FINEST] [ForgeModLoader] Validating minecraft

2012-08-27 14:52:52 [FINEST] [ForgeModLoader] Minecraft validated, launching...

2012-08-27 14:52:54 [iNFO] [sTDOUT] 195 recipes

2012-08-27 14:52:54 [iNFO] [sTDOUT] 27 achievements

2012-08-27 14:52:55 [iNFO] [sTDERR] java.io.IOException: The handle is invalid

2012-08-27 14:52:55 [iNFO] [sTDERR] at java.io.FileInputStream.readBytes(Native Method)

2012-08-27 14:52:55 [iNFO] [sTDERR] at java.io.FileInputStream.read(Unknown Source)

2012-08-27 14:52:55 [iNFO] [sTDERR] at java.io.BufferedInputStream.read1(Unknown Source)

2012-08-27 14:52:55 [iNFO] [sTDERR] at java.io.BufferedInputStream.read(Unknown Source)

2012-08-27 14:52:55 [iNFO] [sTDERR] at sun.nio.cs.StreamDecoder.readBytes(Unknown Source)

2012-08-27 14:52:55 [iNFO] [sTDERR] at sun.nio.cs.StreamDecoder.implRead(Unknown Source)

2012-08-27 14:52:55 [iNFO] [sTDERR] at sun.nio.cs.StreamDecoder.read(Unknown Source)

2012-08-27 14:52:55 [iNFO] [sTDERR] at java.io.InputStreamReader.read(Unknown Source)

2012-08-27 14:52:55 [iNFO] [sTDERR] at java.io.BufferedReader.fill(Unknown Source)

2012-08-27 14:52:55 [iNFO] [sTDERR] at java.io.BufferedReader.readLine(Unknown Source)

2012-08-27 14:52:55 [iNFO] [sTDERR] at java.io.BufferedReader.readLine(Unknown Source)

2012-08-27 14:52:55 [iNFO] [sTDERR] at fv.run(SourceFile:60)

2012-08-27 14:52:55 [iNFO] [ForgeModLoader] Attempting early MinecraftForge initialization

2012-08-27 14:52:55 [iNFO] [ForgeModLoader] Completed early MinecraftForge initialization

2012-08-27 14:52:55 [FINE] [ForgeModLoader] Building injected Mod Containers [cpw.mods.fml.common.FMLDummyContainer, net.minecraftforge.common.ForgeDummyContainer]

2012-08-27 14:52:55 [FINE] [ForgeModLoader] Attempting to load mods contained in the minecraft jar file and associated classes

2012-08-27 14:52:55 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\HP_Administrator\Desktop\testserver\minecraft_server.jar, examining for mod candidates

2012-08-27 14:52:55 [FINE] [ForgeModLoader] Skipping known library file C:\Documents and Settings\HP_Administrator\Desktop\testserver\lib\argo-2.25.jar

2012-08-27 14:52:55 [FINE] [ForgeModLoader] Skipping known library file C:\Documents and Settings\HP_Administrator\Desktop\testserver\lib\guava-12.0.1.jar

2012-08-27 14:52:55 [FINE] [ForgeModLoader] Skipping known library file C:\Documents and Settings\HP_Administrator\Desktop\testserver\lib\asm-all-4.0.jar

2012-08-27 14:52:55 [FINE] [ForgeModLoader] Minecraft jar mods loaded successfully

2012-08-27 14:52:55 [iNFO] [ForgeModLoader] Searching C:\Documents and Settings\HP_Administrator\Desktop\testserver\mods for mods

2012-08-27 14:52:55 [FINE] [ForgeModLoader] Found a candidate zip or jar file AsgardShield.zip

2012-08-27 14:52:55 [FINE] [ForgeModLoader] Examining file minecraft_server.jar for potential mods

2012-08-27 14:52:55 [iNFO] [ForgeModLoader] The mod container minecraft_server.jar appears to be missing an mcmod.info file

2012-08-27 14:52:55 [FINE] [ForgeModLoader] Examining file AsgardShield.zip for potential mods

2012-08-27 14:52:55 [iNFO] [ForgeModLoader] The mod container AsgardShield.zip appears to be missing an mcmod.info file

2012-08-27 14:52:55 [FINE] [ForgeModLoader] Identified a FMLMod type mod mod_AsgardShield.mod_AsgardShield

2012-08-27 14:52:55 [FINEST] [ForgeModLoader] Parsed dependency info : [] [] []

2012-08-27 14:52:55 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 3 mods to load

2012-08-27 14:52:55 [FINE] [ForgeModLoader] Received a system property request ''

2012-08-27 14:52:55 [FINE] [ForgeModLoader] System property request managing the state of 0 mods

2012-08-27 14:52:55 [FINE] [ForgeModLoader] After merging, found state information for 0 mods

2012-08-27 14:52:55 [FINE] [ForgeModLoader] Activating mod FML

2012-08-27 14:52:55 [FINE] [ForgeModLoader] Activating mod Forge

2012-08-27 14:52:55 [FINE] [ForgeModLoader] Enabling mod Jade_Knightblazer

2012-08-27 14:52:55 [FINE] [ForgeModLoader] Activating mod Jade_Knightblazer

2012-08-27 14:52:55 [FINE] [ForgeModLoader] Verifying mod requirements are satisfied

2012-08-27 14:52:55 [FINE] [ForgeModLoader] All mod requirements are satisfied

2012-08-27 14:52:55 [FINE] [ForgeModLoader] Sorting mods into an ordered list

2012-08-27 14:52:55 [FINE] [ForgeModLoader] Mod sorting completed successfully

2012-08-27 14:52:55 [FINE] [ForgeModLoader] Mod sorting data:

2012-08-27 14:52:55 [FINE] [ForgeModLoader] Jade_Knightblazer(AsgardShield:1.3.2): AsgardShield.zip ()

2012-08-27 14:52:55 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@19ec4ed to mod FML

2012-08-27 14:52:55 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@19ec4ed delivered to mod FML

2012-08-27 14:52:55 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@19ec4ed to mod Forge

2012-08-27 14:52:55 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@19ec4ed delivered to mod Forge

2012-08-27 14:52:55 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLConstructionEvent@19ec4ed to mod Jade_Knightblazer

2012-08-27 14:52:55 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into Jade_Knightblazer

2012-08-27 14:52:55 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLConstructionEvent@19ec4ed delivered to mod Jade_Knightblazer

2012-08-27 14:52:55 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@7cd37a to mod FML

2012-08-27 14:52:55 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@7cd37a delivered to mod FML

2012-08-27 14:52:55 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@7cd37a to mod Forge

2012-08-27 14:52:55 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@7cd37a delivered to mod Forge

2012-08-27 14:52:55 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLPreInitializationEvent@7cd37a to mod Jade_Knightblazer

2012-08-27 14:52:55 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLPreInitializationEvent@7cd37a delivered to mod Jade_Knightblazer

2012-08-27 14:52:56 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@3a1834 to mod FML

2012-08-27 14:52:56 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLInitializationEvent@3a1834 delivered to mod FML

2012-08-27 14:52:56 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@3a1834 to mod Forge

2012-08-27 14:52:56 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLInitializationEvent@3a1834 delivered to mod Forge

2012-08-27 14:52:56 [FINER] [ForgeModLoader] Posting state event cpw.mods.fml.common.event.FMLInitializationEvent@3a1834 to mod Jade_Knightblazer

2012-08-27 14:52:56 [FINER] [ForgeModLoader] State event cpw.mods.fml.common.event.FMLInitializationEvent@3a1834 delivered to mod Jade_Knightblazer

2012-08-27 14:52:56 [sEVERE] [ForgeModLoader] Fatal errors were detected during the transition from INITIALIZATION to POSTINITIALIZATION. Loading cannot continue

2012-08-27 14:52:56 [sEVERE] [ForgeModLoader]

Forge Mod Loader (coremods) Unloaded->Constructed->Pre-initialized->Initialized

Minecraft Forge (coremods) Unloaded->Constructed->Pre-initialized->Initialized

AsgardShield (AsgardShield.zip) Unloaded->Constructed->Pre-initialized->Errored

2012-08-27 14:52:56 [sEVERE] [ForgeModLoader] The following problems were captured during this phase

2012-08-27 14:52:56 [sEVERE] [ForgeModLoader] Caught exception from Jade_Knightblazer

java.lang.reflect.InvocationTargetException

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:310)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69)

at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)

at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)

at com.google.common.eventbus.EventBus.post(EventBus.java:268)

at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:123)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69)

at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)

at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)

at com.google.common.eventbus.EventBus.post(EventBus.java:268)

at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:81)

at cpw.mods.fml.common.Loader.initializeMods(Loader.java:620)

at cpw.mods.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:84)

at cpw.mods.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:355)

at ft.b(DedicatedServer.java:111)

at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:415)

at ep.run(SourceFile:539)

Caused by: java.lang.NoClassDefFoundError: atg

at mod_AsgardShield.mod_AsgardShield.load(mod_AsgardShield.java:163)

... 31 more

Caused by: java.lang.ClassNotFoundException: atg

at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:99)

at java.lang.ClassLoader.loadClass(Unknown Source)

at java.lang.ClassLoader.loadClass(Unknown Source)

... 32 more

Caused by: java.lang.NullPointerException

at org.objectweb.asm.ClassReader.<init>(Unknown Source)

at cpw.mods.fml.common.asm.transformers.SideTransformer.transform(SideTransformer.java:27)

at cpw.mods.fml.relauncher.RelaunchClassLoader.runTransformers(RelaunchClassLoader.java:141)

at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:92)

... 34 more

2012-08-27 14:52:56 [iNFO] [sTDERR] 2012-08-27 14:52:55 [iNFO] Starting minecraft server version 1.3.2

2012-08-27 14:52:55 [WARNING] To start the server with more ram, launch it as "java -Xmx1024M -Xms1024M -jar minecraft_server.jar"

2012-08-27 14:52:55 [iNFO] Loading properties

2012-08-27 14:52:55 [iNFO] Default game type: SURVIVAL

2012-08-27 14:52:55 [iNFO] Generating keypair

2012-08-27 14:52:56 [iNFO] Starting Minecraft server on 192.168.1.124:25565

cpw.mods.fml.common.LoaderException: java.lang.reflect.InvocationTargetException

2012-08-27 14:52:56 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.transition(LoadController.java:102)

2012-08-27 14:52:56 [iNFO] [sTDERR] at cpw.mods.fml.common.Loader.initializeMods(Loader.java:621)

2012-08-27 14:52:56 [iNFO] [sTDERR] at cpw.mods.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:84)

2012-08-27 14:52:56 [iNFO] [sTDERR] at cpw.mods.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:355)

2012-08-27 14:52:56 [iNFO] [sTDERR] at ft.b(DedicatedServer.java:111)

2012-08-27 14:52:56 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:415)

2012-08-27 14:52:56 [iNFO] [sTDERR] at ep.run(SourceFile:539)

2012-08-27 14:52:56 [iNFO] [sTDERR] Caused by: java.lang.reflect.InvocationTargetException

2012-08-27 14:52:56 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

2012-08-27 14:52:56 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

2012-08-27 14:52:56 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

2012-08-27 14:52:56 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source)

2012-08-27 14:52:56 [iNFO] [sTDERR] at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:310)

2012-08-27 14:52:56 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

2012-08-27 14:52:56 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

2012-08-27 14:52:56 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

2012-08-27 14:52:56 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source)

2012-08-27 14:52:56 [iNFO] [sTDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69)

2012-08-27 14:52:56 [iNFO] [sTDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

2012-08-27 14:52:56 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)

2012-08-27 14:52:56 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)

2012-08-27 14:52:56 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:268)

2012-08-27 14:52:56 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:123)

2012-08-27 14:52:56 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

2012-08-27 14:52:56 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

2012-08-27 14:52:56 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

2012-08-27 14:52:56 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source)

2012-08-27 14:52:56 [iNFO] [sTDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69)

2012-08-27 14:52:56 [iNFO] [sTDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

2012-08-27 14:52:56 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)

2012-08-27 14:52:56 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)

2012-08-27 14:52:56 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:268)

2012-08-27 14:52:56 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:81)

2012-08-27 14:52:56 [iNFO] [sTDERR] at cpw.mods.fml.common.Loader.initializeMods(Loader.java:620)

2012-08-27 14:52:56 [iNFO] [sTDERR] ... 5 more

2012-08-27 14:52:56 [iNFO] [sTDERR] Caused by: java.lang.NoClassDefFoundError: atg

2012-08-27 14:52:56 [iNFO] [sTDERR] at mod_AsgardShield.mod_AsgardShield.load(mod_AsgardShield.java:163)

2012-08-27 14:52:56 [iNFO] [sTDERR] ... 31 more

2012-08-27 14:52:56 [iNFO] [sTDERR] Caused by: java.lang.ClassNotFoundException: atg

2012-08-27 14:52:56 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:99)

2012-08-27 14:52:56 [iNFO] [sTDERR] at java.lang.ClassLoader.loadClass(Unknown Source)

2012-08-27 14:52:56 [iNFO] [sTDERR] at java.lang.ClassLoader.loadClass(Unknown Source)

2012-08-27 14:52:56 [iNFO] [sTDERR] ... 32 more

2012-08-27 14:52:56 [iNFO] [sTDERR] Caused by: java.lang.NullPointerException

2012-08-27 14:52:56 [iNFO] [sTDERR] at org.objectweb.asm.ClassReader.<init>(Unknown Source)

2012-08-27 14:52:56 [iNFO] [sTDERR] at cpw.mods.fml.common.asm.transformers.SideTransformer.transform(SideTransformer.java:27)

2012-08-27 14:52:56 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.runTransformers(RelaunchClassLoader.java:141)

2012-08-27 14:52:56 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:92)

2012-08-27 14:52:56 [iNFO] [sTDERR] ... 34 more

2012-08-27 14:52:56 [iNFO] [sTDERR] 2012-08-27 14:52:56 [sEVERE] Encountered an unexpected exception LoaderException

cpw.mods.fml.common.LoaderException: java.lang.reflect.InvocationTargetException

at cpw.mods.fml.common.LoadController.transition(LoadController.java:102)

at cpw.mods.fml.common.Loader.initializeMods(Loader.java:621)

at cpw.mods.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:84)

at cpw.mods.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:355)

at ft.b(DedicatedServer.java:111)

at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:415)

at ep.run(SourceFile:539)

Caused by: java.lang.reflect.InvocationTargetException

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:310)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69)

at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)

at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)

at com.google.common.eventbus.EventBus.post(EventBus.java:268)

at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:123)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69)

at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)

at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)

at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)

at com.google.common.eventbus.EventBus.post(EventBus.java:268)

at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:81)

at cpw.mods.fml.common.Loader.initializeMods(Loader.java:620)

... 5 more

Caused by: java.lang.NoClassDefFoundError: atg

at mod_AsgardShield.mod_AsgardShield.load(mod_AsgardShield.java:163)

... 31 more

Caused by: java.lang.ClassNotFoundException: atg

at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:99)

at java.lang.ClassLoader.loadClass(Unknown Source)

at java.lang.ClassLoader.loadClass(Unknown Source)

... 32 more

Caused by: java.lang.NullPointerException

at org.objectweb.asm.ClassReader.<init>(Unknown Source)

at cpw.mods.fml.common.asm.transformers.SideTransformer.transform(SideTransformer.java:27)

at cpw.mods.fml.relauncher.RelaunchClassLoader.runTransformers(RelaunchClassLoader.java:141)

at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:92)

... 34 more

2012-08-27 14:53:48 [iNFO] [sTDERR] 2012-08-27 14:52:56 [sEVERE] This crash report has been saved to: C:\Documents and Settings\HP_Administrator\Desktop\testserver\.\crash-reports\crash-2012-08-27_14.52.56-server.txt

2012-08-27 14:53:48 [iNFO] Stopping server

2012-08-27 14:53:48 [iNFO] Saving worlds

java.lang.NullPointerException

2012-08-27 14:53:48 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:323)

2012-08-27 14:53:48 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.j(MinecraftServer.java:371)

2012-08-27 14:53:48 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:498)

2012-08-27 14:53:48 [iNFO] [sTDERR] at ep.run(SourceFile:539)

2012-08-27 14:53:48 [iNFO] [sTDERR] java.net.SocketException: socket closed

2012-08-27 14:53:48 [iNFO] [sTDERR] at java.net.PlainSocketImpl.socketAccept(Native Method)

2012-08-27 14:53:48 [iNFO] [sTDERR] at java.net.PlainSocketImpl.accept(Unknown Source)

2012-08-27 14:53:48 [iNFO] [sTDERR] at java.net.ServerSocket.implAccept(Unknown Source)

2012-08-27 14:53:48 [iNFO] [sTDERR] at java.net.ServerSocket.accept(Unknown Source)

2012-08-27 14:53:48 [iNFO] [sTDERR] at fy.run(ServerListenThread.java:75)

2012-08-27 14:53:48 [iNFO] [sTDOUT] Closing listening thread

2012-08-27 14:53:48 [iNFO] [sTDERR] 2012-08-27 14:53:48 [iNFO] Stopping server

2012-08-27 14:53:48 [iNFO] Saving worlds

Exception in thread "Thread-5" java.lang.NullPointerException

2012-08-27 14:53:48 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:323)

2012-08-27 14:53:48 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.j(MinecraftServer.java:371)

2012-08-27 14:53:48 [iNFO] [sTDERR] at eo.run(SourceFile:527)

 

 

 

@_@, I feel like such a noob with Forge and SMP. I understand Modloader (client is this, and server is that) but for forge.... I feel like I am drowning.

Link to comment
Share on other sites

 

Caused by: java.lang.ClassNotFoundException: atg

 

-MCPBot- [ GET CLIENT CLASS ]

-MCPBot-  Side        : client

-MCPBot-  Name        : EntityClientPlayerMP

-MCPBot-  Notch      : atg

Seems fairly obvious what the issue is, you're referencing a class that doesnt exist.

Test your mod better.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Link to comment
Share on other sites

Be more easy to test if you could run the server on MCP with Forge installed.... Instead of skipping it. So I have to blindly hope SMP works while the Client runs smoothly.

 

Its odd I used the same Mod.zip I have placed in my clients /mods folder. So all files are intact.

Link to comment
Share on other sites

You know.. I never thought of that.

My god i've been a fucking retard

Oh wait...

There are perfectly setup debug configurations for the eclispe workspace.

Not my problem if you cant be bothered to use them -.-

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Link to comment
Share on other sites

Cool thanks, with all the tutorials around (not many for forge). No one has ever pointed out there was a server debug mode in eclipse. I never used this coding program before and did all my work with .txt for modloader.

 

Thanks for clearing that up and now hopfully I can use this tool to see whats going wrong. :D

 

 

Still odd tho, even with Eclipse debugging, the server loads up the mod just fine.  Its only after I .zip it and place in mods folder. /shrug  Back to the drawing board.

Link to comment
Share on other sites

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

    • I'm creating a custom staff, that can be used like a bow, meaning i can use it and it should "load" the staff.   As far as i can see the interaction is pretty simple: activate the "draw" stage via overriding use and then when the mouse is released the "releaseUsing" and "useOnRelease" methods are called.    What i want to achieve is between the activation and the release: I want to do stuff while it is drawn. For example i want to create particles and i want to stop the "drawn" stage in certain conditions. Is something like this possible and if so, where can i look? I'm also happy with examples from other mods. (For example i think that mana and artifice has something like that with the beam spells, but that mod is not open source).
    • Minecraft Version: 1.8-1.20.X Forge Version: All (Tested on 49.0.27, 11.14.4.1577 and some others) Steps to Reproduce: Setup a server with IPV6 only Setup a docker container with forge Try to connect to the Forge Server Description of issue: Hello, I am reaching out to seek your expertise within this forum to clarify a technical situation I am encountering, suspecting a potential issue related to Forge in a Docker environment, specifically in an IPv6 context. Initial Configuration: Debian 12 server, configured exclusively for IPv6, with Docker installed. Using the Docker image ghcr.io/pterodactyl/yolks:java_17, launching a Minecraft Vanilla server version 1.20.4 proceeds without any issues. Problem: The issue arises when deploying a Minecraft Forge server version 1.20.4 with the same Docker image (ghcr.io/pterodactyl/yolks:java_17), where connecting to the server becomes impossible. Notably, this issue does not occur when launching outside of Docker, where the server functions as expected. Hypothesis: This situation leads me to question the interaction between Forge and Docker, particularly in an IPv6-only configuration, despite several resolution attempts (testing with different versions of Forge, adjusting container network configurations (0.0.0.0, ::/0, and the server's ipv6), trials with various network settings, and modifications of Java options). Further testing was conducted with and without the use of the Pterodactyl game panel, unsuccessfully. The parameter -Djava.net.preferIPv4Stack=false also did not provide a solution. I tried to do the same things on multiple Minecraft server (include vanilla,spigot,fabric,sponge) and this work fine. The problem only happend with Forge. This issue seem to happend on all forge versions.   I appreciate your time and assistance in advance.
    • The game crashed whilst exception ticking world Error: java.lang.NullPointerException: Cannot invoke "net.minecraft.resources.ResourceLocation.equals(Object)" because "this.lootTableId" is null Error given is above. I was already playing for around 15 minutes and wasn't doing anything specific or even breaking anything when the crashed happened. This is update 1.19.2 forge: 43.2.23 Mod list: ESSENTIAL Mod (by SparkUniverse_) Traveler's Titles (Forge) (by YUNGNICKYOUNG) Resourceful Config (by ThatGravyBoat) Dynamic Lights (by atomicstrykergrumpy) TenzinLib (by CommodoreThrawn) Nature's Compass (by Chaosyr) Library Ferret - Forge (by jtl_elisa) Cold Sweat (by Mikul) Simple Voice Chat (by henkelmax) Waystones (by BlayTheNinth) Carry On (by Tschipp) [Let's Do] Meadow (by satisfy) Creeper Overhaul (by joosh_7889) AutoRegLib (by Vazkii) Moonlight Lib (by MehVahdJukaar) AppleSkin (by squeek502) Xaero's World Map (by xaero96) Rotten Creatures (by fusionstudiomc) YUNG's API (Forge) (by YUNGNICKYOUNG) Village Artifacts (by Lothrazar) Right Click, Get Crops (by TeamCoFH) Supplementaries (by MehVahdJukaar) Automatic Tool Swap (by MelanX) Better Third Person (by Socolio) Supplementaries Squared (by plantspookable) Traveler's Backpack (by Tiviacz1337) Caelus API (Forge/NeoForge) (by TheIllusiveC4) Creatures and Beasts (by joosh_7889) Architectury API (Fabric/Forge/NeoForge) (by shedaniel) Quark Oddities (by Vazkii) Origins (Forge) (by EdwinMindcraft) Villager Names (by Serilum) GeckoLib (by Gecko) Realistic Bees (by Serilum) Illuminations Forge 🔥 (by dimadencep) Serene Seasons (by TheAdubbz) Critters and Companions (by joosh_7889) [Let's Do] Bakery (by satisfy) Falling Leaves (Forge) (by Cheaterpaul) Jade 🔍 (by Snownee) Collective (by Serilum) TerraBlender (Forge) (by TheAdubbz) [Let's Do] API (by Cristelknight) Towns and Towers (by Biban_Auriu) More Villagers (by SameDifferent) Biomes O' Plenty (by Forstride) Goblin Traders (by MrCrayfish) Corpse (by henkelmax) Tree Harvester (by Serilum) Balm (Forge Edition) (by BlayTheNinth) Mouse Tweaks (by YaLTeR) Sound Physics Remastered (by henkelmax) Xaero's Minimap (by xaero96) Just Enough Items (JEI) (by mezz) Terralith (by Starmute) Quark (by Vazkii) [Let's Do] Vinery (by satisfy) [Let's Do] Candlelight (by satisfy) Repurposed Structures (Neoforge/Forge) (by telepathicgrunt) Dusty Decorations (by flint_mischiff) Immersive Armors [Fabric/Forge] (by Conczin) Serene Seasons Fix (by Or_OS) Shutup Experimental Settings! (by Corgi_Taco) Skin Layers 3D (Fabric/Forge) (by tr7zw)
    • Make sure Java is running via Nvidia GPU https://windowsreport.com/minecraft-not-using-gpu/  
    • Also make a test with other Custom Launchers like AT Launcher, MultiMC or Technic Launcher
  • Topics

×
×
  • Create New...

Important Information

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