Jump to content

Recommended Posts

Posted

Hello All! Sorry to be back so soon. Thanks to your help I was able to take care of most of the remaining issues and I finally have my mod into a playable state  in 1.7. I have one last bug I could use some help with. I have two projectiles which I could render fine in the 1.6 version of my mod. They fire ok, I can shoot them at mobs and they do what I want them to, but they are completely invisible. I don't even get the untextured white cube. I've been looking through this for a while, so maybe a fresh set of eyes can figure out what I'm doing wrong. Thanks in advance!

 

Client Proxy

 

public class ClientProxy extends CommonProxy {

 

public static KeyBinding[] keyBindings= new KeyBinding[4];

     

        @Override

        public void registerRenderers()

        {

       

        EntityRegistry.registerModEntity(spiritBoltProjectile.class, "Spirit Bolt", 1, BaseClass.instance1, 64, 10, true); 

        RenderingRegistry.registerEntityRenderingHandler(spiritBoltProjectile.class, new renderSpiritBolt(BaseClass.InrPwrSB));

       

        EntityRegistry.registerModEntity(holyLightProjectile.class, "Holy Light", 2, BaseClass.instance1, 64, 10, true);

        RenderingRegistry.registerEntityRenderingHandler(holyLightProjectile.class, new  renderHolyLight(BaseClass.InrPwrHL));

        }

       

        @Override

    public EntityPlayer getPlayerEntity(MessageContext ctx)

    {

    // Double-check is inevitable!

    return (ctx.side.isClient() ? Minecraft.getMinecraft().thePlayer : super.getPlayerEntity(ctx));

    }

       

        public void initKeys()

        {

  keyBindings[0]= new KeyBinding("Spell Slot 1", Keyboard.KEY_R, "Inner Power");

  keyBindings[1]= new KeyBinding("Spell Slot 2", Keyboard.KEY_T, "Inner Power");

  keyBindings[2]= new KeyBinding("Spell Slot 3", Keyboard.KEY_Y, "Inner Power");

  keyBindings[3]= new KeyBinding("Spell Slot 4", Keyboard.KEY_U, "Inner Power");

 

  for (int i=0; i<4; i++)

  ClientRegistry.registerKeyBinding(keyBindings);

       

        }

     

}

 

 

Load Function

 

@EventHandler

public void load(FMLInitializationEvent event)

{

  MinecraftForge.EVENT_BUS.register(new manaHandler());

  if(FMLCommonHandler.instance().getSide().isClient())

  { 

 

  ClientProxy cProxy= new ClientProxy();

  cProxy.initKeys();

 

 

  }

 

 

  GuiHandler guiHandler = new GuiHandler();

  NetworkRegistry.INSTANCE.registerGuiHandler(instance, guiHandler);

 

  proxy.registerRenderers();

 

}

 

 

 

SpiritBolt Renderer (copied from RenderSnowball).

 

@SideOnly(Side.CLIENT)

public class renderSpiritBolt extends Render

{

private Item field_94151_a;

private int field_94150_f;

 

public renderSpiritBolt(Item par1Item, int par2)

{

this.field_94151_a = par1Item;

this.field_94150_f = par2;

}

 

public renderSpiritBolt(Item par1Item)

{

this(par1Item, 0);

}

 

/**

* Actually renders the given argument. This is a synthetic bridge method, always casting down its argument and then

* handing it off to a worker function which does the actual work. In all probabilty, the class Render is generic

* (Render<T extends Entity) and this method has signature public void doRender(T entity, double d, double d1,

* double d2, float f, float f1). But JAD is pre 1.5 so doesn't do that.

*/

public void doRender(Entity par1Entity, double par2, double par4, double par6, float par8, float par9)

{

IIcon icon = this.field_94151_a.getIconFromDamage(this.field_94150_f);

 

if (icon != null)

{

GL11.glPushMatrix();

GL11.glTranslatef((float)par2, (float)par4, (float)par6);

GL11.glEnable(GL12.GL_RESCALE_NORMAL);

GL11.glScalef(0.5F, 0.5F, 0.5F);

// this.func_110777_b(par1Entity); // worked in Forge 804, but no longer; use this:

this.bindEntityTexture(par1Entity);

Tessellator tessellator = Tessellator.instance;

 

// You can remove this whole section if you want, it's just for Potions

if (icon == ItemPotion.func_94589_d("bottle_splash"))

{

int i = PotionHelper.func_77915_a(((EntityPotion)par1Entity).getPotionDamage(), false);

float f2 = (float)(i >> 16 & 255) / 255.0F;

float f3 = (float)(i >> 8 & 255) / 255.0F;

float f4 = (float)(i & 255) / 255.0F;

GL11.glColor3f(f2, f3, f4);

GL11.glPushMatrix();

this.func_77026_a(tessellator, ItemPotion.func_94589_d("overlay"));

GL11.glPopMatrix();

GL11.glColor3f(1.0F, 1.0F, 1.0F);

}

 

this.func_77026_a(tessellator, icon);

GL11.glDisable(GL12.GL_RESCALE_NORMAL);

GL11.glPopMatrix();

}

}

 

@Override

protected ResourceLocation getEntityTexture(Entity entity) {

return TextureMap.locationItemsTexture;

}

 

private void func_77026_a(Tessellator par1Tessellator, IIcon par2Icon)

{

float f = par2Icon.getMinU();

float f1 = par2Icon.getMaxU();

float f2 = par2Icon.getMinV();

float f3 = par2Icon.getMaxV();

float f4 = 1.0F;

float f5 = 0.5F;

float f6 = 0.25F;

GL11.glRotatef(180.0F - this.renderManager.playerViewY, 0.0F, 1.0F, 0.0F);

GL11.glRotatef(-this.renderManager.playerViewX, 1.0F, 0.0F, 0.0F);

par1Tessellator.startDrawingQuads();

par1Tessellator.setNormal(0.0F, 1.0F, 0.0F);

par1Tessellator.addVertexWithUV((double)(0.0F - f5), (double)(0.0F - f6), 0.0D, (double)f, (double)f3);

par1Tessellator.addVertexWithUV((double)(f4 - f5), (double)(0.0F - f6), 0.0D, (double)f1, (double)f3);

par1Tessellator.addVertexWithUV((double)(f4 - f5), (double)(f4 - f6), 0.0D, (double)f1, (double)f2);

par1Tessellator.addVertexWithUV((double)(0.0F - f5), (double)(f4 - f6), 0.0D, (double)f, (double)f2);

par1Tessellator.draw();

}

}

 

 

Holy Light Renderer (Much the same as Spirit Bolt Renderer)

 

@SideOnly(Side.CLIENT)

public class renderHolyLight extends Render

{

private Item field_94151_a;

private int field_94150_f;

 

public renderHolyLight(Item par1Item, int par2)

{

this.field_94151_a = par1Item;

this.field_94150_f = par2;

}

 

public renderHolyLight(Item par1Item)

{

this(par1Item, 0);

}

 

/**

* Actually renders the given argument. This is a synthetic bridge method, always casting down its argument and then

* handing it off to a worker function which does the actual work. In all probabilty, the class Render is generic

* (Render<T extends Entity) and this method has signature public void doRender(T entity, double d, double d1,

* double d2, float f, float f1). But JAD is pre 1.5 so doesn't do that.

*/

public void doRender(Entity par1Entity, double par2, double par4, double par6, float par8, float par9)

{

IIcon icon = this.field_94151_a.getIconFromDamage(this.field_94150_f);

 

if (icon != null)

{

GL11.glPushMatrix();

GL11.glTranslatef((float)par2, (float)par4, (float)par6);

GL11.glEnable(GL12.GL_RESCALE_NORMAL);

GL11.glScalef(0.5F, 0.5F, 0.5F);

// this.func_110777_b(par1Entity); // worked in Forge 804, but no longer; use this:

this.bindEntityTexture(par1Entity);

Tessellator tessellator = Tessellator.instance;

 

// You can remove this whole section if you want, it's just for Potions

if (icon == ItemPotion.func_94589_d("bottle_splash"))

{

int i = PotionHelper.func_77915_a(((EntityPotion)par1Entity).getPotionDamage(), false);

float f2 = (float)(i >> 16 & 255) / 255.0F;

float f3 = (float)(i >> 8 & 255) / 255.0F;

float f4 = (float)(i & 255) / 255.0F;

GL11.glColor3f(f2, f3, f4);

GL11.glPushMatrix();

this.func_77026_a(tessellator, ItemPotion.func_94589_d("overlay"));

GL11.glPopMatrix();

GL11.glColor3f(1.0F, 1.0F, 1.0F);

}

 

this.func_77026_a(tessellator, icon);

GL11.glDisable(GL12.GL_RESCALE_NORMAL);

GL11.glPopMatrix();

}

}

 

@Override

protected ResourceLocation getEntityTexture(Entity entity) {

return TextureMap.locationItemsTexture;

}

 

private void func_77026_a(Tessellator par1Tessellator, IIcon par2Icon)

{

float f = par2Icon.getMinU();

float f1 = par2Icon.getMaxU();

float f2 = par2Icon.getMinV();

float f3 = par2Icon.getMaxV();

float f4 = 1.0F;

float f5 = 0.5F;

float f6 = 0.25F;

GL11.glRotatef(180.0F - this.renderManager.playerViewY, 0.0F, 1.0F, 0.0F);

GL11.glRotatef(-this.renderManager.playerViewX, 1.0F, 0.0F, 0.0F);

par1Tessellator.startDrawingQuads();

par1Tessellator.setNormal(0.0F, 1.0F, 0.0F);

par1Tessellator.addVertexWithUV((double)(0.0F - f5), (double)(0.0F - f6), 0.0D, (double)f, (double)f3);

par1Tessellator.addVertexWithUV((double)(f4 - f5), (double)(0.0F - f6), 0.0D, (double)f1, (double)f3);

par1Tessellator.addVertexWithUV((double)(f4 - f5), (double)(f4 - f6), 0.0D, (double)f1, (double)f2);

par1Tessellator.addVertexWithUV((double)(0.0F - f5), (double)(f4 - f6), 0.0D, (double)f, (double)f2);

par1Tessellator.draw();

}

}

 

 

Thanks again! Once I fix this I get to start adding new content!

Posted

You are using the proxy incorrectly, for one. You should have an instance of the base Proxy class (e.g. 'CommonProxy') in your main class, and then use that instance when you need to call any methods in your proxy. Note that you never actually need to create the instance, i.e. you don't call 'new Proxy()', as it is created for you by FML / Forge.

 

When you call 'proxy.method()', the correct proxy is used based on the which side is making the call, so you don't need to do any side checks in your load function area when making calls to the proxy.

 

Also, you don't want to register mod entities in the client proxy - they need to be registered in the common area of your mod, so they are available to both sides; only the rendering, key bindings, and other client-only stuff should be isolated in that manner.

 

I'm sure there's more, but that should give you enough to clean up for now.

Posted

I finally had a minute to look at this. I moved the registerModEntity() calls to the load function but the projectiles still will not render. Any other ideas?

 

Thanks again.

Posted

I think I did. I added the initKeys() method to my common proxy and got rid of the client side only call. Here is my updated code.

 

By the way, thank you for the explanation of the client/common proxy system. That was always a bit confusing to me but makes a lot more sencee now.

 

Load:

 

@EventHandler

public void load(FMLInitializationEvent event)

{

  MinecraftForge.EVENT_BUS.register(new manaHandler());

 

 

 

  proxy.initKeys();

 

  EntityRegistry.registerModEntity(holyLightProjectile.class, "Holy Light", 2, BaseClass.instance1, 64, 10, true);

  EntityRegistry.registerModEntity(spiritBoltProjectile.class, "Spirit Bolt", 1, BaseClass.instance1, 64, 10, true); 

 

  GuiHandler guiHandler = new GuiHandler();

  NetworkRegistry.INSTANCE.registerGuiHandler(instance, guiHandler);

 

  proxy.registerRenderers();

 

}

 

 

ClientProxy:

 

public class ClientProxy extends CommonProxy {

 

public static KeyBinding[] keyBindings= new KeyBinding[4];

     

        @Override

        public void registerRenderers()

        {

       

        //EntityRegistry.registerModEntity(spiritBoltProjectile.class, "Spirit Bolt", 1, BaseClass.instance1, 64, 10, true); 

        RenderingRegistry.registerEntityRenderingHandler(spiritBoltProjectile.class, new renderSpiritBolt(BaseClass.InrPwrSB));

       

        //EntityRegistry.registerModEntity(holyLightProjectile.class, "Holy Light", 2, BaseClass.instance1, 64, 10, true);

        RenderingRegistry.registerEntityRenderingHandler(holyLightProjectile.class, new  renderHolyLight(BaseClass.InrPwrHL));

        }

       

        @Override

    public EntityPlayer getPlayerEntity(MessageContext ctx)

    {

    // Double-check is inevitable!

    return (ctx.side.isClient() ? Minecraft.getMinecraft().thePlayer : super.getPlayerEntity(ctx));

    }

       

        public void initKeys()

        {

  keyBindings[0]= new KeyBinding("Spell Slot 1", Keyboard.KEY_R, "Inner Power");

  keyBindings[1]= new KeyBinding("Spell Slot 2", Keyboard.KEY_T, "Inner Power");

  keyBindings[2]= new KeyBinding("Spell Slot 3", Keyboard.KEY_Y, "Inner Power");

  keyBindings[3]= new KeyBinding("Spell Slot 4", Keyboard.KEY_U, "Inner Power");

 

  for (int i=0; i<4; i++)

  ClientRegistry.registerKeyBinding(keyBindings);

       

        }

     

}

 

 

CommonProxy:

 

public class CommonProxy implements IGuiHandler

{

// Client stuff

private static final Map<String, NBTTagCompound> magicPlayerData = new HashMap<String, NBTTagCompound>();

 

    public void registerRenderers() {

            // Nothing here as the server doesn't render graphics or entities!

    }

 

    public void initKeys()

    {

   

    }

   

@Override

public Object getServerGuiElement(int ID, EntityPlayer player, World world,int x, int y, int z)

{

return null;

}

 

@Override

public Object getClientGuiElement(int ID, EntityPlayer player, World world,int x, int y, int z)

{

return null;

}

 

/**

* Adds an entity's custom data to the map for temporary storage

* @param compound An NBT Tag Compound that stores the IExtendedEntityProperties data only

*/

public static void storeEntityData(String name, NBTTagCompound compound)

{

magicPlayerData.put(name, compound);

}

 

/**

* Removes the compound from the map and returns the NBT tag stored for name or null if none exists

*/

public static NBTTagCompound getEntityData(String name)

{

return magicPlayerData.remove(name);

}

 

/**

* Returns a side-appropriate EntityPlayer for use during message handling.

*/

public EntityPlayer getPlayerEntity(MessageContext ctx)

{

return ctx.getServerHandler().playerEntity;

}

 

}

 

 

Posted

Ok thanks! I'll try updateing that. In the meantime here are the rendering classes in question. They are pretty much the same. I copied them from the snowball rendering class a long time ago, has something here depricated?I just realized I haven't thought to check the new snowball code since updating, I'll do that now.

 

Thanks again!

 

renderSpiritBolt:

 

 

 

@SideOnly(Side.CLIENT)

public class renderSpiritBolt extends Render

{

private Item field_94151_a;

private int field_94150_f;

 

public renderSpiritBolt(Item par1Item, int par2)

{

this.field_94151_a = par1Item;

this.field_94150_f = par2;

}

 

public renderSpiritBolt(Item par1Item)

{

this(par1Item, 0);

}

 

/**

* Actually renders the given argument. This is a synthetic bridge method, always casting down its argument and then

* handing it off to a worker function which does the actual work. In all probabilty, the class Render is generic

* (Render<T extends Entity) and this method has signature public void doRender(T entity, double d, double d1,

* double d2, float f, float f1). But JAD is pre 1.5 so doesn't do that.

*/

public void doRender(Entity par1Entity, double par2, double par4, double par6, float par8, float par9)

{

IIcon icon = this.field_94151_a.getIconFromDamage(this.field_94150_f);

 

if (icon != null)

{

GL11.glPushMatrix();

GL11.glTranslatef((float)par2, (float)par4, (float)par6);

GL11.glEnable(GL12.GL_RESCALE_NORMAL);

GL11.glScalef(0.5F, 0.5F, 0.5F);

// this.func_110777_b(par1Entity); // worked in Forge 804, but no longer; use this:

this.bindEntityTexture(par1Entity);

Tessellator tessellator = Tessellator.instance;

 

// You can remove this whole section if you want, it's just for Potions

if (icon == ItemPotion.func_94589_d("bottle_splash"))

{

int i = PotionHelper.func_77915_a(((EntityPotion)par1Entity).getPotionDamage(), false);

float f2 = (float)(i >> 16 & 255) / 255.0F;

float f3 = (float)(i >> 8 & 255) / 255.0F;

float f4 = (float)(i & 255) / 255.0F;

GL11.glColor3f(f2, f3, f4);

GL11.glPushMatrix();

this.func_77026_a(tessellator, ItemPotion.func_94589_d("overlay"));

GL11.glPopMatrix();

GL11.glColor3f(1.0F, 1.0F, 1.0F);

}

 

this.func_77026_a(tessellator, icon);

GL11.glDisable(GL12.GL_RESCALE_NORMAL);

GL11.glPopMatrix();

}

}

 

@Override

protected ResourceLocation getEntityTexture(Entity entity) {

return TextureMap.locationItemsTexture;

}

 

private void func_77026_a(Tessellator par1Tessellator, IIcon par2Icon)

{

float f = par2Icon.getMinU();

float f1 = par2Icon.getMaxU();

float f2 = par2Icon.getMinV();

float f3 = par2Icon.getMaxV();

float f4 = 1.0F;

float f5 = 0.5F;

float f6 = 0.25F;

GL11.glRotatef(180.0F - this.renderManager.playerViewY, 0.0F, 1.0F, 0.0F);

GL11.glRotatef(-this.renderManager.playerViewX, 1.0F, 0.0F, 0.0F);

par1Tessellator.startDrawingQuads();

par1Tessellator.setNormal(0.0F, 1.0F, 0.0F);

par1Tessellator.addVertexWithUV((double)(0.0F - f5), (double)(0.0F - f6), 0.0D, (double)f, (double)f3);

par1Tessellator.addVertexWithUV((double)(f4 - f5), (double)(0.0F - f6), 0.0D, (double)f1, (double)f3);

par1Tessellator.addVertexWithUV((double)(f4 - f5), (double)(f4 - f6), 0.0D, (double)f1, (double)f2);

par1Tessellator.addVertexWithUV((double)(0.0F - f5), (double)(f4 - f6), 0.0D, (double)f, (double)f2);

par1Tessellator.draw();

}

}

 

 

renderHolyLight

 

 

@SideOnly(Side.CLIENT)

public class renderHolyLight extends Render

{

private Item field_94151_a;

private int field_94150_f;

 

public renderHolyLight(Item par1Item, int par2)

{

this.field_94151_a = par1Item;

this.field_94150_f = par2;

}

 

public renderHolyLight(Item par1Item)

{

this(par1Item, 0);

}

 

/**

* Actually renders the given argument. This is a synthetic bridge method, always casting down its argument and then

* handing it off to a worker function which does the actual work. In all probabilty, the class Render is generic

* (Render<T extends Entity) and this method has signature public void doRender(T entity, double d, double d1,

* double d2, float f, float f1). But JAD is pre 1.5 so doesn't do that.

*/

public void doRender(Entity par1Entity, double par2, double par4, double par6, float par8, float par9)

{

IIcon icon = this.field_94151_a.getIconFromDamage(this.field_94150_f);

 

if (icon != null)

{

GL11.glPushMatrix();

GL11.glTranslatef((float)par2, (float)par4, (float)par6);

GL11.glEnable(GL12.GL_RESCALE_NORMAL);

GL11.glScalef(0.5F, 0.5F, 0.5F);

// this.func_110777_b(par1Entity); // worked in Forge 804, but no longer; use this:

this.bindEntityTexture(par1Entity);

Tessellator tessellator = Tessellator.instance;

 

// You can remove this whole section if you want, it's just for Potions

if (icon == ItemPotion.func_94589_d("bottle_splash"))

{

int i = PotionHelper.func_77915_a(((EntityPotion)par1Entity).getPotionDamage(), false);

float f2 = (float)(i >> 16 & 255) / 255.0F;

float f3 = (float)(i >> 8 & 255) / 255.0F;

float f4 = (float)(i & 255) / 255.0F;

GL11.glColor3f(f2, f3, f4);

GL11.glPushMatrix();

this.func_77026_a(tessellator, ItemPotion.func_94589_d("overlay"));

GL11.glPopMatrix();

GL11.glColor3f(1.0F, 1.0F, 1.0F);

}

 

this.func_77026_a(tessellator, icon);

GL11.glDisable(GL12.GL_RESCALE_NORMAL);

GL11.glPopMatrix();

}

}

 

@Override

protected ResourceLocation getEntityTexture(Entity entity) {

return TextureMap.locationItemsTexture;

}

 

private void func_77026_a(Tessellator par1Tessellator, IIcon par2Icon)

{

float f = par2Icon.getMinU();

float f1 = par2Icon.getMaxU();

float f2 = par2Icon.getMinV();

float f3 = par2Icon.getMaxV();

float f4 = 1.0F;

float f5 = 0.5F;

float f6 = 0.25F;

GL11.glRotatef(180.0F - this.renderManager.playerViewY, 0.0F, 1.0F, 0.0F);

GL11.glRotatef(-this.renderManager.playerViewX, 1.0F, 0.0F, 0.0F);

par1Tessellator.startDrawingQuads();

par1Tessellator.setNormal(0.0F, 1.0F, 0.0F);

par1Tessellator.addVertexWithUV((double)(0.0F - f5), (double)(0.0F - f6), 0.0D, (double)f, (double)f3);

par1Tessellator.addVertexWithUV((double)(f4 - f5), (double)(0.0F - f6), 0.0D, (double)f1, (double)f3);

par1Tessellator.addVertexWithUV((double)(f4 - f5), (double)(f4 - f6), 0.0D, (double)f1, (double)f2);

par1Tessellator.addVertexWithUV((double)(0.0F - f5), (double)(f4 - f6), 0.0D, (double)f, (double)f2);

par1Tessellator.draw();

}

}

 

Posted

I updated it to use RenderSnowball() but still nothing :( Any other ideas? Thanks again for your help, I'll include the changed ClientProxy code below.

 

Client Proxy:

 

public class ClientProxy extends CommonProxy {

 

public static KeyBinding[] keyBindings= new KeyBinding[4];

     

        @Override

        public void registerRenderers()

        {

       

       

        RenderingRegistry.registerEntityRenderingHandler(spiritBoltProjectile.class, new RenderSnowball(BaseClass.InrPwrSB)); //renderSpiritBolt(BaseClass.InrPwrSB));

       

       

        RenderingRegistry.registerEntityRenderingHandler(holyLightProjectile.class, new  RenderSnowball(BaseClass.InrPwrHL)); //renderHolyLight(BaseClass.InrPwrHL));

        }

       

        @Override

    public EntityPlayer getPlayerEntity(MessageContext ctx)

    {

    // Double-check is inevitable!

    return (ctx.side.isClient() ? Minecraft.getMinecraft().thePlayer : super.getPlayerEntity(ctx));

    }

       

        public void initKeys()

        {

  keyBindings[0]= new KeyBinding("Spell Slot 1", Keyboard.KEY_R, "Inner Power");

  keyBindings[1]= new KeyBinding("Spell Slot 2", Keyboard.KEY_T, "Inner Power");

  keyBindings[2]= new KeyBinding("Spell Slot 3", Keyboard.KEY_Y, "Inner Power");

  keyBindings[3]= new KeyBinding("Spell Slot 4", Keyboard.KEY_U, "Inner Power");

 

  for (int i=0; i<4; i++)

  ClientRegistry.registerKeyBinding(keyBindings);

       

        }

     

}

 

Posted

At this point I would check your Items, e.g. 'BaseClass.InrPwrHL' - have they been initialized and registered? Was that done BEFORE registering the renderer? Do they have textures? Did you override #getIconFromDamage to return anything other than the default icon?

 

I mean, at the very least you should be getting the missing texture texture rendering... how are you spawning the entity?

Posted

...I am literally so dumb. I quadruple checked the item initialization but never checked that I was actually registering it. As soon as you mentioned the registration I realized what was wrong. Both projectiles are now rendering. Thank you so much, I've been trying to figure this out for way too long. I was sure it was a rendering issue!

 

Related question: Whenever I try to thank some one on this forum it doesn't look like it takes effect. I just hit the applaude button right? Thanks again, marking this as solved!

Posted

...I am literally so dumb. I quadruple checked the item initialization but never checked that I was actually registering it. As soon as you mentioned the registration I realized what was wrong. Both projectiles are now rendering. Thank you so much, I've been trying to figure this out for way too long. I was sure it was a rendering issue!

 

Related question: Whenever I try to thank some one on this forum it doesn't look like it takes effect. I just hit the applaude button right? Thanks again, marking this as solved!

 

Applaud increases the poster's karma, the Thank You button in the top right of a post displays the thanks under the post.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

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

    • Okay so I went to a different version of that mod and it booted right up, thank you
    • C:\Users\bruiser\curseforge\minecraft\Instances\Fazbear Remnants\essential\loader\stage1\launchwrapper\stage2.forge_1.12.2.jar: The process cannot access the file because it is being used by another process. Restart your system and test it again If there is no change, delete the mentioned essential folder or remove the mod essential
    • Does it work with newer versions? For 1.16.5 also make a test with Embeddium + Oculus as Optifine replacement
    • Looking for the best Temu coupon code $100 off? You’re in the right place! We’ve got the ultimate deal that helps you save big on your favorite items. Our exclusive ACS670886 Temu coupon code is perfect for shoppers in the USA, Canada, and Europe. Whether you're a new or existing customer, this code ensures you get maximum benefits. By using the Temu coupon $100 off, you can unlock exciting savings on Temu’s vast collection. Don’t miss this chance to claim your Temu 100 off coupon code today! What Is The Coupon Code For Temu $100 Off? Both new and existing customers can enjoy incredible benefits with our Temu coupon $100 off on the Temu app and website. This $100 off Temu coupon ensures huge savings for everyone! ACS670886 – Get a flat $100 off on selected purchases. ACS670886 – Unlock a $100 coupon pack for multiple uses. ACS670886 – Enjoy a $100 flat discount if you're a new customer. ACS670886 – Existing customers can claim an extra $100 promo code. ACS670886 – This $100 coupon is valid for shoppers in the USA and Canada. Temu Coupon Code $100 Off For New Users In 2025 New users can maximize their savings by applying our Temu coupon $100 off on the Temu app. This Temu coupon code $100 off unlocks amazing deals for first-time shoppers. ACS670886 – Get a flat $100 discount for new users. ACS670886 – Receive a $100 coupon bundle as a welcome offer. ACS670886 – Unlock up to $100 in coupons for multiple uses. ACS670886 – Enjoy free shipping to 68 countries. ACS670886 – Get an extra 30% off on any purchase as a first-time user. How To Redeem The Temu Coupon $100 Off For New Customers? Using the Temu $100 coupon is easy! Follow these steps to redeem your Temu $100 off coupon code for new users: Sign up on the Temu app or website. Browse and add your favorite items to the cart. Enter ACS670886 at checkout. See the $100 discount applied instantly. Complete your purchase and enjoy your savings! Temu Coupon $100 Off For Existing Customers Existing customers can also benefit from our exclusive Temu $100 coupon codes for existing users. Use this Temu coupon $100 off for existing customers free shipping deal and save more! ACS670886 – Get an extra $100 discount for existing users. ACS670886 – Enjoy a $100 coupon bundle for multiple purchases. ACS670886 – Receive a free gift with express shipping across the USA/Canada. ACS670886 – Grab an extra 30% off on top of existing discounts. ACS670886 – Avail free shipping to 68 countries. How To Use The Temu Coupon Code $100 Off For Existing Customers? Redeeming your Temu coupon code $100 off as an existing user is simple. Just follow these steps: Log in to your Temu account. Select your desired products and add them to your cart. Apply ACS670886 at checkout. Your Temu coupon $100 off code will be applied automatically. Confirm your order and enjoy massive savings! Latest Temu Coupon $100 Off First Order First-time buyers get the best deals with our Temu coupon code $100 off first order. This Temu coupon code first order ensures maximum savings. ACS670886 – Flat $100 discount for the first order. ACS670886 – Special $100 Temu coupon code for new customers. ACS670886 – Get up to $100 in coupons for multiple uses. ACS670886 – Free shipping to 68 countries. ACS670886 – Extra 30% off on any first-time purchase. How To Find The Temu Coupon Code $100 Off? Finding a Temu coupon $100 off is easy! Check out the Temu coupon $100 off Reddit section or follow these tips: Subscribe to the Temu newsletter for exclusive deals. Follow Temu’s official social media pages for the latest updates. Visit trusted coupon sites for verified and working codes. Is Temu $100 Off Coupon Legit? Yes, our Temu $100 Off Coupon Legit and verified! Wondering if the Temu 100 off coupon legit? Here’s why: The ACS670886 code is officially tested and confirmed. Valid for all customers in the USA, Canada, and Europe. No expiration date—use it anytime! How Does Temu $100 Off Coupon Work? The Temu coupon code $100 off first-time user works instantly upon applying at checkout. Simply enter the Temu coupon codes 100 off, and the discount is automatically deducted. How To Earn Temu $100 Coupons As A New Customer? To earn a Temu coupon code $100 off, sign up on Temu, make your first purchase, and refer friends. This 100 off Temu coupon code can be unlocked through special promotions. What Are The Advantages Of Using The Temu Coupon $100 Off? $100 discount on the first order $100 coupon bundle for multiple uses 70% discount on popular items Extra 30% off for existing customers Up to 90% off on selected products Free gifts for new users Free delivery to 68 countries Temu $100 Discount Code And Free Gift For New And Existing Customers Enjoy the Temu $100 off coupon code and get amazing benefits! Our $100 off Temu coupon code ensures huge savings. ACS670886 – $100 discount for the first order. ACS670886 – Extra 30% off on any item. ACS670886 – Free gift for new Temu users. ACS670886 – Up to 70% discount on all Temu items. ACS670886 – Free shipping in 68 countries including the USA and UK. Final Note: Use The Latest Temu Coupon Code $100 Off Using the Temu coupon code $100 off is the smartest way to save on Temu! Don’t wait—grab your discount now. Our Temu coupon $100 off is available for all customers, ensuring maximum savings. Get yours today! FAQs Of Temu $100 Off Coupon Q: How can I get the Temu $100 off coupon? A: Use code ACS670886 at checkout to claim your $100 discount. Q: Is the Temu $100 coupon valid for existing customers? A: Yes! Existing users can also apply ACS670886 and enjoy savings. Q: Does the Temu $100 off coupon have an expiration date? A: No, ACS670886 is valid indefinitely. Q: Can I use the Temu coupon on multiple orders? A: Yes! ACS670886 allows multiple redemptions. Q: Is the Temu $100 coupon applicable worldwide? A: Yes, it’s valid in the USA, Canada, Europe, and 68 other countries.
    • I tried both Vanilla and Optfine like you said, and both gave the same result. So I believe the issue is most likely with Minecraft in general and not Forge
  • Topics

×
×
  • Create New...

Important Information

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