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

    • I have been trying to make a server with forge but I keep running into an issue. I have jdk 22 installed as well as Java 8. here is the debug file  
    • it crashed again     What the console says : [00:02:03] [Server thread/INFO] [Easy NPC/]: [EntityManager] Server started! [00:02:03] [Server thread/INFO] [co.gi.al.ic.IceAndFire/]: {iceandfire:fire_dragon_roost=true, iceandfire:fire_lily=true, iceandfire:spawn_dragon_skeleton_fire=true, iceandfire:lightning_dragon_roost=true, iceandfire:spawn_dragon_skeleton_lightning=true, iceandfire:ice_dragon_roost=true, iceandfire:ice_dragon_cave=true, iceandfire:lightning_dragon_cave=true, iceandfire:cyclops_cave=true, iceandfire:spawn_wandering_cyclops=true, iceandfire:spawn_sea_serpent=true, iceandfire:frost_lily=true, iceandfire:hydra_cave=true, iceandfire:lightning_lily=true, iceandfireixie_village=true, iceandfire:myrmex_hive_jungle=true, iceandfire:myrmex_hive_desert=true, iceandfire:silver_ore=true, iceandfire:siren_island=true, iceandfire:spawn_dragon_skeleton_ice=true, iceandfire:spawn_stymphalian_bird=true, iceandfire:fire_dragon_cave=true, iceandfire:sapphire_ore=true, iceandfire:spawn_hippocampus=true, iceandfire:spawn_death_worm=true} [00:02:03] [Server thread/INFO] [co.gi.al.ic.IceAndFire/]: {TROLL_S=true, HIPPOGRYPH=true, AMPHITHERE=true, COCKATRICE=true, TROLL_M=true, DREAD_LICH=true, TROLL_F=true} [00:02:03] [Server thread/INFO] [ne.be.lo.WeaponRegistry/]: Encoded Weapon Attribute registry size (with package overhead): 41976 bytes (in 5 string chunks with the size of 10000) [00:02:03] [Server thread/INFO] [patchouli/]: Sending reload packet to clients [00:02:03] [Server thread/WARN] [voicechat/]: [voicechat] Running in offline mode - Voice chat encryption is not secure! [00:02:03] [VoiceChatServerThread/INFO] [voicechat/]: [voicechat] Using server-ip as bind address: 0.0.0.0 [00:02:03] [Server thread/WARN] [ModernFix/]: Dedicated server took 22.521 seconds to load [00:02:03] [VoiceChatServerThread/INFO] [voicechat/]: [voicechat] Voice chat server started at 0.0.0.0:25565 [00:02:03] [Server thread/WARN] [minecraft/SynchedEntityData]: defineId called for: class net.minecraft.world.entity.player.Player from class tschipp.carryon.common.carry.CarryOnDataManager [00:02:03] [Server thread/INFO] [ne.mi.co.AdvancementLoadFix/]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@2941ffd5 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 0 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 1 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 2 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 3 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 4 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 5 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 6 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 7 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 8 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 9 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 10 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 11 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 12 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 13 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 14 [00:02:19] [Server thread/INFO] [ne.mi.co.AdvancementLoadFix/]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@ebc7ef2 [00:02:19] [Server thread/INFO] [minecraft/PlayerList]: ZacAdos[/90.2.17.162:49242] logged in with entity id 1062 at (-1848.6727005281205, 221.0, -3054.2468255848935) [00:02:19] [Server thread/ERROR] [ModernFix/]: Skipping entity ID sync for com.talhanation.smallships.world.entity.ship.Ship: java.lang.NoClassDefFoundError: net/minecraft/client/CameraType [00:02:19] [Server thread/INFO] [minecraft/MinecraftServer]: - Gloop - ZacAdos joined the game [00:02:19] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Updating all forceload tickets for cc56befd-d376-3526-a760-340713c478bd [00:02:19] [Server thread/INFO] [se.mi.te.da.DataManager/]: Sending data to client: ZacAdos [00:02:19] [Server thread/INFO] [voicechat/]: [voicechat] Received secret request of - Gloop - ZacAdos (17) [00:02:19] [Server thread/INFO] [voicechat/]: [voicechat] Sent secret to - Gloop - ZacAdos [00:02:21] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: [voicechat] Successfully authenticated player cc56befd-d376-3526-a760-340713c478bd [00:02:22] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: [voicechat] Successfully validated connection of player cc56befd-d376-3526-a760-340713c478bd [00:02:22] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: [voicechat] Player - Gloop - ZacAdos (cc56befd-d376-3526-a760-340713c478bd) successfully connected to voice chat stop [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping the server [00:02:34] [Server thread/INFO] [mo.pl.ar.ArmourersWorkshop/]: stop local service [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping server [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving players [00:02:34] [Server thread/INFO] [minecraft/ServerGamePacketListenerImpl]: ZacAdos lost connection: Server closed [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: - Gloop - ZacAdos left the game [00:02:34] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Updating all forceload tickets for cc56befd-d376-3526-a760-340713c478bd [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving worlds [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_end [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_nether [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (world): All chunks are saved [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage: All dimensions are saved [00:02:34] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Stopping IO worker... [00:02:34] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Stopped IO worker! [00:02:34] [Server thread/INFO] [Calio/]: Removing Dynamic Registries for: net.minecraft.server.dedicated.DedicatedServer@7dc879e1 [MineStrator Daemon]: Checking server disk space usage, this could take a few seconds... [MineStrator Daemon]: Updating process configuration files... [MineStrator Daemon]: Ensuring file permissions are set correctly, this could take a few seconds... [MineStrator Daemon]: Pulling Docker container image, this could take a few minutes to complete... [MineStrator Daemon]: Finished pulling Docker container image container@pterodactyl~ java -version openjdk version "17.0.10" 2024-01-16 OpenJDK Runtime Environment Temurin-17.0.10+7 (build 17.0.10+7) OpenJDK 64-Bit Server VM Temurin-17.0.10+7 (build 17.0.10+7, mixed mode, sharing) container@pterodactyl~ java -Xms128M -Xmx6302M -Dterminal.jline=false -Dterminal.ansi=true -Djline.terminal=jline.UnsupportedTerminal -p libraries/cpw/mods/bootstraplauncher/1.1.2/bootstraplauncher-1.1.2.jar:libraries/cpw/mods/securejarhandler/2.1.4/securejarhandler-2.1.4.jar:libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar:libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar:libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar:libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar:libraries/org/ow2/asm/asm/9.5/asm-9.5.jar:libraries/net/minecraftforge/JarJarFileSystems/0.3.16/JarJarFileSystems-0.3.16.jar --add-modules ALL-MODULE-PATH --add-opens java.base/java.util.jar=cpw.mods.securejarhandler --add-opens java.base/java.lang.invoke=cpw.mods.securejarhandler --add-exports java.base/sun.security.util=cpw.mods.securejarhandler --add-exports jdk.naming.dns/com.sun.jndi.dns=java.naming -Djava.net.preferIPv6Addresses=system -DignoreList=bootstraplauncher-1.1.2.jar,securejarhandler-2.1.4.jar,asm-commons-9.5.jar,asm-util-9.5.jar,asm-analysis-9.5.jar,asm-tree-9.5.jar,asm-9.5.jar,JarJarFileSystems-0.3.16.jar -DlibraryDirectory=libraries -DlegacyClassPath=libraries/cpw/mods/securejarhandler/2.1.4/securejarhandler-2.1.4.jar:libraries/org/ow2/asm/asm/9.5/asm-9.5.jar:libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar:libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar:libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar:libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar:libraries/net/minecraftforge/accesstransformers/8.0.4/accesstransformers-8.0.4.jar:libraries/org/antlr/antlr4-runtime/4.9.1/antlr4-runtime-4.9.1.jar:libraries/net/minecraftforge/eventbus/6.0.3/eventbus-6.0.3.jar:libraries/net/minecraftforge/forgespi/6.0.0/forgespi-6.0.0.jar:libraries/net/minecraftforge/coremods/5.0.1/coremods-5.0.1.jar:libraries/cpw/mods/modlauncher/10.0.8/modlauncher-10.0.8.jar:libraries/net/minecraftforge/unsafe/0.2.0/unsafe-0.2.0.jar:libraries/com/electronwill/night-config/core/3.6.4/core-3.6.4.jar:libraries/com/electronwill/night-config/toml/3.6.4/toml-3.6.4.jar:libraries/org/apache/maven/maven-artifact/3.8.5/maven-artifact-3.8.5.jar:libraries/net/jodah/typetools/0.8.3/typetools-0.8.3.jar:libraries/net/minecrell/terminalconsoleappender/1.2.0/terminalconsoleappender-1.2.0.jar:libraries/org/jline/jline-reader/3.12.1/jline-reader-3.12.1.jar:libraries/org/jline/jline-terminal/3.12.1/jline-terminal-3.12.1.jar:libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar:libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar:libraries/net/minecraftforge/JarJarSelector/0.3.16/JarJarSelector-0.3.16.jar:libraries/net/minecraftforge/JarJarMetadata/0.3.16/JarJarMetadata-0.3.16.jar:libraries/net/minecraftforge/fmlloader/1.19.2-43.3.0/fmlloader-1.19.2-43.3.0.jar:libraries/net/minecraft/server/1.19.2-20220805.130853/server-1.19.2-20220805.130853-extra.jar:libraries/com/github/oshi/oshi-core/5.8.5/oshi-core-5.8.5.jar:libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar:libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar:libraries/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar:libraries/com/mojang/authlib/3.11.49/authlib-3.11.49.jar:libraries/com/mojang/brigadier/1.0.18/brigadier-1.0.18.jar:libraries/com/mojang/datafixerupper/5.0.28/datafixerupper-5.0.28.jar:libraries/com/mojang/javabridge/1.2.24/javabridge-1.2.24.jar:libraries/com/mojang/logging/1.0.0/logging-1.0.0.jar:libraries/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar:libraries/io/netty/netty-buffer/4.1.77.Final/netty-buffer-4.1.77.Final.jar:libraries/io/netty/netty-codec/4.1.77.Final/netty-codec-4.1.77.Final.jar:libraries/io/netty/netty-common/4.1.77.Final/netty-common-4.1.77.Final.jar:libraries/io/netty/netty-handler/4.1.77.Final/netty-handler-4.1.77.Final.jar:libraries/io/netty/netty-resolver/4.1.77.Final/netty-resolver-4.1.77.Final.jar:libraries/io/netty/netty-transport/4.1.77.Final/netty-transport-4.1.77.Final.jar:libraries/io/netty/netty-transport-classes-epoll/4.1.77.Final/netty-transport-classes-epoll-4.1.77.Final.jar:libraries/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final-linux-x86_64.jar:libraries/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final-linux-aarch_64.jar:libraries/io/netty/netty-transport-native-unix-common/4.1.77.Final/netty-transport-native-unix-common-4.1.77.Final.jar:libraries/it/unimi/dsi/fastutil/8.5.6/fastutil-8.5.6.jar:libraries/net/java/dev/jna/jna/5.10.0/jna-5.10.0.jar:libraries/net/java/dev/jna/jna-platform/5.10.0/jna-platform-5.10.0.jar:libraries/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar:libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar:libraries/org/apache/logging/log4j/log4j-api/2.17.0/log4j-api-2.17.0.jar:libraries/org/apache/logging/log4j/log4j-core/2.17.0/log4j-core-2.17.0.jar:libraries/org/apache/logging/log4j/log4j-slf4j18-impl/2.17.0/log4j-slf4j18-impl-2.17.0.jar:libraries/org/slf4j/slf4j-api/1.8.0-beta4/slf4j-api-1.8.0-beta4.jar cpw.mods.bootstraplauncher.BootstrapLauncher --launchTarget forgeserver --fml.forgeVersion 43.3.0 --fml.mcVersion 1.19.2 --fml.forgeGroup net.minecraftforge --fml.mcpVersion 20220805.130853 [00:02:42] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 43.3.0, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853] [00:02:42] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.10 by Eclipse Adoptium; OS Linux arch amd64 version 6.1.0-12-amd64 [00:02:43] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/home/container/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2363!/ Service=ModLauncher Env=SERVER [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/fmlcore/1.19.2-43.3.0/fmlcore-1.19.2-43.3.0.jar is missing mods.toml file [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/javafmllanguage/1.19.2-43.3.0/javafmllanguage-1.19.2-43.3.0.jar is missing mods.toml file [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/lowcodelanguage/1.19.2-43.3.0/lowcodelanguage-1.19.2-43.3.0.jar is missing mods.toml file [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/mclanguage/1.19.2-43.3.0/mclanguage-1.19.2-43.3.0.jar is missing mods.toml file [00:02:44] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [00:02:44] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefullib. Using Mod File: /home/container/mods/resourcefullib-forge-1.19.2-1.1.24.jar [00:02:44] [main/INFO] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: Found 13 dependencies adding them to mods collection Latest log [29Mar2024 00:02:42.803] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 43.3.0, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853] [29Mar2024 00:02:42.805] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.10 by Eclipse Adoptium; OS Linux arch amd64 version 6.1.0-12-amd64 [29Mar2024 00:02:43.548] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/home/container/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2363!/ Service=ModLauncher Env=SERVER [29Mar2024 00:02:43.876] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/fmlcore/1.19.2-43.3.0/fmlcore-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:43.877] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/javafmllanguage/1.19.2-43.3.0/javafmllanguage-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:43.877] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/lowcodelanguage/1.19.2-43.3.0/lowcodelanguage-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:43.878] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/mclanguage/1.19.2-43.3.0/mclanguage-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:44.033] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [29Mar2024 00:02:44.034] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefullib. Using Mod File: /home/container/mods/resourcefullib-forge-1.19.2-1.1.24.jar [29Mar2024 00:02:44.034] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: Found 13 dependencies adding them to mods collection
    • I am unable to do that. Brigadier is a mojang library that parses commands.
    • Hi, i appreciate the answer. I would love to do that, but we have active players with all their belongings in SSN. Also this mod is really handy and they would be mad if we removed it. Are you really certain that SSN is causing this? It would require lots of work to test it and SSN was not really an issue before we removed Fast Suite. Can it be related somehow? I will provide you with log before removing FS. PasteBin: https://pastebin.com/Y5EpLpNe (crash before removing Fast Suite, which I suspected to be a problem from some crash before)
  • Topics

×
×
  • Create New...

Important Information

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