Jump to content

Metadata and armor?


SwordsMiner

Recommended Posts

Alrighty, so I have "special effect" armor in my mod but its glitching out a bit. What is happening is when the armor's metadata hits 0 (I use metadata as "power" for the armor, and I have the armor set as a enumtype of infinite, so it doesnt protect the player, just allows them to wear it) and when it hits 0 and the player logs out, it will exactly go to a metadata of 65532, and it will completly "regenerate" its power if the max is under that, I also noticed that it does this at values of things like 1 and 2. Help? Heres what my enum looks like

 

public static EnumArmorMaterial armorInfinite = EnumHelper.addArmorMaterial("INFINITE", 0, new int[] { 0, 0, 0, 0}, 0);

 

and heres a sample of my code from my tick hander:

 

 

 

		if(player.getCurrentItemOrArmor(4) != null){
		ItemStack itemPar1 = player.getCurrentItemOrArmor(4);
		if(itemPar1.getItem() == MoreMinecraft.helmetGogglesVision){
			if(itemPar1.getItem().getDamage(itemPar1) < 72000){
				player.addPotionEffect((new PotionEffect(Potion.nightVision.getId(), 219, 0)));
			}
			if(itemPar1.getItemDamage() == 0 && itemPar1.getItemDamage() < 72000){
			itemPar1.setItemDamage(1);
			} else if(itemPar1.getItemDamage() < 72000) itemPar1.setItemDamage(itemPar1.getItemDamage() + 1);
		}

	}

 

 

and I just use a custom crafting handler for adding to the metadata, it just looks like this

 

CraftingManager.getInstance().getRecipeList().add(new RecipeRepair(this.helmetGogglesVision.itemID, new ItemStack(Item.redstone), 1125));

 

Help? I suspect that minecraft is freaking out because the metadata is at 0, and since I have it to be "invincible" as far as actual vanilla armor goes I assume it just freaks and trys to fix it.

Link to comment
Share on other sites

As you've not given me any of the code I'd like to look at (I'd preferably see your whole class for each of those) I can only speculate based on the evidence. Make sure that you are using your tick handler on both the client and server sides, so make sure it is registered in the client and common proxies. As only the server world is saved, if it is only decremented on the client the server wil think it's full when loading the player, so the damage will be full.

Link to comment
Share on other sites

Ill give you my client, common, and tick handler.

 

Tick:

package mods.MoreMinecraft.Classes.common;

import java.util.EnumSet;

import mods.MoreMinecraft.Classes.MoreMinecraft;
import net.minecraft.block.material.Material;
import net.minecraft.client.Minecraft;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;

import org.lwjgl.input.Keyboard;

import cpw.mods.fml.common.ITickHandler;
import cpw.mods.fml.common.TickType;

public class ServerTickHandler implements ITickHandler {
boolean scubaTank = false;
boolean alreadyJumped = false;
boolean alreadyJumpedDamaged = false;
private void OnPlayerTick(EntityPlayer player){

	if(player.getCurrentItemOrArmor(4) != null){
		ItemStack itemPar1 = player.getCurrentItemOrArmor(4);
		if(itemPar1.getItem() == MoreMinecraft.helmetGogglesVision){
			if(itemPar1.getItem().getDamage(itemPar1) < 72000){
				player.addPotionEffect((new PotionEffect(Potion.nightVision.getId(), 219, 0)));
			}
			if(itemPar1.getItemDamage() == 0 && itemPar1.getItemDamage() < 72000){
			itemPar1.setItemDamage(1);
			} else if(itemPar1.getItemDamage() < 72000) itemPar1.setItemDamage(itemPar1.getItemDamage() + 1);
		}

	}

	if(player.getCurrentItemOrArmor(3) != null){
		ItemStack itemPar1 = player.getCurrentItemOrArmor(3);
		if(itemPar1.getItem() == MoreMinecraft.plateDualHearts){
			if(itemPar1.getItem().getDamage(itemPar1) < 72000){
			player.addPotionEffect((new PotionEffect(Potion.regeneration.getId(), 21, 2)));
			player.addPotionEffect((new PotionEffect(Potion.field_76443_y.getId(), 21, 0)));
			}
			if(itemPar1.getItemDamage() == 0 && itemPar1.getItemDamage() < 72000){
			itemPar1.setItemDamage(1);
			} else if(itemPar1.getItemDamage() < 72000) itemPar1.setItemDamage(itemPar1.getItemDamage() + 1);
		}

	}
	if(player.getCurrentItemOrArmor(4) != null){
		ItemStack itemPar1 = player.getCurrentItemOrArmor(4);
		if(itemPar1.getItem() == MoreMinecraft.scubaHelmet && player.isInsideOfMaterial(Material.water)){
			if(itemPar1.getItem().getDamage(itemPar1) < 72000){	
			player.addPotionEffect((new PotionEffect(Potion.waterBreathing.getId(), 21, 0)));	
			}
			if(itemPar1.getItemDamage() == 0 && itemPar1.getItemDamage() < 72000 && scubaTank){
				itemPar1.setItemDamage(1);
				} else if(itemPar1.getItemDamage() < 72000 && scubaTank) itemPar1.setItemDamage(itemPar1.getItemDamage() + 1);
			if(itemPar1.getItemDamage() == 0 && itemPar1.getItemDamage() < 72000 && !scubaTank){
				itemPar1.setItemDamage(4);
				} else if(itemPar1.getItemDamage() < 72000 && !scubaTank) itemPar1.setItemDamage(itemPar1.getItemDamage() + 4);
		}

	}
		if(player.getCurrentItemOrArmor(3) != null){
			ItemStack itemPar1 = player.getCurrentItemOrArmor(3);
			if(itemPar1.getItem() == MoreMinecraft.scubaTank){
				scubaTank = true;
				if(player.onGround){
					player.addPotionEffect((new PotionEffect(Potion.moveSlowdown.getId(), 21, 0)));	
				}
			} else scubaTank = false;

		} else scubaTank = false;

		if(player.getCurrentItemOrArmor(1) != null){
			ItemStack itemPar1 = player.getCurrentItemOrArmor(1);
			if(itemPar1.getItem() == MoreMinecraft.jumpBoots){
				boolean isJumping = Minecraft.getMinecraft().gameSettings.keyBindJump.pressed && !player.capabilities.isFlying;
				if(itemPar1.getItem().getDamage(itemPar1) < 60000 && isJumping && !alreadyJumped){
				player.addPotionEffect((new PotionEffect(Potion.jump.getId(), 1, 0)));
				if(!player.capabilities.isCreativeMode && !alreadyJumpedDamaged && !alreadyJumped){
				itemPar1.setItemDamage(itemPar1.getItemDamage() + 100);
				alreadyJumpedDamaged = true;
				}
				alreadyJumped = true;
				}
				/*if(itemPar1.getItemDamage() == 0 && itemPar1.getItemDamage() < 60000){
				itemPar1.setItemDamage(1);
				} else if(itemPar1.getItemDamage() < 60000) itemPar1.setItemDamage(itemPar1.getItemDamage() + 1); */
			}

		}
		if(player.onGround || player.isInWater()){
			alreadyJumped = false;
			alreadyJumpedDamaged = false;
		}
}

@Override
public void tickStart(EnumSet<TickType> type, Object... tickData) {

	if(type.equals(EnumSet.of(TickType.PLAYER))){
		OnPlayerTick((EntityPlayer) tickData[0]);
	}

}

@Override
public void tickEnd(EnumSet<TickType> type, Object... tickData) {
	// TODO Auto-generated method stub

}

@Override
public EnumSet<TickType> ticks() {

	return EnumSet.of(TickType.PLAYER, TickType.SERVER);
}

@Override
public String getLabel() {
	// TODO Auto-generated method stub
	return null;
}

}

 

Common:

package mods.MoreMinecraft.Classes.common;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;
import cpw.mods.fml.common.network.IGuiHandler;
import cpw.mods.fml.common.registry.TickRegistry;
import cpw.mods.fml.relauncher.Side;

public class CommonProxy implements IGuiHandler
{
    public void registerRenders()
    {
    }

    public int addArmor(String string)
    {
        return 0;
    }
    public void registerServerTickHandler(){
    	TickRegistry.registerTickHandler(new ServerTickHandler(), Side.SERVER);
    	TickRegistry.registerTickHandler(new ServerTickHandler(), Side.CLIENT);
    }

@Override
public Object getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z)
{
TileEntity tileEntity = world.getBlockTileEntity(x, y, z);

if(tileEntity != null)
{
switch(ID)
{
case 0:
	/* your Containers go here*/
}
}
return tileEntity;
}

@Override
public Object getClientGuiElement(int ID, EntityPlayer player, World world,
		int x, int y, int z) {
	return null;
}
    
}

Client:

package mods.MoreMinecraft.Classes.common;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;
import cpw.mods.fml.common.network.IGuiHandler;
import cpw.mods.fml.common.registry.TickRegistry;
import cpw.mods.fml.relauncher.Side;

public class CommonProxy implements IGuiHandler
{
    public void registerRenders()
    {
    }

    public int addArmor(String string)
    {
        return 0;
    }
    public void registerServerTickHandler(){
    	TickRegistry.registerTickHandler(new ServerTickHandler(), Side.SERVER);
    	TickRegistry.registerTickHandler(new ServerTickHandler(), Side.CLIENT);
    }

@Override
public Object getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z)
{
TileEntity tileEntity = world.getBlockTileEntity(x, y, z);

if(tileEntity != null)
{
switch(ID)
{
case 0:
	/* your Containers go here*/
}
}
return tileEntity;
}

@Override
public Object getClientGuiElement(int ID, EntityPlayer player, World world,
		int x, int y, int z) {
	return null;
}
    
}

 

Just a side note, registerServerTickHandler is called. So it is working as far as tick handlers go.

Link to comment
Share on other sites

I made this mistake the first time I played with making tick handlers

 

@Override
public EnumSet<TickType> ticks() {

	return EnumSet.of(TickType.PLAYER, TickType.SERVER);
}

 

should be

@Override
public EnumSet<TickType> ticks() {

	return EnumSet.of(TickType.PLAYER);
}

 

give that a go now, and tell me if it works (you only need the one think in there in most cases, I've not come across any cases yet where I've needed 2)

Link to comment
Share on other sites

I made this mistake the first time I played with making tick handlers

 

@Override
public EnumSet<TickType> ticks() {

	return EnumSet.of(TickType.PLAYER, TickType.SERVER);
}

 

should be

@Override
public EnumSet<TickType> ticks() {

	return EnumSet.of(TickType.PLAYER);
}

 

give that a go now, and tell me if it works (you only need the one think in there in most cases, I've not come across any cases yet where I've needed 2)

 

Actually, it works fine until it around the durability of 4000.. I dont understand. and I tried that

Link to comment
Share on other sites

I'm working on it. I'm not even sure you need a tick handler here (almost definite)

please don't pm me like that, If i don't reply to a post I commented on, it's ether because a.) I can't think of a solution yet. b.) I am working on a solution and it's taking me time. c.) I have no more to contribute to the thread. d.) I'm away from my laptop for real life reasons.

 

in this case I was AFK and will reply with my solution in a minute.

Link to comment
Share on other sites

there we go, did this in the project I use to test stuff

package mods.gaspoweredstick.code.item;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.EnumArmorMaterial;
import net.minecraft.item.ItemArmor;
import net.minecraft.item.ItemStack;
import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
import net.minecraft.world.World;
import net.minecraftforge.common.EnumHelper;

public class ItemModArmor extends ItemArmor
{
public static final EnumArmorMaterial ModArmor = EnumHelper
		.addArmorMaterial("ModArmor", 9001, new int[]{1,2,3,4}, 42);


public ItemModArmor(int par1, EnumArmorMaterial par2EnumArmorMaterial, int par3, int par4)
{
	super(par1, par2EnumArmorMaterial, par3, par4);
}

//put all you stuff that was in the player tick handler here.
@Override
public void onArmorTickUpdate(World world, EntityPlayer player,
		ItemStack itemStack)
{
	player.addPotionEffect(new PotionEffect(Potion.nightVision.id, 21, 0));
	itemStack.damageItem(1, player);
}
}

 

should all work fine, and you should be able to figure out what to do in the method. This will also give better performance than the tick handler.

Link to comment
Share on other sites

Ill try it out, but what about items, I have a item that uses it too:

package mods.MoreMinecraft.Classes.Items;

import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import mods.MoreMinecraft.Classes.MoreMinecraft;
import mods.MoreMinecraft.Classes.Entities.EntityBakedPotatoLaunched;
import mods.MoreMinecraft.Classes.Entities.EntityPoisonPotatoLaunched;
import mods.MoreMinecraft.Classes.Entities.EntityPotatoLaunched;
import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.world.World;

public class PotatoLauncher extends Item
{
boolean potatoFired = false;
boolean potatoBakedFired = false;
boolean potatoPoisonFired = false;
public int thrownDamage = 6;
public static int current = 0;
    public PotatoLauncher(int par1)
    {
        super(par1);
        this.maxStackSize = 1;
        this.setMaxDamage(40000);
    }

    @SideOnly(Side.CLIENT)
    public void registerIcons(IconRegister reg)
    {
        this.itemIcon = reg.registerIcon(MoreMinecraft.modID + ":" + this.getUnlocalizedName());
    }
    
    /**
     * Called whenever this item is equipped and the right mouse button is pressed. Args: itemStack, world, entityPlayer
     */
    
    
    public ItemStack onItemRightClick(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer)
    {
    	if(this.getDamage(par1ItemStack) < 40000 || par3EntityPlayer.capabilities.isCreativeMode){

    	
            //par2World.playSoundAtEntity(par3EntityPlayer, "random.bow", 0.5F, 0.4F / (itemRand.nextFloat() * 0.4F + 0.8F));
            	if(par3EntityPlayer.inventory.hasItem(Item.potato.itemID) && !par3EntityPlayer.capabilities.isCreativeMode){
                par2World.spawnEntityInWorld(new EntityPotatoLaunched(par2World, par3EntityPlayer, thrownDamage, par3EntityPlayer));
                this.setDamage(par1ItemStack, this.getDamage(par1ItemStack)+500);
                par3EntityPlayer.inventory.consumeInventoryItem(Item.potato.itemID);
                return par1ItemStack;
            } else if(par3EntityPlayer.capabilities.isCreativeMode){
            	par2World.spawnEntityInWorld(new EntityPotatoLaunched(par2World, par3EntityPlayer, thrownDamage, par3EntityPlayer));
            	return par1ItemStack;
            }
            	
            	
            	if(par3EntityPlayer.inventory.hasItem(Item.bakedPotato.itemID) && !par3EntityPlayer.capabilities.isCreativeMode){
                par2World.spawnEntityInWorld(new EntityBakedPotatoLaunched(par2World, par3EntityPlayer, thrownDamage, par3EntityPlayer));
                this.setDamage(par1ItemStack, this.getDamage(par1ItemStack)+500);
                par3EntityPlayer.inventory.consumeInventoryItem(Item.bakedPotato.itemID);
                return par1ItemStack;
            } else if(par3EntityPlayer.capabilities.isCreativeMode){
            	par2World.spawnEntityInWorld(new EntityBakedPotatoLaunched(par2World, par3EntityPlayer, thrownDamage, par3EntityPlayer));
            	return par1ItemStack;
            }

            
            	if(par3EntityPlayer.inventory.hasItem(Item.poisonousPotato.itemID) && !par3EntityPlayer.capabilities.isCreativeMode){
                    par2World.spawnEntityInWorld(new EntityPoisonPotatoLaunched(par2World, par3EntityPlayer, thrownDamage, par3EntityPlayer));
                    this.setDamage(par1ItemStack, this.getDamage(par1ItemStack)+500);
                    par3EntityPlayer.inventory.consumeInventoryItem(Item.poisonousPotato.itemID);
                    return par1ItemStack;
                } else if(par3EntityPlayer.capabilities.isCreativeMode){
                	par2World.spawnEntityInWorld(new EntityPoisonPotatoLaunched(par2World, par3EntityPlayer, thrownDamage, par3EntityPlayer));
                	return par1ItemStack;
                }
            	

            par3EntityPlayer.addChatMessage("You dont have any Potatoes!");

        
            
            return par1ItemStack;
    } else par3EntityPlayer.addChatMessage("This potato launcher is out of charge!");
	return par1ItemStack;
    }
    }

 

 

Sorry about being impatient!

 

Link to comment
Share on other sites

Doesnt work  >:(, but I do notice a decrease in lag (it used to give out for a second before)

 

Heres what I have in place of my server tick handler now:

 

package mods.MoreMinecraft.Classes.Items;

import mods.MoreMinecraft.Classes.MoreMinecraft;
import net.minecraft.block.material.Material;
import net.minecraft.client.Minecraft;
import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.entity.Entity;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.EnumArmorMaterial;
import net.minecraft.item.Item;
import net.minecraft.item.ItemArmor;
import net.minecraft.item.ItemStack;
import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
import net.minecraft.world.World;

public class ItemArmorRedstoneMod extends ItemArmor
{
String path = "/textures/armor/";
String Extension = ".png";
    String armorFile;

    public ItemArmorRedstoneMod(int par1, EnumArmorMaterial par2EnumArmorMaterial,
            int par3, int par4, String armorFile)
    {
        super(par1, par2EnumArmorMaterial, par3, par4);
        this.armorFile = armorFile;
    }
    @Override
    public void registerIcons(IconRegister reg)
    {
        this.itemIcon = reg.registerIcon(MoreMinecraft.modID + ":"
                + this.getUnlocalizedName());
    }
@Override
    public String getArmorTexture(ItemStack stack, Entity entity, int slot, int layer)
    {
return "moreminecraft"+":" + armorFile + Extension;
}
@Override
public boolean getIsRepairable(ItemStack par1ItemStack, ItemStack par2ItemStack)
{
return Item.redstone.itemID == par2ItemStack.itemID ? true : super.getIsRepairable(par1ItemStack, par2ItemStack);
}

boolean scubaTank = false;
boolean alreadyJumped = false;
boolean alreadyJumpedDamaged = false;

@Override
public void onArmorTickUpdate(World par1World, EntityPlayer player, ItemStack par3ItemStack){

if(player.getCurrentItemOrArmor(4) != null){
	ItemStack itemPar1 = player.getCurrentItemOrArmor(4);
	if(itemPar1.getItem() == MoreMinecraft.helmetGogglesVision){
		if(itemPar1.getItem().getDamage(itemPar1) < 72000){
			player.addPotionEffect((new PotionEffect(Potion.nightVision.getId(), 219, 0)));
		}
		if(itemPar1.getItemDamage() == 0 && itemPar1.getItemDamage() < 72000){
		itemPar1.setItemDamage(1);
		} else if(itemPar1.getItemDamage() < 72000) itemPar1.setItemDamage(itemPar1.getItemDamage() + 1);
	}

}

if(player.getCurrentItemOrArmor(3) != null){
	ItemStack itemPar1 = player.getCurrentItemOrArmor(3);
	if(itemPar1.getItem() == MoreMinecraft.plateDualHearts){
		if(itemPar1.getItem().getDamage(itemPar1) < 72000){
		player.addPotionEffect((new PotionEffect(Potion.regeneration.getId(), 21, 2)));
		player.addPotionEffect((new PotionEffect(Potion.field_76443_y.getId(), 21, 0)));
		}
		if(itemPar1.getItemDamage() == 0 && itemPar1.getItemDamage() < 72000){
		itemPar1.setItemDamage(1);
		} else if(itemPar1.getItemDamage() < 72000) itemPar1.setItemDamage(itemPar1.getItemDamage() + 1);
	}

}
if(player.getCurrentItemOrArmor(4) != null){
	ItemStack itemPar1 = player.getCurrentItemOrArmor(4);
	if(itemPar1.getItem() == MoreMinecraft.scubaHelmet && player.isInsideOfMaterial(Material.water)){
		if(itemPar1.getItem().getDamage(itemPar1) < 72000){	
		player.addPotionEffect((new PotionEffect(Potion.waterBreathing.getId(), 21, 0)));	
		}
		if(itemPar1.getItemDamage() == 0 && itemPar1.getItemDamage() < 72000 && scubaTank){
			itemPar1.setItemDamage(1);
			} else if(itemPar1.getItemDamage() < 72000 && scubaTank) itemPar1.setItemDamage(itemPar1.getItemDamage() + 1);
		if(itemPar1.getItemDamage() == 0 && itemPar1.getItemDamage() < 72000 && !scubaTank){
			itemPar1.setItemDamage(4);
			} else if(itemPar1.getItemDamage() < 72000 && !scubaTank) itemPar1.setItemDamage(itemPar1.getItemDamage() + 4);
	}

}
	if(player.getCurrentItemOrArmor(3) != null){
		ItemStack itemPar1 = player.getCurrentItemOrArmor(3);
		if(itemPar1.getItem() == MoreMinecraft.scubaTank){
			scubaTank = true;
			if(player.onGround){
				player.addPotionEffect((new PotionEffect(Potion.moveSlowdown.getId(), 21, 0)));	
			}
		} else scubaTank = false;

	} else scubaTank = false;

	if(player.getCurrentItemOrArmor(1) != null){
		ItemStack itemPar1 = player.getCurrentItemOrArmor(1);
		if(itemPar1.getItem() == MoreMinecraft.jumpBoots){
			boolean isJumping = Minecraft.getMinecraft().gameSettings.keyBindJump.pressed && !player.capabilities.isFlying;
			if(itemPar1.getItem().getDamage(itemPar1) < 60000 && isJumping && !alreadyJumped){
			player.addPotionEffect((new PotionEffect(Potion.jump.getId(), 1, 0)));
			if(!player.capabilities.isCreativeMode && !alreadyJumpedDamaged && !alreadyJumped){
			itemPar1.setItemDamage(itemPar1.getItemDamage() + 100);
			alreadyJumpedDamaged = true;
			}
			alreadyJumped = true;
			}
			/*if(itemPar1.getItemDamage() == 0 && itemPar1.getItemDamage() < 60000){
			itemPar1.setItemDamage(1);
			} else if(itemPar1.getItemDamage() < 60000) itemPar1.setItemDamage(itemPar1.getItemDamage() + 1); */
		}

	}
	if(player.onGround || player.isInWater()){
		alreadyJumped = false;
		alreadyJumpedDamaged = false;
	}
}

}

Link to comment
Share on other sites

??? not a clue, If you're talking about the damage number, that increases as it get's damaged so should be high. The item i used in my first example for this works fine for me... so you sot me stumped, it should all be working so I'm not sure anymore. just play about with it a bit more, run in debug etc and see what't happening as it runs it all. good luck.
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 hosted a minecraft server and I modded it, and there is always an error on the console which closes the server. If someone knows how to repair it, it would be amazing. Thank you. I paste the crash report down here: ---- Minecraft Crash Report ---- WARNING: coremods are present:   llibrary (llibrary-core-1.0.11-1.12.2.jar)   WolfArmorCore (WolfArmorAndStorage-1.12.2-3.8.0-universal-signed.jar)   AstralCore (astralsorcery-1.12.2-1.10.27.jar)   CreativePatchingLoader (CreativeCore_v1.10.71_mc1.12.2.jar)   SecurityCraftLoadingPlugin ([1.12.2] SecurityCraft v1.9.8.jar)   ForgelinPlugin (Forgelin-1.8.4.jar)   midnight (themidnight-0.3.5.jar)   FutureMC (Future-MC-0.2.19.jar)   SpartanWeaponry-MixinLoader (SpartanWeaponry-1.12.2-1.5.3.jar)   Backpacked (backpacked-1.4.3-1.12.2.jar)   LoadingPlugin (Reskillable-1.12.2-1.13.0.jar)   LoadingPlugin (Bloodmoon-MC1.12.2-1.5.3.jar) Contact their authors BEFORE contacting forge // There are four lights! Time: 3/28/24 12:17 PM Description: Exception in server tick loop net.minecraftforge.fml.common.LoaderException: java.lang.NoClassDefFoundError: net/minecraft/client/multiplayer/WorldClient     at net.minecraftforge.fml.common.AutomaticEventSubscriber.inject(AutomaticEventSubscriber.java:89)     at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:612)     at sun.reflect.GeneratedMethodAccessor10.invoke(Unknown Source)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:498)     at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91)     at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150)     at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76)     at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399)     at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71)     at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116)     at com.google.common.eventbus.EventBus.post(EventBus.java:217)     at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219)     at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:498)     at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91)     at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150)     at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76)     at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399)     at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71)     at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116)     at com.google.common.eventbus.EventBus.post(EventBus.java:217)     at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136)     at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595)     at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98)     at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333)     at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:125)     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486)     at java.lang.Thread.run(Thread.java:750) Caused by: java.lang.NoClassDefFoundError: net/minecraft/client/multiplayer/WorldClient     at java.lang.Class.getDeclaredMethods0(Native Method)     at java.lang.Class.privateGetDeclaredMethods(Class.java:2701)     at java.lang.Class.privateGetPublicMethods(Class.java:2902)     at java.lang.Class.getMethods(Class.java:1615)     at net.minecraftforge.fml.common.eventhandler.EventBus.register(EventBus.java:82)     at net.minecraftforge.fml.common.AutomaticEventSubscriber.inject(AutomaticEventSubscriber.java:82)     ... 31 more Caused by: java.lang.ClassNotFoundException: net.minecraft.client.multiplayer.WorldClient     at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191)     at java.lang.ClassLoader.loadClass(ClassLoader.java:418)     at java.lang.ClassLoader.loadClass(ClassLoader.java:351)     ... 37 more Caused by: net.minecraftforge.fml.common.asm.ASMTransformerWrapper$TransformerException: Exception in class transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer@4e558728 from coremod FMLCorePlugin     at net.minecraftforge.fml.common.asm.ASMTransformerWrapper$TransformerWrapper.transform(ASMTransformerWrapper.java:260)     at net.minecraft.launchwrapper.LaunchClassLoader.runTransformers(LaunchClassLoader.java:279)     at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:176)     ... 39 more Caused by: java.lang.RuntimeException: Attempted to load class bsb for invalid side SERVER     at net.minecraftforge.fml.common.asm.transformers.SideTransformer.transform(SideTransformer.java:62)     at net.minecraftforge.fml.common.asm.ASMTransformerWrapper$TransformerWrapper.transform(ASMTransformerWrapper.java:256)     ... 41 more A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details:     Minecraft Version: 1.12.2     Operating System: Linux (amd64) version 5.10.0-28-cloud-amd64     Java Version: 1.8.0_382, Temurin     Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Temurin     Memory: 948745536 bytes (904 MB) / 1564999680 bytes (1492 MB) up to 7635730432 bytes (7282 MB)     JVM Flags: 2 total; -Xmx8192M -Xms256M     IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0     FML: MCP 9.42 Powered by Forge 14.23.5.2860 63 mods loaded, 63 mods active     States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored     | State | ID                 | Version                 | Source                                                | Signature                                |     |:----- |:------------------ |:----------------------- |:----------------------------------------------------- |:---------------------------------------- |     | LC    | minecraft          | 1.12.2                  | minecraft.jar                                         | None                                     |     | LC    | mcp                | 9.42                    | minecraft.jar                                         | None                                     |     | LC    | FML                | 8.0.99.99               | forge-1.12.2-14.23.5.2860.jar                         | e3c3d50c7c986df74c645c0ac54639741c90a557 |     | LC    | forge              | 14.23.5.2860            | forge-1.12.2-14.23.5.2860.jar                         | e3c3d50c7c986df74c645c0ac54639741c90a557 |     | LC    | creativecoredummy  | 1.0.0                   | minecraft.jar                                         | None                                     |     | LC    | backpacked         | 1.4.2                   | backpacked-1.4.3-1.12.2.jar                           | None                                     |     | LC    | itemblacklist      | 1.4.3                   | ItemBlacklist-1.4.3.jar                               | None                                     |     | LC    | securitycraft      | v1.9.8                  | [1.12.2] SecurityCraft v1.9.8.jar                     | None                                     |     | LC    | aiimprovements     | 0.0.1.3                 | AIImprovements-1.12-0.0.1b3.jar                       | None                                     |     | LC    | jei                | 4.16.1.301              | jei_1.12.2-4.16.1.301.jar                             | None                                     |     | LC    | appleskin          | 1.0.14                  | AppleSkin-mc1.12-1.0.14.jar                           | None                                     |     | LC    | baubles            | 1.5.2                   | Baubles-1.12-1.5.2.jar                                | None                                     |     | LC    | astralsorcery      | 1.10.27                 | astralsorcery-1.12.2-1.10.27.jar                      | a0f0b759d895c15ceb3e3bcb5f3c2db7c582edf0 |     | LC    | attributefix       | 1.0.12                  | AttributeFix-Forge-1.12.2-1.0.12.jar                  | None                                     |     | LC    | atum               | 2.0.20                  | Atum-1.12.2-2.0.20.jar                                | None                                     |     | LC    | bloodmoon          | 1.5.3                   | Bloodmoon-MC1.12.2-1.5.3.jar                          | d72e0dd57935b3e9476212aea0c0df352dd76291 |     | LC    | forgelin           | 1.8.4                   | Forgelin-1.8.4.jar                                    | None                                     |     | LC    | bountiful          | 2.2.2                   | Bountiful-2.2.2.jar                                   | None                                     |     | LC    | camera             | 1.0.10                  | camera-1.0.10.jar                                     | None                                     |     | LC    | chisel             | MC1.12.2-1.0.2.45       | Chisel-MC1.12.2-1.0.2.45.jar                          | None                                     |     | LC    | collective         | 3.0                     | collective-1.12.2-3.0.jar                             | None                                     |     | LC    | reskillable        | 1.12.2-1.13.0           | Reskillable-1.12.2-1.13.0.jar                         | None                                     |     | LC    | compatskills       | 1.12.2-1.17.0           | CompatSkills-1.12.2-1.17.0.jar                        | None                                     |     | LC    | creativecore       | 1.10.0                  | CreativeCore_v1.10.71_mc1.12.2.jar                    | None                                     |     | LC    | customnpcs         | 1.12                    | CustomNPCs_1.12.2-(05Jul20).jar                       | None                                     |     | LC    | darknesslib        | 1.1.2                   | DarknessLib-1.12.2-1.1.2.jar                          | 220f10d3a93b3ff5fbaa7434cc629d863d6751b9 |     | LC    | dungeonsmod        | @VERSION@               | DungeonsMod-1.12.2-1.0.8.jar                          | None                                     |     | LC    | enhancedvisuals    | 1.3.0                   | EnhancedVisuals_v1.4.4_mc1.12.2.jar                   | None                                     |     | LC    | extrautils2        | 1.0                     | extrautils2-1.12-1.9.9.jar                            | None                                     |     | LC    | futuremc           | 0.2.6                   | Future-MC-0.2.19.jar                                  | None                                     |     | LC    | geckolib3          | 3.0.30                  | geckolib-forge-1.12.2-3.0.31.jar                      | None                                     |     | LC    | gottschcore        | 1.15.1                  | GottschCore-mc1.12.2-f14.23.5.2859-v1.15.1.jar        | None                                     |     | LC    | hardcorerevival    | 1.2.0                   | HardcoreRevival_1.12.2-1.2.0.jar                      | None                                     |     | LC    | waila              | 1.8.26                  | Hwyla-1.8.26-B41_1.12.2.jar                           | None                                     |     | LE    | imsm               | 1.12                    | Instant Massive Structures Mod 1.12.2.jar             | None                                     |     | L     | journeymap         | 1.12.2-5.7.1p2          | journeymap-1.12.2-5.7.1p2.jar                         | None                                     |     | L     | mobsunscreen       | @version@               | mobsunscreen-1.12.2-3.1.5.jar                         | None                                     |     | L     | morpheus           | 1.12.2-3.5.106          | Morpheus-1.12.2-3.5.106.jar                           | None                                     |     | L     | llibrary           | 1.7.20                  | llibrary-1.7.20-1.12.2.jar                            | None                                     |     | L     | mowziesmobs        | 1.5.8                   | mowziesmobs-1.5.8.jar                                 | None                                     |     | L     | nocubessrparmory   | 3.0.0                   | NoCubes_SRP_Combat_Addon_3.0.0.jar                    | None                                     |     | L     | nocubessrpnests    | 3.0.0                   | NoCubes_SRP_Nests_Addon_3.0.0.jar                     | None                                     |     | L     | nocubessrpsurvival | 3.0.0                   | NoCubes_SRP_Survival_Addon_3.0.0.jar                  | None                                     |     | L     | nocubesrptweaks    | V4.1                    | nocubesrptweaks-V4.1.jar                              | None                                     |     | L     | patchouli          | 1.0-23.6                | Patchouli-1.0-23.6.jar                                | None                                     |     | L     | artifacts          | 1.1.2                   | RLArtifacts-1.1.2.jar                                 | None                                     |     | L     | rsgauges           | 1.2.8                   | rsgauges-1.12.2-1.2.8.jar                             | None                                     |     | L     | rustic             | 1.1.7                   | rustic-1.1.7.jar                                      | None                                     |     | L     | silentlib          | 3.0.13                  | SilentLib-1.12.2-3.0.14+168.jar                       | None                                     |     | L     | scalinghealth      | 1.3.37                  | ScalingHealth-1.12.2-1.3.42+147.jar                   | None                                     |     | L     | lteleporters       | 1.12.2-3.0.2            | simpleteleporters-1.12.2-3.0.2.jar                    | None                                     |     | L     | spartanshields     | 1.5.5                   | SpartanShields-1.12.2-1.5.5.jar                       | None                                     |     | L     | spartanweaponry    | 1.5.3                   | SpartanWeaponry-1.12.2-1.5.3.jar                      | None                                     |     | L     | srparasites        | 1.9.18                  | SRParasites-1.12.2v1.9.18.jar                         | None                                     |     | L     | treasure2          | 2.2.0                   | Treasure2-mc1.12.2-f14.23.5.2859-v2.2.1.jar           | None                                     |     | L     | treeharvester      | 4.0                     | treeharvester_1.12.2-4.0.jar                          | None                                     |     | L     | twilightforest     | 3.11.1021               | twilightforest-1.12.2-3.11.1021-universal.jar         | None                                     |     | L     | variedcommodities  | 1.12.2                  | VariedCommodities_1.12.2-(31Mar23).jar                | None                                     |     | L     | voicechat          | 1.12.2-2.4.32           | voicechat-forge-1.12.2-2.4.32.jar                     | None                                     |     | L     | wolfarmor          | 3.8.0                   | WolfArmorAndStorage-1.12.2-3.8.0-universal-signed.jar | None                                     |     | L     | worldborder        | 2.3                     | worldborder_1.12.2-2.3.jar                            | None                                     |     | L     | midnight           | 0.3.5                   | themidnight-0.3.5.jar                                 | None                                     |     | L     | structurize        | 1.12.2-0.10.277-RELEASE | structurize-1.12.2-0.10.277-RELEASE.jar               | None                                     |     Loaded coremods (and transformers):  llibrary (llibrary-core-1.0.11-1.12.2.jar)   net.ilexiconn.llibrary.server.core.plugin.LLibraryTransformer   net.ilexiconn.llibrary.server.core.patcher.LLibraryRuntimePatcher WolfArmorCore (WolfArmorAndStorage-1.12.2-3.8.0-universal-signed.jar)    AstralCore (astralsorcery-1.12.2-1.10.27.jar)    CreativePatchingLoader (CreativeCore_v1.10.71_mc1.12.2.jar)    SecurityCraftLoadingPlugin ([1.12.2] SecurityCraft v1.9.8.jar)    ForgelinPlugin (Forgelin-1.8.4.jar)    midnight (themidnight-0.3.5.jar)   com.mushroom.midnight.core.transformer.MidnightClassTransformer FutureMC (Future-MC-0.2.19.jar)   thedarkcolour.futuremc.asm.CoreTransformer SpartanWeaponry-MixinLoader (SpartanWeaponry-1.12.2-1.5.3.jar)    Backpacked (backpacked-1.4.3-1.12.2.jar)   com.mrcrayfish.backpacked.asm.BackpackedTransformer LoadingPlugin (Reskillable-1.12.2-1.13.0.jar)   codersafterdark.reskillable.base.asm.ClassTransformer LoadingPlugin (Bloodmoon-MC1.12.2-1.5.3.jar)   lumien.bloodmoon.asm.ClassTransformer     Profiler Position: N/A (disabled)     Is Modded: Definitely; Server brand changed to 'fml,forge'     Type: Dedicated Server (map_server.txt)
    • When i add mods like falling leaves, visuality and kappas shaders, even if i restart Minecraft they dont show up in the mods menu and they dont work
    • Delete the forge-client.toml file in your config folder  
    • If you are using AMD/ATI, get the latest drivers from their website - do not update via system  
    • Add the crash-report or latest.log (logs-folder) with sites like https://paste.ee/ and paste the link to it here  
  • Topics

×
×
  • Create New...

Important Information

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