Jump to content

[1.10]Spawn a rotated cube particle


TominoCZ

Recommended Posts

this is a mod I made for forge MC 1.7.10(I rendered the cube faces using vertexes with UV): http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/2724621-1-7-10-fancy-block-particles-3d-break-particles

now I need to draw the same cube, but randomly rotated when it spawns.

 

since it's a coremod, I need to change the code of the file ParticleDigging.class, but I don't know how to set a random rotation to the cube in 1.10...(doesn't need to keep rotating while falling).

 

Every vertex has it's own position. I need to edit those positions so the the faces, the whole cube is rotated.

 

Every cube face is 4 vertexes - points that make the face. there's 24 points/vertexes in total(6 faces * 4 points/vertexes each) that I need to rotate(change their position).

 

in this method:

 

public void renderParticle(VertexBuffer worldRendererIn, Entity entityIn, float partialTicks, float rotationX, float rotationZ, float rotationYZ, float rotationXY, float rotationXZ)
    {
        float f = ((float)this.particleTextureIndexX + this.particleTextureJitterX / 4.0F) / 16.0F;
        float f1 = f + 0.015609375F;
        float f2 = ((float)this.particleTextureIndexY + this.particleTextureJitterY / 4.0F) / 16.0F;
        float f3 = f2 + 0.015609375F;
        float f4 = 0.1F * this.particleScale;

        if (this.particleTexture != null)
        {
            f = this.particleTexture.getInterpolatedU((double)(this.particleTextureJitterX / 4.0F * 16.0F));
            f1 = this.particleTexture.getInterpolatedU((double)((this.particleTextureJitterX + 1.0F) / 4.0F * 16.0F));
            f2 = this.particleTexture.getInterpolatedV((double)(this.particleTextureJitterY / 4.0F * 16.0F));
            f3 = this.particleTexture.getInterpolatedV((double)((this.particleTextureJitterY + 1.0F) / 4.0F * 16.0F));
        }

        float f5 = (float)(this.prevPosX + (this.posX - this.prevPosX) * (double)partialTicks - interpPosX);
        float f6 = (float)(this.prevPosY + (this.posY - this.prevPosY) * (double)partialTicks - interpPosY);
        float f7 = (float)(this.prevPosZ + (this.posZ - this.prevPosZ) * (double)partialTicks - interpPosZ);
        int i = this.getBrightnessForRender(partialTicks);
        int j = i >> 16 & 65535;
        int k = i & 65535;

        //original particle code:
        //just notice that this quad/vertex is facing the player camera here:
       /**
        worldRendererIn.pos((double)(f5 - rotationX * f4 - rotationXY * f4), (double)(f6 - rotationZ * f4), (double)(f7 - rotationYZ * f4 - rotationXZ * f4)).tex((double)f, (double)f3).color(this.particleRed, this.particleGreen, this.particleBlue, 1.0F).lightmap(j, k).endVertex();
        worldRendererIn.pos((double)(f5 - rotationX * f4 + rotationXY * f4), (double)(f6 + rotationZ * f4), (double)(f7 - rotationYZ * f4 + rotationXZ * f4)).tex((double)f, (double)f2).color(this.particleRed, this.particleGreen, this.particleBlue, 1.0F).lightmap(j, k).endVertex();
        worldRendererIn.pos((double)(f5 + rotationX * f4 + rotationXY * f4), (double)(f6 + rotationZ * f4), (double)(f7 + rotationYZ * f4 + rotationXZ * f4)).tex((double)f1, (double)f2).color(this.particleRed, this.particleGreen, this.particleBlue, 1.0F).lightmap(j, k).endVertex();
        worldRendererIn.pos((double)(f5 + rotationX * f4 - rotationXY * f4), (double)(f6 - rotationZ * f4), (double)(f7 + rotationYZ * f4 - rotationXZ * f4)).tex((double)f1, (double)f3).color(this.particleRed, this.particleGreen, this.particleBlue, 1.0F).lightmap(j, k).endVertex();
    	**/

       //My Cube drawing code:

       //front
        worldRendererIn.pos(f5,      f6,      f7).tex((double)f1, (double)f3).color(this.particleRed * 1.4F, this.particleGreen * 1.4F, this.particleBlue * 1.4F, this.particleAlpha).lightmap(j, k).endVertex();
        worldRendererIn.pos(f5,      f6 + f4, f7).tex((double)f1, (double)f2).color(this.particleRed * 1.4F, this.particleGreen * 1.4F, this.particleBlue * 1.4F, this.particleAlpha).lightmap(j, k).endVertex();
        worldRendererIn.pos(f5 + f4, f6 + f4, f7).tex( (double)f, (double)f2).color(this.particleRed * 1.4F, this.particleGreen * 1.4F, this.particleBlue * 1.4F, this.particleAlpha).lightmap(j, k).endVertex();
        worldRendererIn.pos(f5 + f4, f6,      f7).tex((double)f, (double)f3).color(this.particleRed * 1.4F, this.particleGreen * 1.4F, this.particleBlue * 1.4F, this.particleAlpha).lightmap(j, k).endVertex();
  
    	//back
        worldRendererIn.pos(f5 + f4, f6,      f7 + f4).tex((double)f, (double)f2).color(this.particleRed * 1.4F, this.particleGreen * 1.4F, this.particleBlue * 1.4F, this.particleAlpha).lightmap(j, k).endVertex();
        worldRendererIn.pos(f5 + f4, f6 + f4, f7 + f4).tex((double)f, (double)f3).color(this.particleRed * 1.4F, this.particleGreen * 1.4F, this.particleBlue * 1.4F, this.particleAlpha).lightmap(j, k).endVertex();
        worldRendererIn.pos(f5,      f6 + f4, f7 + f4).tex((double)f1, (double)f3).color(this.particleRed * 1.4F, this.particleGreen * 1.4F, this.particleBlue * 1.4F, this.particleAlpha).lightmap(j, k).endVertex();
        worldRendererIn.pos(f5,      f6,      f7 + f4).tex((double)f1, (double)f2).color(this.particleRed * 1.4F, this.particleGreen * 1.4F, this.particleBlue * 1.4F, this.particleAlpha).lightmap(j, k).endVertex();
    
    	//left
        worldRendererIn.pos(f5, f6,      f7 + f4).tex((double)f1, (double)f2).color(this.particleRed * 1.4F, this.particleGreen * 1.4F, this.particleBlue * 1.4F, this.particleAlpha).lightmap(j, k).endVertex();
        worldRendererIn.pos(f5, f6 + f4, f7 + f4).tex((double)f, (double)f2).color(this.particleRed * 1.4F, this.particleGreen * 1.4F, this.particleBlue * 1.4F, this.particleAlpha).lightmap(j, k).endVertex();
        worldRendererIn.pos(f5, f6 + f4, f7).tex((double)f, (double)f3).color(this.particleRed * 1.4F, this.particleGreen * 1.4F, this.particleBlue * 1.4F, this.particleAlpha).lightmap(j, k).endVertex();
        worldRendererIn.pos(f5, f6,      f7).tex((double)f1, (double)f3).color(this.particleRed * 1.4F, this.particleGreen * 1.4F, this.particleBlue * 1.4F, this.particleAlpha).lightmap(j, k).endVertex();
    
    	//right
        worldRendererIn.pos(f5 + f4, f6,      f7).tex((double)f, (double)f3).color(this.particleRed * 1.4F, this.particleGreen * 1.4F, this.particleBlue * 1.4F, this.particleAlpha).lightmap(j, k).endVertex();
        worldRendererIn.pos(f5 + f4, f6 + f4, f7).tex((double)f1, (double)f3).color(this.particleRed * 1.4F, this.particleGreen * 1.4F, this.particleBlue * 1.4F, this.particleAlpha).lightmap(j, k).endVertex();
        worldRendererIn.pos(f5 + f4, f6 + f4, f7 + f4).tex((double)f1, (double)f2).color(this.particleRed * 1.4F, this.particleGreen * 1.4F, this.particleBlue * 1.4F, this.particleAlpha).lightmap(j, k).endVertex();
        worldRendererIn.pos(f5 + f4, f6,      f7 + f4).tex((double)f, (double)f2).color(this.particleRed * 1.4F, this.particleGreen * 1.4F, this.particleBlue * 1.4F, this.particleAlpha).lightmap(j, k).endVertex();
    
    	//top
    	worldRendererIn.pos(f5,      f6 + f4, f7).tex((double)f1, (double)f3).color(this.particleRed * 1.4F, this.particleGreen * 1.4F, this.particleBlue * 1.4F, this.particleAlpha).lightmap(j, k).endVertex();
    	worldRendererIn.pos(f5,      f6 + f4, f7 + f4).tex((double)f1, (double)f2).color(this.particleRed * 1.4F, this.particleGreen * 1.4F, this.particleBlue * 1.4F, this.particleAlpha).lightmap(j, k).endVertex();
    	worldRendererIn.pos(f5 + f4, f6 + f4, f7 + f4).tex((double)f, (double)f2).color(this.particleRed * 1.4F, this.particleGreen * 1.4F, this.particleBlue * 1.4F, this.particleAlpha).lightmap(j, k).endVertex();
    	worldRendererIn.pos(f5 + f4, f6 + f4, f7).tex((double)f, (double)f3).color(this.particleRed * 1.4F, this.particleGreen * 1.4F, this.particleBlue * 1.4F, this.particleAlpha).lightmap(j, k).endVertex();
    
    	//bottom
    	worldRendererIn.pos(f5,      f6, f7 + f4).tex((double)f, (double)f2).color(this.particleRed * 1.4F, this.particleGreen * 1.4F, this.particleBlue * 1.4F, this.particleAlpha).lightmap(j, k).endVertex();
    	worldRendererIn.pos(f5,      f6, f7).tex((double)f, (double)f3).color(this.particleRed * 1.4F, this.particleGreen * 1.4F, this.particleBlue * 1.4F, this.particleAlpha).lightmap(j, k).endVertex();
    	worldRendererIn.pos(f5 + f4, f6, f7).tex((double)f1, (double)f3).color(this.particleRed * 1.4F, this.particleGreen * 1.4F, this.particleBlue * 1.4F, this.particleAlpha).lightmap(j, k).endVertex();
    	worldRendererIn.pos(f5 + f4, f6, f7 + f4).tex((double)f1, (double)f2).color(this.particleRed * 1.4F, this.particleGreen * 1.4F, this.particleBlue * 1.4F, this.particleAlpha).lightmap(j, k).endVertex();
    }

 

So how do I draw such a cube?

Link to comment
Share on other sites

  • Replies 58
  • Created
  • Last Reply

Top Posters In This Topic

well of course it doesn't have to be a coremod when you're just spawning particles using an emitter block..

The mod I've done for 1.7.10 is a coremod, I dd not find ANY way to make it not a coremod and still replace the original minecraft particle rendering.

 

If there is a way to do it using events, tell me how because I have no idea which even I could use.

Link to comment
Share on other sites

Yes, I tried to do that once but with the wrong method and also if you have your own EventHandler you can't override a method from a different class, because if the eventhandler class was extending that class, it would throw errors because of that. that's why I couldn't do it.

How do you override a method of a different class in your EventHandler then?

Link to comment
Share on other sites

wait what do you mean "don't call super"..?

 

this is what I have so far:

package com.TominoCZ.FBP;

import java.util.List;

import net.minecraft.client.particle.Particle;
import net.minecraft.client.particle.ParticleDigging;
import net.minecraft.client.particle.ParticleEmitter;
import net.minecraft.client.renderer.VertexBuffer;
import net.minecraft.client.renderer.texture.TextureAtlasSprite;
import net.minecraft.entity.Entity;
import net.minecraft.util.EnumParticleTypes;
import net.minecraft.util.math.AxisAlignedBB;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.MathHelper;
import net.minecraft.util.math.Vec3d;
import net.minecraft.world.World;
import scala.collection.mutable.Queue;

public class IParticleEmitter extends ParticleEmitter
{
Queue<Entity> pq;

public IParticleEmitter(World worldIn, Entity e, EnumParticleTypes particleTypesIn) {
	super(worldIn, e, particleTypesIn);

	pq = new Queue<Entity>();
	pq.appendElem(e);
}

@Override
    public void setRBGColorF(float particleRedIn, float particleGreenIn, float particleBlueIn)
    {
    }

@Override
    public void setAlphaF(float alpha)
    {
    }

@Override
    public void setMaxAge(int p_187114_1_)
    {
    	
    }

@Override
    public void onUpdate()
    {
        this.prevPosX = this.posX;
        this.prevPosY = this.posY;
        this.prevPosZ = this.posZ;

        if (this.particleAge++ >= this.particleMaxAge)
        {
            this.setExpired();
        }

        this.motionY -= 0.04D * (double)this.particleGravity;
        this.moveEntity(this.motionX, this.motionY, this.motionZ);
        this.motionX *= 0.9800000190734863D;
        this.motionY *= 0.9800000190734863D;
        this.motionZ *= 0.9800000190734863D;

        if (this.isCollided)
        {
            this.motionX *= 0.699999988079071D;
            this.motionZ *= 0.699999988079071D;
        }
    }

    @Override
    public void renderParticle(VertexBuffer worldRendererIn, Entity entityIn, float partialTicks, float rotationX, float rotationZ, float rotationYZ, float rotationXY, float rotationXZ)
    {
    }
    
    @Override
    public void setParticleTexture(TextureAtlasSprite texture)
    {
    }
    
    @Override
    public void setParticleTextureIndex(int particleTextureIndex)
    {
    }

    @Override
    public void nextTextureIndexX()
    {
    }
    
    @Override
    public void setExpired()
    {
    }

    @Override
    protected void setSize(float p_187115_1_, float p_187115_2_)
    {
    }

    @Override
    public void setPosition(double p_187109_1_, double p_187109_3_, double p_187109_5_)
    {
    }

    @Override
    public void moveEntity(double x, double y, double z)
    {
    }

    @Override
    protected void resetPositionToBB()
    {
    }

    @Override
    public void setEntityBoundingBox(AxisAlignedBB p_187108_1_)
    {
    }
}

Link to comment
Share on other sites

Alright .. what constructor parameter should I initialize the Queue with....?

All I can pretty much do is initialize it like so: pq = null;..

 

I could add a Queue parameter to the constructor but then I would have to do another Queue field in the EventHandler...

Link to comment
Share on other sites

how do you replace the objects or how do you scan a Queue in general?

 

IEventHandler.class:

public class IEventHandler {

@SubscribeEvent
public void onEntityJoinWorldEvent(EntityJoinWorldEvent e)
{
	try
	{
		if (e.getEntity() == Minecraft.getMinecraft().thePlayer)
		{
			Field f1 = ParticleManager.class.getDeclaredField("queueEntityFX");
			Queue<Particle> qp = (Queue)f1.get(ParticleManager.class);

			Field f2 = ParticleManager.class.getDeclaredField("particleEmitters");
			Queue<ParticleEmitter> qe = (Queue)f2.get(ParticleManager.class);
			qe.add(new IParticleManager(e.getWorld(), null, qp));

			Minecraft.getMinecraft().effectRenderer.addEffect(new IParticleManager(e.getWorld(), null, qp));
		}
	}
	catch (Exception e1)
	{
		e1.printStackTrace();
	}
}
}

 

IParticleManager.class:

public class IParticleManager extends ParticleEmitter
{
private final Queue<Particle> pq;

public IParticleManager(World worldIn, Entity p, Queue q)
{
	super(null, null, null);

	pq = q;
}

@Override
    public void setRBGColorF(float particleRedIn, float particleGreenIn, float particleBlueIn)
    {
    }

@Override
    public void setAlphaF(float alpha)
    {
    }

@Override
    public void setMaxAge(int p_187114_1_)
    {
    }

@Override
    public void onUpdate()
    {
     //for (ParticleDigging.class : pq) 
    }

    @Override
    public void renderParticle(VertexBuffer worldRendererIn, Entity entityIn, float partialTicks, float rotationX, float rotationZ, float rotationYZ, float rotationXY, float rotationXZ)
    {
    }
    
    @Override
    public void setParticleTexture(TextureAtlasSprite texture)
    {
    }
    
    @Override
    public void setParticleTextureIndex(int particleTextureIndex)
    {
    }

    @Override
    public void nextTextureIndexX()
    {
    }
    
    @Override
    public void setExpired()
    {
    }

    @Override
    protected void setSize(float p_187115_1_, float p_187115_2_)
    {
    }

    @Override
    public void setPosition(double p_187109_1_, double p_187109_3_, double p_187109_5_)
    {
    }

    @Override
    public void moveEntity(double x, double y, double z)
    {
    }

    @Override
    protected void resetPositionToBB()
    {
    }

    @Override
    public void setEntityBoundingBox(AxisAlignedBB p_187108_1_)
    {
    }
}

Link to comment
Share on other sites

well then what the hell I did what you said how about you be more specific and actually help?!

This isn't even nescessary. All I wanted to know how to do is spawning a rotated cube not how to make it a normal mod.

So just stop that and rather tell me how to do what I actually came here for and be more specific this time because like this just telling me what I did wrong and not telling me what exactly to do, this not going anywhere.

Coud you please??

Thanks.

Link to comment
Share on other sites

I already did that. I now want to rotate them. i just dont know the math to calculate the positions of points of the vertexes. This task is just about math. As you see in the post, there's the code for rendering the cube and above the edited vertex rendering part, there is a piece of code  commented out. That is what the code used to look like before.

Link to comment
Share on other sites

Ok tell me if it's right and if it's not, post the correction please.

and the "I" in the names are there because there is already a file called that without the "I". Not that that would matter, it's for better importing without a mistake when I hit Ctrl + O.

 

IEventHandler.class:

public class IEventHandler {

@SubscribeEvent
public void onEntityJoinWorldEvent(EntityJoinWorldEvent e)
{
	try
	{
		if (e.getEntity() == Minecraft.getMinecraft().thePlayer)
		{
			Field f1 = ParticleManager.class.getDeclaredField("queueEntityFX");

			Field f2 = ParticleManager.class.getDeclaredField("particleEmitters");
			f2.set(ParticleManager.class, ((Queue<Particle>) f2.get(ParticleManager.class)).add(new IParticleManager()));
		}
	}
	catch (Exception e1)
	{
		e1.printStackTrace();
	}
}
}

 

IParticleManager.class:

public class IParticleManager extends ParticleEmitter
{
public IParticleManager()
{
	super(null, null, null);
}

@Override
    public void setRBGColorF(float particleRedIn, float particleGreenIn, float particleBlueIn)
    {
    }

@Override
    public void setAlphaF(float alpha)
    {
    }

@Override
    public void setMaxAge(int p_187114_1_)
    {
    }

@Override
    public void onUpdate()
    {
	try
	{
		Field f1 = ParticleManager.class.getDeclaredField("queueEntityFX");

		//((Queue)f1.get(ParticleManager.class)).forEach(Particle p : ((Queue)f1.get(ParticleManager.class)).stream());
		while(((Queue<Particle>)f1.get(ParticleManager.class)).contains(ParticleDigging.class)){
			f1.set(ParticleManager.class, ((Queue<Particle>)f1.get(ParticleManager.class)).remove(ParticleDigging.class));
			f1.set(ParticleManager.class, ((Queue<Particle>)f1.get(ParticleManager.class)).add(new IParticleDigging(worldObj, motionX, motionX, motionX, motionX, motionX, motionX, null)));
		}
	}
	catch(Exception e)
	{

	}
    }

    @Override
    public void renderParticle(VertexBuffer worldRendererIn, Entity entityIn, float partialTicks, float rotationX, float rotationZ, float rotationYZ, float rotationXY, float rotationXZ)
    {
    }
    
    @Override
    public void setParticleTexture(TextureAtlasSprite texture)
    {
    }
    
    @Override
    public void setParticleTextureIndex(int particleTextureIndex)
    {
    }

    @Override
    public void nextTextureIndexX()
    {
    }
    
    @Override
    public void setExpired()
    {
    }

    @Override
    protected void setSize(float p_187115_1_, float p_187115_2_)
    {
    }

    @Override
    public void setPosition(double p_187109_1_, double p_187109_3_, double p_187109_5_)
    {
    }

    @Override
    public void moveEntity(double x, double y, double z)
    {
    }

    @Override
    protected void resetPositionToBB()
    {
    }

    @Override
    public void setEntityBoundingBox(AxisAlignedBB p_187108_1_)
    {
    }
}

Link to comment
Share on other sites

Ok tell me if it's right and if it's not, post the correction please.

and the "I" in the names are there because there is already a file called that without the "I".

 

In standard nomenclature, the "I" denotes an interface.

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.

Link to comment
Share on other sites

Alright, now the field changing actually works.

 

But whenever I create a new instance of IParticleManager(the new emittor) it says this(because I call super(null, null, null)):

 

[00:24:40] [Client thread/INFO] [sTDOUT]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:34]: [Fancy Block Particles]: An error occured at onEvent(EntityJoinWorldEvent e)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: java.lang.NullPointerException

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at net.minecraft.client.particle.ParticleEmitter.<init>(ParticleEmitter.java:20)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at com.TominoCZ.FBP.IParticleManager.<init>(IParticleManager.java:22)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at com.TominoCZ.FBP.handler.ForgeEventHandler.onEvent(ForgeEventHandler.java:29)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_ForgeEventHandler_onEvent_EntityJoinWorldEvent.invoke(.dynamic)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:68)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:159)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at net.minecraft.world.World.spawnEntityInWorld(World.java:1217)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at net.minecraft.client.multiplayer.WorldClient.spawnEntityInWorld(WorldClient.java:210)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:2557)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:2462)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at net.minecraft.client.network.NetHandlerPlayClient.handleJoinGame(NetHandlerPlayClient.java:301)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at net.minecraft.network.play.server.SPacketJoinGame.processPacket(SPacketJoinGame.java:89)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at net.minecraft.network.play.server.SPacketJoinGame.processPacket(SPacketJoinGame.java:13)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at net.minecraft.network.PacketThreadUtil$1.run(PacketThreadUtil.java:15)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at java.util.concurrent.FutureTask.run(Unknown Source)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at net.minecraft.util.Util.runTask(Util.java:25)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1108)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at net.minecraft.client.Minecraft.run(Minecraft.java:406)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at net.minecraft.client.main.Main.main(Main.java:118)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at java.lang.reflect.Method.invoke(Unknown Source)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at java.lang.reflect.Method.invoke(Unknown Source)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97)

[00:24:40] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:35]: at GradleStart.main(GradleStart.java:26)

 

And this is the code I ise to change the field:

if (e.getEntity() == Minecraft.getMinecraft().thePlayer) {
		ParticleManager particleManager = new ParticleManager(e.getWorld(), null);

		try {
		    Class<?> c = particleManager.getClass();

		    Field f = c.getDeclaredField("particleEmitters");
		    f.setAccessible(true);
	  	    f.set(particleManager, ((Queue<Particle>)f.get(particleManager)).add(new IParticleManager()));
	  	    
	  	    System.out.println("[" + Main.name + "]: Field replacement success");
	  	    
		} catch (Exception x) {
			System.out.println("[" + Main.name + "]: An error occured at onEvent(EntityJoinWorldEvent e)");
		    x.printStackTrace();
		}

Link to comment
Share on other sites

now it says this:

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: java.lang.IllegalArgumentException: Can not set final java.util.Queue field net.minecraft.client.particle.ParticleManager.particleEmitters to java.lang.Boolean

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at sun.reflect.UnsafeFieldAccessorImpl.throwSetIllegalArgumentException(Unknown Source)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at sun.reflect.UnsafeFieldAccessorImpl.throwSetIllegalArgumentException(Unknown Source)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at sun.reflect.UnsafeQualifiedObjectFieldAccessorImpl.set(Unknown Source)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at java.lang.reflect.Field.set(Unknown Source)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at com.TominoCZ.FBP.handler.ForgeEventHandler.onEvent(ForgeEventHandler.java:30)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_ForgeEventHandler_onEvent_EntityJoinWorldEvent.invoke(.dynamic)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:68)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:159)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at net.minecraft.world.World.spawnEntityInWorld(World.java:1217)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at net.minecraft.client.multiplayer.WorldClient.spawnEntityInWorld(WorldClient.java:210)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:2557)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:2462)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at net.minecraft.client.network.NetHandlerPlayClient.handleJoinGame(NetHandlerPlayClient.java:301)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at net.minecraft.network.play.server.SPacketJoinGame.processPacket(SPacketJoinGame.java:89)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at net.minecraft.network.play.server.SPacketJoinGame.processPacket(SPacketJoinGame.java:13)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at net.minecraft.network.PacketThreadUtil$1.run(PacketThreadUtil.java:15)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at java.util.concurrent.FutureTask.run(Unknown Source)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at net.minecraft.util.Util.runTask(Util.java:25)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1108)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at net.minecraft.client.Minecraft.run(Minecraft.java:406)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at net.minecraft.client.main.Main.main(Main.java:118)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at java.lang.reflect.Method.invoke(Unknown Source)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at java.lang.reflect.Method.invoke(Unknown Source)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97)

[01:04:44] [Client thread/INFO] [sTDERR]: [com.TominoCZ.FBP.handler.ForgeEventHandler:onEvent:36]: at GradleStart.main(GradleStart.java:26)

 

EventHandler:

	@SubscribeEvent(priority=EventPriority.HIGH)
public void onEvent(EntityJoinWorldEvent e) {
	if (e.getEntity() == Minecraft.getMinecraft().thePlayer) {
		ParticleManager particleManager = new ParticleManager(e.getWorld(), null);

		try {
		    Class<?> c = particleManager.getClass();

		    Field f = c.getDeclaredField("particleEmitters");
		    System.out.println("[" + Main.name + "]: Getting field..");
		    f.setAccessible(true);
		    System.out.println("[" + Main.name + "]: Setting field accessible..");
	  	    f.set(particleManager, ((Queue<Particle>)f.get(particleManager)).add(new IParticleManager()));
	  	    
	  	    System.out.println("[" + Main.name + "]: Field replacement success");
	  	    
		} catch (Exception x) {
			System.out.println("[" + Main.name + "]: An error occured at onEvent(EntityJoinWorldEvent e):");
		    x.printStackTrace();
		}

		/*try {
			Field f2 = ParticleManager.class.getDeclaredField("particleEmitters");
			f2.setAccessible(true);

			Queue<Particle> qp = (Queue<Particle>) f2.get(Queue.class);
			qp.add(new IParticleManager());

			f2.set(qp, (Queue<Particle>) f2.get(Queue.class));
		} catch (Exception e1) {
			e1.printStackTrace();
		}
		*/
	}
}

 

IParticleManager:

public IParticleManager()
{
	super(Minecraft.getMinecraft().theWorld, new EntityItem(Minecraft.getMinecraft().theWorld), EnumParticleTypes.FLAME);
}

@Override
    public void setRBGColorF(float particleRedIn, float particleGreenIn, float particleBlueIn)
    {
    }

@Override
    public void setAlphaF(float alpha)
    {
    }

@Override
    public void setMaxAge(int p_187114_1_)
    {
    }

@Override
    public void onUpdate()
    {
	ParticleManager particleManager = new ParticleManager(this.worldObj, null);

	try
	{
		Class<?> c = particleManager.getClass();

	    Field f = c.getDeclaredField("queueEntityFX");
	    f.setAccessible(true);
	    
	    ((Queue<Particle>)f.get(particleManager)).forEach(particle->
		{
			try 
			{
				IBlockState bs = Block.getStateById(0);
				f.set(particleManager, ((Queue<Particle>)f.get(particleManager)).remove(ParticleDigging.class));
				f.set(particleManager, ((Queue<Particle>)f.get(particleManager)).add(new FBPParticleDigging(worldObj, interpPosX, interpPosY, interpPosZ, motionX, motionY, motionZ, bs)));
			}
			catch (Exception e) 
			{
				e.printStackTrace();
			}
		});
  	    
  	    System.out.println("[" + Main.name + "]: Field replacement success");
  	    
		/*
		Field f1 = ParticleManager.class.getDeclaredField("queueEntityFX");
		f1.setAccessible(true);

		((Queue<Particle>)f1.get(ParticleDigging.class)).forEach(particle->
		{
			try 
			{
				f1.set(particle, FBPParticleDigging.class);
			}
			catch (Exception e) 
			{
				e.printStackTrace();
			}
		});
		*/
	}
	catch(Exception e)
	{
		e.printStackTrace();
	}
    }

    @Override
    public void renderParticle(VertexBuffer worldRendererIn, Entity entityIn, float partialTicks, float rotationX, float rotationZ, float rotationYZ, float rotationXY, float rotationXZ)
    {
    }
    
    @Override
    public void setParticleTexture(TextureAtlasSprite texture)
    {
    }
    
    @Override
    public void setParticleTextureIndex(int particleTextureIndex)
    {
    }

    @Override
    public void nextTextureIndexX()
    {
    }
    
    @Override
    public void setExpired()
    {
    }

    @Override
    protected void setSize(float p_187115_1_, float p_187115_2_)
    {
    }

    @Override
    public void setPosition(double p_187109_1_, double p_187109_3_, double p_187109_5_)
    {
    }

    @Override
    public void moveEntity(double x, double y, double z)
    {
    }

    @Override
    protected void resetPositionToBB()
    {
    }

    @Override
    public void setEntityBoundingBox(AxisAlignedBB p_187108_1_)
    {
    }

Link to comment
Share on other sites

grab Minecraft::effectRenderer and add a new instance of your ParticleEmitter class to ParticleManager::particleEmitters

That.

 

What do you mean by that?

what do I do with the effect renderer how do I add the particleemitter class to the particleEmitters with it? I don't get it.

Link to comment
Share on other sites

I know what that stuff is, what I don't understand is how minecraft effect renderer has anything to do with the queue just explain what I quoted some more with the effect renderer because you said:

grab Minecraft::effectRenderer and add a new instance of your ParticleEmitter class to ParticleManager::particleEmitters

 

How does that effectRenderer make any sense in there. What am I supposed to do with it.

 

Also I already posted the code that was adding the emitter you told me to create to the particleEmitters Queue and told you what error I'm getting.

Link to comment
Share on other sites

I  know how to add stuff to collections / queues obviously

 

How about you finally post the part of the code

 

Is this what you wanted me to do?

 

ParticleManager particleManager = Minecraft.getMinecraft().effectRenderer;

 

or anything else?

Just post the correct code finally!

 

 

Link to comment
Share on other sites

so this should be right then:

 

@SideOnly(Side.CLIENT)
@SubscribeEvent
public void onEvent(EntityJoinWorldEvent e) {
	if (e.getEntity() == Minecraft.getMinecraft().thePlayer) {
		ParticleManager particleManager = Minecraft.getMinecraft().effectRenderer;

		try {
			Field field1, field2;

			Class<?> c = particleManager.getClass();

			System.out.println("[" + Main.name + "]: Getting fields..");

			if (Main.isDev() == true) {
				field1 = c.getDeclaredField("particleEmitters");
				field2 = c.getDeclaredField("queueEntityFX");
			} else {
				field1 = c.getDeclaredField("field_178933_d");
				field2 = c.getDeclaredField("field_187241_h");
			}
			field1.setAccessible(true);
			field2.setAccessible(true);

			Queue<ParticleEmitter> particleEmitters = (Queue<ParticleEmitter>) field1.get(particleManager);
			particleEmitters.add(new FBPParticleEmitter((Queue<Particle>) field2.get(particleManager)));
		} catch (Exception x) {
			System.out.println("[" + Main.name + "]: An error occured at onEvent(EntityJoinWorldEvent e):");
			x.printStackTrace();
		}
	}
}

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

    • Hello. I've been having a problem when launching minecraft forge. It just doesn't open the game, and leaves me with this "(exit code 1)" error. Both regular and optifine versions of minecraft launch just fine, tried both with 1.18.2 and 1.20.1. I can assure that my drivers are updated so that can't be it, and i've tried using Java 17, 18 and 21 to no avail. Even with no mods installed, the thing won't launch. I'll leave the log here, although it's in spanish: https://jmp.sh/s/FPqGBSi30fzKJDt2M1gc My specs are this: Ryzen 3 4100 || Radeon R9 280x || 16gb ram || Windows 10 I'd appreciate any help, thank you in advance.
    • Hey, Me and my friends decided to start up a Server with "a few" mods, the last few days everything went well we used all the items we wanted. Now our Game crashes the moment we touch a Lava Bucket inside our Inventory. It just instantly closes and gives me an "Alc Cleanup"  Crash screen (Using GDLauncher). I honestly dont have a clue how to resolve this error. If anyone could help id really appreciate it, I speak German and Englisch so you can choose whatever you speak more fluently. Thanks in Advance. Plus I dont know how to link my Crash Report help for that would be nice too whoops
    • 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  
  • Topics

×
×
  • Create New...

Important Information

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