Jump to content

Recommended Posts

Posted

Is there any way to have an entity that emits light (no I don't mean like getBrightness)? Kind of like a moving glowstone? I know lightning does something like that but I don't know if that is what I'm looking for. Any ideas?

Creator of the MyFit, MagiCraft, Tesseract gun, and Papa's Wingeria mod.

Posted

What kind of entity are you talking about? and item entity, living entity, ect??? I do have some code I could explain to you for  a living entity.

 

Also, what version are you doing this in?

Posted
  On 3/23/2015 at 3:20 AM, saxon564 said:

What kind of entity are you talking about? and item entity, living entity, ect??? I do have some code I could explain to you for  a living entity.

 

Also, what version are you doing this in?

 

1.7.10

It is a throwable entity but any code would help :)

Creator of the MyFit, MagiCraft, Tesseract gun, and Papa's Wingeria mod.

Posted

what this does is it takes the location of your entity and sets the light of that block to 16 (with code as is) you can change this by changing the 16 to whatever you want the light level to be.

private void addLight() {
	this.worldObj.setLightValue(EnumSkyBlock.Block, (int) this.posX,
			(int) this.posY, (int) this.posZ, 16);
	this.worldObj.markBlockRangeForRenderUpdate((int) this.posX,
			(int) this.posY, (int) this.posX, 12, 12, 12);
	this.worldObj.markBlockForUpdate((int) this.posX, (int) this.posY,
			(int) this.posZ);
	this.worldObj.updateLightByType(EnumSkyBlock.Block, (int) this.posX,
			(int) this.posY + 1, (int) this.posZ);
	this.worldObj.updateLightByType(EnumSkyBlock.Block, (int) this.posX,
			(int) this.posY - 1, (int) this.posZ);
	this.worldObj.updateLightByType(EnumSkyBlock.Block,
			(int) this.posX + 1, (int) this.posY, (int) this.posZ);
	this.worldObj.updateLightByType(EnumSkyBlock.Block,
			(int) this.posX - 1, (int) this.posY, (int) this.posZ);
	this.worldObj.updateLightByType(EnumSkyBlock.Block, (int) this.posX,
			(int) this.posY, (int) this.posZ + 1);
	this.worldObj.updateLightByType(EnumSkyBlock.Block, (int) this.posX,
			(int) this.posY, (int) this.posZ - 1);
}

 

to call on it put this in your LivingUpdate method:

addLight();

 

also add this to the very end of your LivingUpdate to remove the light when you remove the entity

if (this.isDead) {
this.worldObj.updateLightByType(EnumSkyBlock.Block,
		(int) this.posX, (int) this.posY, (int) this.posZ);
}

this will force the block to update its light to where it should be.

Posted
  On 3/23/2015 at 3:36 AM, saxon564 said:

what this does is it takes the location of your entity and sets the light of that block to 16 (with code as is) you can change this by changing the 16 to whatever you want the light level to be.

private void addLight() {
	this.worldObj.setLightValue(EnumSkyBlock.Block, (int) this.posX,
			(int) this.posY, (int) this.posZ, 16);
	this.worldObj.markBlockRangeForRenderUpdate((int) this.posX,
			(int) this.posY, (int) this.posX, 12, 12, 12);
	this.worldObj.markBlockForUpdate((int) this.posX, (int) this.posY,
			(int) this.posZ);
	this.worldObj.updateLightByType(EnumSkyBlock.Block, (int) this.posX,
			(int) this.posY + 1, (int) this.posZ);
	this.worldObj.updateLightByType(EnumSkyBlock.Block, (int) this.posX,
			(int) this.posY - 1, (int) this.posZ);
	this.worldObj.updateLightByType(EnumSkyBlock.Block,
			(int) this.posX + 1, (int) this.posY, (int) this.posZ);
	this.worldObj.updateLightByType(EnumSkyBlock.Block,
			(int) this.posX - 1, (int) this.posY, (int) this.posZ);
	this.worldObj.updateLightByType(EnumSkyBlock.Block, (int) this.posX,
			(int) this.posY, (int) this.posZ + 1);
	this.worldObj.updateLightByType(EnumSkyBlock.Block, (int) this.posX,
			(int) this.posY, (int) this.posZ - 1);
}

 

to call on it put this in your LivingUpdate method:

addLight();

 

also add this to the very end of your LivingUpdate to remove the light when you remove the entity

if (this.isDead) {
this.worldObj.updateLightByType(EnumSkyBlock.Block,
		(int) this.posX, (int) this.posY, (int) this.posZ);
}

this will force the block to update its light to where it should be.

Thanks! This is along the lines of what I had, I just couldn't quite get there. Could you explain what the update light by type does?

Creator of the MyFit, MagiCraft, Tesseract gun, and Papa's Wingeria mod.

Posted

it tells the block to update its light level based on the light level of blocks around it and the sky. for in the addLight() method, it updates the blocks around the block the entity is in to cause the light to reach out until it is at its limits. the call when the entity is dead causes the source block to check its light level based on the sky and block light sources, therefore causing it to reset.

 

to explain the code in detail

 

this.worldObj.setLightValue(EnumSkyBlock.Block, (int) this.posX,
			(int) this.posY, (int) this.posZ, 16);

 

you should know what this.worldObj is. EnumSkyBlock.Block tell the server what type of light you are modifying, in this case, you are modifying block light. You really shouldn't need to change sky light because that will effect the whole world. (int) this.posX + 1, (int) this.posY, (int) this.posZ is the block position relative to the entity. 16 is the light level you are setting the block to.

 

this.worldObj.updateLightByType(EnumSkyBlock.Block,
			(int) this.posX + 1, (int) this.posY, (int) this.posZ);

 

this is pretty much the same as the setLightValue method, just without the 16, and shouldn't be the same block as the setLightValue, otherwise your block light level will reset.

Posted

Unless the entity is moving faster than 1 block per tick, then the light update lines will remove old light source blocks the entity created. Also, the light value works on all blocks. You can see the code working if you use my mod, Mo Chickens, and spawn in the glowing chicken. I made this bit of code to be the best option to giving entities light and not having to make an invisible block. Entities this should not be used on are any entities that teleport around. But you could use it if you modify the light updates to use entities previous position, which is stored by the game.

Posted

So I tryed using that on my projectile, which just stays in place atm. I have the add light method in the onUpdate method and it doesn't light anything up. Is there anything I should change?

Creator of the MyFit, MagiCraft, Tesseract gun, and Papa's Wingeria mod.

Posted

The issue is onUpdate is not called every tick, you need to put it in onLivingUpdate, which I am no sure if a projectile has a living update. It only works in onLivingUpdate because onLivingUpdate is called every tick, unlike onUpdate.

Posted

Ok so I set up an addLight() thing for a player tick event, and everything is working but the addLight isn't doing anything. Here is my code:

 

@SubscribeEvent
public void onTick(TickEvent.PlayerTickEvent evt){
	this.addLight(evt.player.worldObj, evt.player);
}
private void addLight(World world, EntityPlayer player) {
	world.setLightValue(EnumSkyBlock.Block, (int) player.posX,
			(int) player.posY, (int) player.posZ, 16);
	world.markBlockRangeForRenderUpdate((int) player.posX,
			(int) player.posY, (int) player.posX, 12, 12, 12);
	world.markBlockForUpdate((int) player.posX, (int) player.posY,
			(int) player.posZ);
	world.updateLightByType(EnumSkyBlock.Block, (int) player.posX,
			(int) player.posY + 1, (int) player.posZ);
	world.updateLightByType(EnumSkyBlock.Block, (int) player.posX,
			(int) player.posY - 1, (int) player.posZ);
	world.updateLightByType(EnumSkyBlock.Block,
			(int) player.posX + 1, (int) player.posY, (int) player.posZ);
	world.updateLightByType(EnumSkyBlock.Block,
			(int) player.posX - 1, (int) player.posY, (int) player.posZ);
	world.updateLightByType(EnumSkyBlock.Block, (int) player.posX,
			(int) player.posY, (int) player.posZ + 1);
	world.updateLightByType(EnumSkyBlock.Block, (int) player.posX,
			(int) player.posY, (int) player.posZ - 1);
}

Creator of the MyFit, MagiCraft, Tesseract gun, and Papa's Wingeria mod.

Posted

No I'm using that tick handler just to see it work. Right now I haven't done anything with my entity

Creator of the MyFit, MagiCraft, Tesseract gun, and Papa's Wingeria mod.

Posted

try adding

 

public void onEntityUpdate() {

super();

addlight();

}

 

This method is called in Entity.class every tick and may be what will allow your entity to produce light.

Posted

Ok I tried that the addLight method IS being called, but its not lighting anything up. It is 2 blocks above the ground btw.

Creator of the MyFit, MagiCraft, Tesseract gun, and Papa's Wingeria mod.

Posted
package com.apmods.magicraft.entity;

import java.util.Random;

import net.minecraft.block.Block;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.IProjectile;
import net.minecraft.entity.item.EntityItem;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.projectile.EntityThrowable;
import net.minecraft.init.Blocks;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
import net.minecraft.util.DamageSource;
import net.minecraft.util.MathHelper;
import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.EnumSkyBlock;
import net.minecraft.world.World;

import com.apmods.magicraft.main.SpellLib;

import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

public class EntitySpell extends EntityThrowable implements IProjectile{

   private int arrowShake;
   private Entity shootingEntity;
   public EntitySpell(World par1World) {
       super(par1World);
       this.setThrowableHeading(motionX, motionY, motionZ, 4.5f, 1F);
   }
   public EntitySpell(World par1World, EntityLivingBase player, int spell) {
       super(par1World, player);
       this.setSpell(spell);
       float speed = 4.5f;
       if(spell == 7){
    	   speed = 0;
       }
       this.shootingEntity = player;
       this.setThrowableHeading(motionX, motionY, motionZ, speed, 1F);
   }
   public EntitySpell(World par1World, EntityLivingBase par2EntityLivingBase, EntityLivingBase par3EntityLivingBase, float par4, float par5)
   {
       super(par1World);
       this.renderDistanceWeight = 10.0D;
       this.shootingEntity = par2EntityLivingBase;

       this.posY = par2EntityLivingBase.posY + (double)par2EntityLivingBase.getEyeHeight() - 0.10000000149011612D;
       double d0 = par3EntityLivingBase.posX - par2EntityLivingBase.posX;
       double d1 = par3EntityLivingBase.boundingBox.minY + (double)(par3EntityLivingBase.height / 3.0F) - this.posY;
       double d2 = par3EntityLivingBase.posZ - par2EntityLivingBase.posZ;
       double d3 = (double)MathHelper.sqrt_double(d0 * d0 + d2 * d2);

       if (d3 >= 1.0E-7D)
       {
           float f2 = (float)(Math.atan2(d2, d0) * 180.0D / Math.PI) - 90.0F;
           float f3 = (float)(-(Math.atan2(d1, d3) * 180.0D / Math.PI));
           double d4 = d0 / d3;
           double d5 = d2 / d3;
           this.setLocationAndAngles(par2EntityLivingBase.posX + d4, this.posY, par2EntityLivingBase.posZ + d5, f2, f3);
           this.yOffset = 0.0F;
           float f4 = (float)d3 * 0.2F;
           this.setThrowableHeading(d0, d1 + (double)f4, d2, par4, par5);
       }
   }

   @Override
   protected void entityInit() {
   //Spell
   this.dataWatcher.addObject(20, Integer.valueOf(1));
   
   

   }

   @Override
   public void readEntityFromNBT(NBTTagCompound nbt) {
   super.readEntityFromNBT(nbt);
   this.setSpell(nbt.getInteger("spell"));
   }

   @Override
   public void writeEntityToNBT(NBTTagCompound nbt) {
   super.writeEntityToNBT(nbt);
   nbt.setFloat("spell", this.getSpell());
   }

   @Override
   protected void onImpact(MovingObjectPosition mop) {
   Block block = this.worldObj.getBlock(mop.blockX, mop.blockY, mop.blockZ);
   if(mop.entityHit != null && mop.entityHit instanceof EntityLivingBase){
	   EntityLivingBase entity = (EntityLivingBase) mop.entityHit;
	   float f4 = MathHelper.sqrt_double(this.motionX * this.motionX + this.motionZ * this.motionZ);
	   int damage = 0;
	   double knockback = 0;
	   if(this.getSpell() == SpellLib.STUPEFY){
		   entity.addPotionEffect(new PotionEffect(Potion.moveSlowdown.id, 20, 0));
		   damage = 6;
		   knockback = 0.3;
	   }
	   else if(this.getSpell() == SpellLib.AVADA_KEDAVRA){
		   damage = 100;
		   knockback = 0.2;
	   }
	   else if(this.getSpell() == SpellLib.EXPELLIARMUS){
		   damage = 1;
		   knockback = 0.2;
		   if(entity instanceof EntityPlayer){
			   EntityPlayer player = (EntityPlayer) entity;
			   ItemStack item = player.getCurrentEquippedItem();
			   if(item != null){
				   player.setCurrentItemOrArmor(0, null);
				   this.dropItem(item.getItem(), item.stackSize);
			   }
//				   this.worldObj.spawnEntityInWorld(new EntityItem(this.worldObj, player.posX + rand.nextInt(), player.posY + 2, player.posZ + rand.nextInt(), item.copy()));
		   }
		   else{
			   if(entity.getEquipmentInSlot(0) != null){
				   ItemStack item = entity.getEquipmentInSlot(0);
				   if(item != null){
					   entity.setCurrentItemOrArmor(0, null);
					   this.dropItem(item.getItem(), item.stackSize);
				   }
			   }
		   }
	   }
	   else if(this.getSpell() == SpellLib.EXPULSO){
		   this.worldObj.createExplosion(this, this.posX, this.posY, this.posZ, 3.0f, true);
	   }
	   else if(this.getSpell() == SpellLib.CONFRINGO){
		   this.worldObj.newExplosion(this, this.posX, this.posY, this.posZ, 3.0f, true, true);
	   }
	   else if(this.getSpell() == SpellLib.INCENDIO){
		   entity.setFire(5);
	   }
	   else if(this.getSpell() == SpellLib.AGUAMENTI){
		   entity.extinguish();
	   }
	   else if(this.getSpell() == SpellLib.ALARTE_ASCENDARE){
		   entity.addVelocity(0, 2.5, 0);
	   }
	   
	   entity.attackEntityFrom(DamageSource.magic, 1.0f * damage);
	   entity.addVelocity(this.motionX * knockback * 0.6000000238418579D / (double)f4, knockback, this.motionZ * knockback * 0.6000000238418579D / (double)f4);
   }

   else if( block != Blocks.air){
	   if(this.getSpell() == SpellLib.DURO){
		   this.worldObj.setBlock(mop.blockX, mop.blockY, mop.blockZ, Blocks.stone);
	   }
	   else if(this.getSpell() == SpellLib.EXPULSO){
		   this.worldObj.createExplosion(this, this.posX, this.posY, this.posZ, 3.0f, true);
	   }
	   else if(this.getSpell() == SpellLib.CONFRINGO){
		   this.worldObj.newExplosion(this, this.posX, this.posY, this.posZ, 3.0f, true, true);
	   }
	   else if(this.getSpell() == SpellLib.INCENDIO){
		   if(mop.sideHit == 1){
			   this.worldObj.setBlock((int)this.posX, (int)this.posY, (int)this.posZ, Blocks.fire);
			   Random rand = new Random();
			   if(rand.nextInt(3) == 0){
				   if(this.worldObj.getBlock((int)this.posX + 1, (int)this.posY, (int)this.posZ) == Blocks.air){
					   this.worldObj.setBlock((int)this.posX + 1, (int)this.posY, (int)this.posZ, Blocks.fire);
				   }
			   }
			   if(rand.nextInt(3) == 0){
				   if(this.worldObj.getBlock((int)this.posX - 1, (int)this.posY, (int)this.posZ) == Blocks.air){
				   this.worldObj.setBlock((int)this.posX - 1, (int)this.posY, (int)this.posZ, Blocks.fire);
				   }
			   }
			   if(rand.nextInt(3) == 0){
				   if(this.worldObj.getBlock((int)this.posX, (int)this.posY, (int)this.posZ - 1) == Blocks.air){
				   this.worldObj.setBlock((int)this.posX, (int)this.posY, (int)this.posZ - 1, Blocks.fire);
				   }
			   }
			   if(rand.nextInt(3) == 0){
				   if(this.worldObj.getBlock((int)this.posX, (int)this.posY, (int)this.posZ + 1) == Blocks.air){
				   this.worldObj.setBlock((int)this.posX, (int)this.posY, (int)this.posZ + 1, Blocks.fire);
				   }
			   }
			   if(rand.nextInt(3) == 0){
				   if(this.worldObj.getBlock((int)this.posX + 1, (int)this.posY, (int)this.posZ + 1) == Blocks.air){
				   this.worldObj.setBlock((int)this.posX + 1, (int)this.posY, (int)this.posZ + 1, Blocks.fire);
				   }
			   }
			   if(rand.nextInt(3) == 0){
				   if(this.worldObj.getBlock((int)this.posX + 1, (int)this.posY, (int)this.posZ - 1) == Blocks.air){
				   this.worldObj.setBlock((int)this.posX + 1, (int)this.posY, (int)this.posZ - 1, Blocks.fire);
				   }
			   }
			   if(rand.nextInt(3) == 0){
				   if(this.worldObj.getBlock((int)this.posX - 1, (int)this.posY, (int)this.posZ + 1) == Blocks.air){
				   this.worldObj.setBlock((int)this.posX - 1, (int)this.posY, (int)this.posZ + 1, Blocks.fire);
				   }
			   }
			   if(rand.nextInt(3) == 0){
				   if(this.worldObj.getBlock((int)this.posX - 1, (int)this.posY, (int)this.posZ - 1) == Blocks.air){
				   this.worldObj.setBlock((int)this.posX - 1, (int)this.posY, (int)this.posZ - 1, Blocks.fire);
				   }
			   }
		   }
	   }
	   else if(this.getSpell() == SpellLib.AGUAMENTI){
//			   if(mop.sideHit == 1){
//				   this.worldObj.setBlock((int)this.posX, (int)this.posY + 1, (int)this.posZ, Blocks.flowing_water);
//			   }
//			   else if(mop.sideHit == 0){
//				   this.worldObj.setBlock((int)this.posX, (int)this.posY - 1, (int)this.posZ, Blocks.flowing_water);
//			   }
//			   else if(mop.sideHit == 2){
//				   this.worldObj.setBlock((int)this.posX + 1, (int)this.posY, (int)this.posZ, Blocks.flowing_water);
//			   }
//			   else if(mop.sideHit == 4){
//				   this.worldObj.setBlock((int)this.posX - 1, (int)this.posY, (int)this.posZ, Blocks.flowing_water);
//			   }
//			   else if(mop.sideHit == 3){
//				   this.worldObj.setBlock((int)this.posX, (int)this.posY, (int)this.posZ + 1, Blocks.flowing_water);
//			   }
//			   else if(mop.sideHit == 5){
//				   this.worldObj.setBlock((int)this.posX, (int)this.posY, (int)this.posZ - 1, Blocks.flowing_water);
//			   }
		   this.worldObj.setBlock((int)this.posX, (int)this.posY, (int)this.posZ, Blocks.flowing_water);
	   }
	   else{
		   this.setDead();
	   }
   }
       this.setDead();
   }
   

   
   @Override
   public float getGravityVelocity(){
   return 0;
   }
   @SideOnly(Side.CLIENT)
   public int getBrightnessForRender(float par1)
   {
       return 15728880;
   }

   /**
    * Gets how bright this entity is.
    */
   public float getBrightness(float par1)
   {
       return 1.0F;
   }
public void onUpdate(){
	super.onUpdate();
//		if(this.getSpell() == SpellLib.LUMOS){
//			this.addLight();
//			if (this.isDead) {
//				this.worldObj.updateLightByType(EnumSkyBlock.Block,
//						(int) this.posX, (int) this.posY, (int) this.posZ);
//			}
//		}
	Random rand = new Random();
	if(rand.nextInt(2) == 1){
	this.worldObj.spawnParticle("enchantmenttable", this.posX + rand.nextFloat()- 0.6f, this.posY , this.posZ + rand.nextFloat() - 0.6f, rand.nextFloat() - 0.5f, 0, rand.nextFloat() - 0.5f);
	}
	else{
		this.worldObj.spawnParticle("enchantmenttable", this.posX - rand.nextFloat(), this.posY, this.posZ - rand.nextFloat(), rand.nextFloat() - 0.5f, 0, rand.nextFloat() - 0.5f);
	}
}

public void onEntityUpdate(){
	super.onEntityUpdate();
	if(this.getSpell() == SpellLib.LUMOS){
		this.addLight();
	}
}
public int getSpell(){
	return this.dataWatcher.getWatchableObjectInt(20);
}
private void setSpell(int f){
	this.dataWatcher.updateObject(20, Integer.valueOf(f));
}
private void addLight() {
	System.out.println("light");
	this.worldObj.setLightValue(EnumSkyBlock.Block, (int) this.posX,
			(int) this.posY, (int) this.posZ, 16);
	this.worldObj.markBlockRangeForRenderUpdate((int) this.posX,
			(int) this.posY, (int) this.posX, 12, 12, 12);
	this.worldObj.markBlockForUpdate((int) this.posX, (int) this.posY,
			(int) this.posZ);
	this.worldObj.updateLightByType(EnumSkyBlock.Block, (int) this.posX,
			(int) this.posY + 1, (int) this.posZ);
	this.worldObj.updateLightByType(EnumSkyBlock.Block, (int) this.posX,
			(int) this.posY - 1, (int) this.posZ);
	this.worldObj.updateLightByType(EnumSkyBlock.Block,
			(int) this.posX + 1, (int) this.posY, (int) this.posZ);
	this.worldObj.updateLightByType(EnumSkyBlock.Block,
			(int) this.posX - 1, (int) this.posY, (int) this.posZ);
	this.worldObj.updateLightByType(EnumSkyBlock.Block, (int) this.posX,
			(int) this.posY, (int) this.posZ + 1);
	this.worldObj.updateLightByType(EnumSkyBlock.Block, (int) this.posX,
			(int) this.posY, (int) this.posZ - 1);
}
public void setShootingEntity(EntityLivingBase entity){
	this.shootingEntity = entity;
}



}

Creator of the MyFit, MagiCraft, Tesseract gun, and Papa's Wingeria mod.

Posted

At this point, I am not sure why it is not working, I know it works with living entities, but I don't know why it's not working for your entity with the method it's in.

Posted

Still not working, even though I made a living entity to test it:

 

package com.apmods.magicraft.entity;

import net.minecraft.entity.EntityLiving;
import net.minecraft.world.EnumSkyBlock;
import net.minecraft.world.World;

public class EntityLivingTest extends EntityLiving{

public EntityLivingTest(World p_i1594_1_) {
	super(p_i1594_1_);
	// TODO Auto-generated constructor stub
}
public void onLivingUpdate()
    {
	super.onLivingUpdate();
	addLight();
    }
private void addLight() {
	this.worldObj.setLightValue(EnumSkyBlock.Block, (int) this.posX,
			(int) this.posY, (int) this.posZ, 16);
	this.worldObj.markBlockRangeForRenderUpdate((int) this.posX,
			(int) this.posY, (int) this.posX, 12, 12, 12);
	this.worldObj.markBlockForUpdate((int) this.posX, (int) this.posY,
			(int) this.posZ);
	this.worldObj.updateLightByType(EnumSkyBlock.Block, (int) this.posX,
			(int) this.posY + 1, (int) this.posZ);
	this.worldObj.updateLightByType(EnumSkyBlock.Block, (int) this.posX,
			(int) this.posY - 1, (int) this.posZ);
	this.worldObj.updateLightByType(EnumSkyBlock.Block,
			(int) this.posX + 1, (int) this.posY, (int) this.posZ);
	this.worldObj.updateLightByType(EnumSkyBlock.Block,
			(int) this.posX - 1, (int) this.posY, (int) this.posZ);
	this.worldObj.updateLightByType(EnumSkyBlock.Block, (int) this.posX,
			(int) this.posY, (int) this.posZ + 1);
	this.worldObj.updateLightByType(EnumSkyBlock.Block, (int) this.posX,
			(int) this.posY, (int) this.posZ - 1);
}


}

Creator of the MyFit, MagiCraft, Tesseract gun, and Papa's Wingeria mod.

Posted

Ahhh yea I was wondering why it was 16 but I figured it probably has to be above 15 or something. Will try it out on see how it goes  :)

Creator of the MyFit, MagiCraft, Tesseract gun, and Papa's Wingeria mod.

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 am using Linux, I did Java --version and it shows I have Java 8 installed
    • Temu Coupon Code $100 Off [acu639380] For The USA This Month  Temu has become a go-to platform for online shopping in recent years, offering a vast selection of trendy items at unbeatable prices. With amazing discounts like the  Temu coupon code (acu639380) offering up to $100 Off for new users and exclusive offers for existing customers,  Temu is quickly cementing itself as a favorite among online shoppers. Whether you're looking for stylish fashion pieces, home essentials, or the latest gadgets, using  Temu 's promotional codes can help you save big on your purchases. In this blog, we’ll dive into all the incredible savings available this month, including details on the  Temu coupon codes (acu639380), which provide discounts like $100 Off for new and existing users, an additional 40% off, and even free gifts for first-time users. No matter where you’re located—whether in the United States, Canada, the UK, or beyond— Temu offers something for everyone. If you're looking to save money on your next shopping spree, keep reading to learn about all the best deals, discounts, and coupon codes you can use in June 2025. What is  Temu ? Before we dive into the details of the amazing  Temu coupon codes (acu639380), let’s first explore what  Temu is all about.  Temu is an online shopping platform that offers a massive range of products, from fashion and beauty items to home goods and electronics. With unbeatable prices, fast delivery, and free shipping to over 67 countries,  Temu is revolutionizing the way we shop online.  Temu is known for offering up to 90% off on certain items, which makes it an attractive option for budget-conscious shoppers. Whether you’re in the mood for trendy apparel, kitchen gadgets, or tech accessories,  Temu has something that fits your style and budget. Plus, with its regular sales events and exclusive coupon codes, there’s always an opportunity to save more. One of the biggest perks is the ability to combine discounts with promo codes like the  Temu coupon code (acu639380), which gives you a $100 discount for new users and additional savings for existing customers. Benefits of Using  Temu Coupon Codes  Temu coupon codes can offer significant discounts, and knowing how to take full advantage of these offers can lead to huge savings. The  Temu coupon code (acu639380) comes with a variety of benefits, such as: $100 Off for new users: This is a great way for new customers to enjoy  Temu ’s products at a fraction of the price. $100 Off for existing users: Loyal customers can still get a fantastic discount. 40% off: This discount code provides a solid extra savings on selected items. $100 coupon bundle: This is an exclusive offer for both new and existing users that lets you save on multiple purchases. Free gifts for new users: A welcome treat for first-time customers.  Temu Coupon Codes for June 2025 Now, let’s look at the  Temu coupon codes for June 2025 and how you can maximize your savings. These codes are designed to provide discounts based on your user status and location. Make sure to apply the  Temu coupon code (acu639380) when you check out to get the best deal possible! Here’s a breakdown of the  Temu coupon codes (acu639380) available:  Temu Coupon Code (acu639380) $100 Off for New Users Enjoy an instant $100 discount when you sign up for  Temu as a new user.  Temu Coupon Code (acu639380) $100 Off for Existing Users Loyal customers can also use this code to score a $100 discount on their next purchase.  Temu Coupon Code (acu639380) 40% Off Get up to 40% off on select items and categories—perfect for budget-savvy shoppers.  Temu $100 Coupon Bundle This bundle lets you apply a $100 discount on your shopping cart for both new and returning users.  Temu First Time User Coupon First-time buyers get an exclusive gift with this coupon code, alongside additional savings.  Temu Promo Code (acu639380) for June 2025 Use this code to unlock all of the June offers, including huge discounts on a wide variety of items. How  Temu Coupon Codes Help You Save More By using the  Temu coupon code (acu639380), you can access not only great discounts but also enjoy perks like free shipping and exclusive offers. The platform’s unbeatable prices, combined with these additional promo codes, create a shopping experience like no other. Let’s take a closer look at how each of these discounts can benefit you. $100 Off for new users: As a new user, you can score $100 Off on your first order with the  Temu coupon code (acu639380) for June 2025. This means you can shop for high-quality products like electronics, fashion, and home goods while spending less. $100 Off for existing users: Existing users also benefit from this promo code, which means even long-time shoppers can save big. The  Temu coupon code (acu639380) ensures that both new and loyal customers get an opportunity to save. 40% extra off: Certain categories are eligible for up to 40% off with this code. Whether you’re eyeing the latest tech gadget or refreshing your wardrobe, this extra discount can make a real difference to your total. Free gifts for new users: If you’re signing up for the first time,  Temu wants to welcome you with extra surprises. Use the  Temu first-time user coupon code to receive free gifts that’ll make your shopping experience even more enjoyable. $100 coupon bundle:  Temu has also created a special bundle that gives users—new and existing—a $100 discount on their orders. This bundle is perfect for those who love shopping in bulk and want to get the most value from their purchases. Where to Use  Temu Coupon Codes (acu639380)  Temu ships to over 67 countries, so no matter where you are, there’s a great deal waiting for you. Here’s a country-specific breakdown of how you can use the  Temu coupon code (acu639380) and enjoy incredible savings:  Temu Coupon Code $100 Off for USA: Residents of the United States can enjoy $100 Off their purchase using the  Temu coupon code (acu639380), which works for both new and existing users.  Temu Coupon Code $100 Off for Canada: Shoppers in Canada can save $100 on their orders when they apply the  Temu coupon code (acu639380), making it an excellent option for our neighbors to the north.  Temu Coupon Code $100 Off for UK: UK shoppers can also benefit from this amazing coupon code, ensuring they get $100 Off their next  Temu order.  Temu Coupon Code 40% Off for Mexico: Mexico-based shoppers can enjoy up to 40% off select items by using the  Temu coupon code (acu639380), which is ideal for those looking for exclusive savings.  Temu Coupon Code 40% Off for Brazil: Brazilian shoppers will be thrilled to know that they can apply the  Temu coupon code (acu639380) for up to 40% off on select items from the website.  Temu Coupon Code $100 Off for Japan: Shoppers in Japan can also take advantage of the  Temu coupon code (acu639380) and get $100 Off their purchases, which works for a wide range of products. Tips to Maximize Your Savings Stack Coupon Codes:  Temu allows users to stack certain discounts, so be sure to combine the  Temu coupon code (acu639380) with other promotional offers to get the best deal possible. Shop During Sales Events: Take advantage of major sales events like Black Friday, Cyber Monday, and holiday sales, when you can use  Temu coupon codes for even bigger discounts. Sign Up for Alerts: By signing up for  Temu ’s newsletter, you’ll be the first to know about new coupon codes, flash sales, and other special offers. Follow  Temu on Social Media:  Temu often shares exclusive discounts and codes on its social media platforms. Follow them to stay updated on the latest deals. Conclusion Whether you’re a first-time shopper or a loyal  Temu customer, using the  Temu coupon code (acu639380) is a smart way to save money on your favorite items. With discounts like $100 Off, up to 40% off, and exclusive coupon bundles,  Temu ensures that you never have to pay full price. With free shipping to over 67 countries, it’s easier than ever to shop for high-quality, affordable products that fit your budget. Don’t miss out on these amazing savings—apply the  Temu coupon code (acu639380) today and enjoy huge discounts on your next purchase.  
    • Make tests with different builds of these mods
    • it worked now. but is therre n outer way to use essential and forggematica?
    • Maybe a conflict with essential - make a test without it
  • Topics

×
×
  • Create New...

Important Information

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