Jump to content

Achievement Error [1.5.2]


Recommended Posts

Hello guys. Sorry if this sounds noobish, but I cant get a achievement to work in 1.5.2. I followed a tutorial from 1.4.7 because I could not find another one(exept the one on the wiki, but that is too confusing for me). Anyway, if you could tell me how to fix it, or direct me to a updated tutorial, that would be great!

 

Main Class:

//If you are reading this, that means you are looking at my source code when I have not officially released it. I do not mind this, but please give me credit if you use it for anything. Also, you may find it very confusing, as I am not very good at organizing things.

package mods.mcenrichment.common;


import java.lang.reflect.Proxy;


import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.item.EnumArmorMaterial;
import net.minecraft.item.EnumToolMaterial;
import net.minecraft.item.Item;
import net.minecraft.item.ItemArmor;
import net.minecraft.item.ItemStack;
import net.minecraft.stats.Achievement;
import net.minecraft.world.biome.BiomeGenBase;
import net.minecraftforge.common.EnumHelper;
import net.minecraftforge.common.MinecraftForge;
import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.Mod.Init;
import cpw.mods.fml.common.Mod.PreInit;
import cpw.mods.fml.common.SidedProxy;
import cpw.mods.fml.common.event.FMLInitializationEvent;
import cpw.mods.fml.common.network.NetworkMod;
import cpw.mods.fml.common.registry.EntityRegistry;
import cpw.mods.fml.common.registry.GameRegistry;
import cpw.mods.fml.common.registry.LanguageRegistry;

@Mod(modid = "mcenrichment", name = "Enhanced Minecraft", version = "Alpha 0.0.5")
@NetworkMod(clientSideRequired = true, serverSideRequired = false)
public class MCEnrichment {

@SidedProxy(clientSide = "mods.mcenrichment.common.ClientProxy", serverSide = "mods.mcenrichment.common.ServerProxy")
public static ServerProxy proxy;

public static CreativeTabs tabMCEnrichment = new CreativeTabs("Minecraft Enrichment") {
        public ItemStack getIconItemStack() {
                return new ItemStack(MCEnrichment.baconiteIngot, 1, 0);
        }
};
//Blocks start here
public static Block baconiteOre;
int baconiteOreID = 500;

public static Block sapphireOre;
int sapphireOreID = 501;

public static Block amethystOre;
int amethystOreID = 502;

public static Block rubyOre;
int rubyOreID = 503;

/*public static Block explosiveWood;
int explosiveWoodID = 568;*/


int rawBaconID = 2010;

//Items start here	
public static Item baconiteIngot;
public static Item sapphire;
public static Item ruby;
public static Item icon;
public static Item amethyst;
//tools start here
public static Item bowBaconite;
public static Item pickBaconite;
public static Item axeBaconite;
public static Item swordBaconite;
public static Item hoeBaconite;
public static Item shovelBaconite;
public static Item paxcelBaconite;
public static Item baconCutter;
public static Item pickSapphire;
public static Item axeSapphire;
public static Item swordSapphire;
public static Item hoeSapphire;
public static Item shovelSapphire;
public static Item pickAmethyst;
public static Item axeAmethyst;
public static Item swordAmethyst;
public static Item hoeAmethyst;
public static Item shovelAmethyst;
public static Item pickObsidian;
public static Item axeObsidian;
public static Item swordObsidian;
public static Item hoeObsidian;
public static Item shovelObsidian;
public static Item pickRuby;
public static Item axeRuby;
public static Item swordRuby;
public static Item hoeRuby;
public static Item shovelRuby;

public static Item woodSA;
public static Item stoneSA;
public static Item ironSA;
public static Item goldSA;
public static Item diamondSA;
public static Item rubySA;
public static Item amethystSA;
public static Item baconiteSA;
public static Item obsidianSA;
public static Item sapphireSA;

//armor starts here
public static Item baconiteHelmet;
public static Item baconiteChestplate;
public static Item baconiteLeggings;
public static Item baconiteBoots;
public static Item sapphireHelmet;
public static Item sapphireChestplate;
public static Item sapphireLeggings;
public static Item sapphireBoots;
public static Item obsidianHelmet;
public static Item obsidianChestplate;
public static Item obsidianLeggings;
public static Item obsidianBoots;
public static Item rubyHelmet;
public static Item rubyChestplate;
public static Item rubyLeggings;
public static Item rubyBoots;
public static Item amethystHelmet;
public static Item amethystChestplate;
public static Item amethystLeggings;
public static Item amethystBoots;

//biomes
public static BiomeGenBase biome1;

//acheivements
public static Achievement multitoolAchievement = (new Achievement(30, "multiToolAcheve", -4, 2, MCEnrichment.paxcelBaconite, (Achievement)null)).setIndependent().registerAchievement();
public static ModCraftingHandler modCraftHandler = new ModCraftingHandler();
//food starts here
public static Item baconRaw;
public static Item baconCooked;
@Init
public void load(FMLInitializationEvent event){

	LanguageRegistry.instance().addStringLocalization("itemGroup.Minecraft Enrichment", "en_US", "Minecraft Enrichment");
	proxy.registerRenderThings();
	proxy.registerServerTickHandler();

	baconiteOre = new BlockBaconiteOre(baconiteOreID, Material.iron).setUnlocalizedName("tilebaconiteore").setHardness(4.0F).setCreativeTab(tabMCEnrichment);
	sapphireOre = new BlockSapphireOre(sapphireOreID, Material.iron).setUnlocalizedName("tilesapphireore").setHardness(3.7F).setCreativeTab(tabMCEnrichment);
	amethystOre = new BlockAmthystOre(amethystOreID, Material.iron).setUnlocalizedName("tileamthystore").setHardness(3.7F).setCreativeTab(tabMCEnrichment);
	rubyOre = new BlockRubyOre(rubyOreID, Material.iron).setUnlocalizedName("tilerubyore").setHardness(3.7F).setCreativeTab(tabMCEnrichment);

	GameRegistry.registerWorldGenerator(new WorldGeneratorCrystalia());

GameRegistry.registerBlock(baconiteOre, "baconiteore");
MinecraftForge.setBlockHarvestLevel(baconiteOre, "pickaxe", 2);
GameRegistry.registerBlock(sapphireOre, "sapphireore");
MinecraftForge.setBlockHarvestLevel(sapphireOre, "pickaxe", 2);
GameRegistry.registerBlock(amethystOre, "amethystore");
MinecraftForge.setBlockHarvestLevel(amethystOre, "pickaxe", 2);
GameRegistry.registerBlock(rubyOre, "rubyore");
MinecraftForge.setBlockHarvestLevel(rubyOre, "pickaxe", 2);
//GameRegistry.registerBlock(explosiveWood, "woodtnt");
GameRegistry.registerCraftingHandler(modCraftHandler);

LanguageRegistry.addName(baconiteOre, "Baconite Ore");
LanguageRegistry.addName(sapphireOre, "Sapphire Ore");
LanguageRegistry.addName(amethystOre, "Amethyst Ore");
LanguageRegistry.addName(rubyOre, "Ruby Ore");

addAchievementLocalizations();
//LanguageRegistry.addName(explosiveWood, "Explosive Wood");

		baconiteIngot = new ItemBaconiteIngot(504).setUnlocalizedName("mcenrichment:ingotBaconite").setCreativeTab(tabMCEnrichment);
		LanguageRegistry.addName(baconiteIngot, "Baconite Ingot");
		sapphire = new ItemSapphire(505).setUnlocalizedName("mcenrichment:saphire").setCreativeTab(tabMCEnrichment);
		LanguageRegistry.addName(sapphire, "Sapphire");
		ruby = new ItemRuby(506).setUnlocalizedName("mcenrichment:ruby").setCreativeTab(tabMCEnrichment);
		LanguageRegistry.addName(ruby, "Ruby");
		amethyst = new ItemAmethyst(507).setUnlocalizedName("mcenrichment:amethyst");
		LanguageRegistry.addName(amethyst, "Amethyst");	
		/*explosiveWood = new ExplosiveWood(explosiveWoodID).setUnlocalizedName("mcenrichment:explosiveWood");
		EntityRegistry.registerModEntity(EntityWoodTNT.class, "ExplosiveWood", EntityRegistry.findGlobalUniqueEntityId(), this, 128, 1, true); 
		LanguageRegistry.instance().addStringLocalization("entity.ExplosiveWood.name", "Explosive Wood");*/

//Crafting
/*GameRegistry.addRecipe(new ItemStack(baconiteChestplate, 1), new Object[] {
	"T T", "TTT", "TTT", 'T', baconiteIngot
});	
*/		

//tools
bowBaconite = new BaconiteBow(7000).setUnlocalizedName("baconiteBow").setCreativeTab(tabMCEnrichment); 
LanguageRegistry.addName(bowBaconite, "Baconite Bow");

EnumToolMaterial BACONITE = EnumHelper.addToolMaterial("Baconite Enum", 3, 10000, 50.0F, 4, 15);
EnumToolMaterial SAPPHIRE = EnumHelper.addToolMaterial("Sapphire Enum", 3, 500, 6.5F, 3, 14);
EnumToolMaterial OBSIDIAN = EnumHelper.addToolMaterial("Obsidian Enum", 3, 5000, 6.0F, 4, 5);
EnumArmorMaterial BACONITEA = EnumHelper.addArmorMaterial("Baconite Armor", 40, new int[]{3, 8, 6, 3}, 15);
EnumArmorMaterial SAPPHIREA = EnumHelper.addArmorMaterial("Sapphire Armor", 25, new int[]{2, 6, 5, 2}, 10);
EnumArmorMaterial OBSIDIANA = EnumHelper.addArmorMaterial("Obsidian Armor", 50, new int[]{2, 6, 5, 2}, 5);


pickBaconite = new PickaxeBaconite(509, BACONITE).setUnlocalizedName("mcenrichment:pickaxeBaconite").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(pickBaconite, "Baconite Pickaxe");

axeBaconite = new AxeBaconite(510, BACONITE).setUnlocalizedName("mcenrichment:hatchetBaconite").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(axeBaconite, "Baconite Axe");

hoeBaconite = new HoeBaconite(511, BACONITE).setUnlocalizedName("mcenrichment:hoeBaconite").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(hoeBaconite, "Baconite Hoe");

shovelBaconite = new ShovelBaconite(512, BACONITE).setUnlocalizedName("mcenrichment:shovelBaconite").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(shovelBaconite, "Baconite Shovel");

swordBaconite = new SwordBaconite(513, BACONITE).setUnlocalizedName("mcenrichment:Baconite Sword").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(swordBaconite, "Baconite Sword");

paxcelBaconite = new PaxcelBaconite(514, BACONITE).setUnlocalizedName("mcenrichment:The Multi-Tool").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(paxcelBaconite, "Multi-Tool");

pickSapphire = new PickaxeSapphire(515, SAPPHIRE).setUnlocalizedName("mcenrichment:pickaxeSaphire").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(pickSapphire, "Sapphire Pickaxe");

axeSapphire = new AxeSapphire(516, SAPPHIRE).setUnlocalizedName("mcenrichment:hatchetSaphire").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(axeSapphire, "Sapphire Axe");

hoeSapphire = new HoeSapphire(517, SAPPHIRE).setUnlocalizedName("mcenrichment:hoeSaphire").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(hoeSapphire, "Sapphire Hoe");

shovelSapphire = new ShovelSapphire(518, SAPPHIRE).setUnlocalizedName("mcenrichment:shovelSaphire").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(shovelSapphire, "Sapphire Shovel");

swordSapphire = new SwordSapphire(519, SAPPHIRE).setUnlocalizedName("mcenrichment:swordSaphire").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(swordSapphire, "Sapphire Sword");

pickAmethyst = new PickaxeAmethyst(520, SAPPHIRE).setUnlocalizedName("mcenrichment:pickaxeAmethyst").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(pickAmethyst, "Amethyst Pickaxe");

axeAmethyst = new AxeAmethyst(521, SAPPHIRE).setUnlocalizedName("mcenrichment:hatchetAmethyst").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(axeAmethyst, "Amethyst Axe");

hoeAmethyst = new HoeAmethyst(522, SAPPHIRE).setUnlocalizedName("mcenrichment:hoeAmethyst").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(hoeAmethyst, "Amethyst Hoe");

shovelAmethyst = new ShovelAmethyst(523, SAPPHIRE).setUnlocalizedName("mcenrichment:shovelAmethyst").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(shovelAmethyst, "Amethyst Shovel");

swordAmethyst = new SwordAmethyst(524, SAPPHIRE).setUnlocalizedName("mcenrichment:swordAmethyst").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(swordAmethyst, "Amethyst Sword");

pickObsidian = new PickaxeObsidian(525, OBSIDIAN).setUnlocalizedName("mcenrichment:pickaxeObsidian").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(pickObsidian, "Obsidian Pickaxe");

axeObsidian = new AxeObsidian(526, OBSIDIAN).setUnlocalizedName("mcenrichment:hatchetObsidian").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(axeObsidian, "Obsidian Axe");

hoeObsidian = new HoeObsidian(527, OBSIDIAN).setUnlocalizedName("mcenrichment:hoeObsidian").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(hoeObsidian, "Obsidian Hoe");

shovelObsidian = new ShovelObsidian(528, OBSIDIAN).setUnlocalizedName("mcenrichment:shovelObsidian").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(shovelObsidian, "Obsidian Shovel");

swordObsidian = new SwordObsidian(529, OBSIDIAN).setUnlocalizedName("mcenrichment:swordObsidian").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(swordObsidian, "Obsidian Sword");

pickRuby = new PickaxeRuby(530, SAPPHIRE).setUnlocalizedName("mcenrichment:pickaxeRuby").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(pickRuby, "Ruby Pickaxe");

axeRuby = new AxeRuby(531, SAPPHIRE).setUnlocalizedName("mcenrichment:hatchetRuby").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(axeRuby, "Ruby Axe");

hoeRuby = new HoeRuby(532, SAPPHIRE).setUnlocalizedName("mcenrichment:hoeRuby").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(hoeRuby, "Ruby Hoe");

shovelRuby = new ShovelRuby(533, SAPPHIRE).setUnlocalizedName("mcenrichment:shovelRuby").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(shovelRuby, "Ruby Shovel");

swordRuby = new SwordRuby(534, SAPPHIRE).setUnlocalizedName("mcenrichment:swordRuby").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(swordRuby, "Ruby Sword");

woodSA = new woodSA(535, EnumToolMaterial.WOOD).setUnlocalizedName("mcenrichment:sa1").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(woodSA, "Wood Superaxe");

stoneSA = new stoneSA(536, EnumToolMaterial.STONE).setUnlocalizedName("mcenrichment:sa2").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(stoneSA, "Stone Superaxe");

ironSA = new ironSA(537, EnumToolMaterial.IRON).setUnlocalizedName("mcenrichment:sa3").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(ironSA, "Iron Superaxe");

goldSA = new goldSA(538, EnumToolMaterial.GOLD).setUnlocalizedName("mcenrichment:sa4").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(goldSA, "Gold Superaxe");

diamondSA = new diamondSA(539, EnumToolMaterial.EMERALD).setUnlocalizedName("mcenrichment:sa5").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(diamondSA, "Diamond Superaxe");

amethystSA = new amethystSA(540, SAPPHIRE).setUnlocalizedName("mcenrichment:sa6").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(amethystSA, "Amethyst Superaxe");

rubySA = new rubySA(541, SAPPHIRE).setUnlocalizedName("mcenrichment:sa7").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(rubySA, "Ruby Superaxe");

baconiteSA = new baconiteSA(542, BACONITE).setUnlocalizedName("mcenrichment:sa8").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(baconiteSA, "Baconite Superaxe");

obsidianSA = new obsidianSA(543, OBSIDIAN).setUnlocalizedName("mcenrichment:sa9").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(obsidianSA, "Obsidian Superaxe");

sapphireSA = new sapphireSA(544, SAPPHIRE).setUnlocalizedName("mcenrichment:sa10").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(sapphireSA, "Sapphire Superaxe");

baconCutter = new BaconCutter(545).setUnlocalizedName("mcenrichment:Bacon cutter (knife)").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(baconCutter, "Meat Cutter");
//armor

baconiteHelmet = new BaconiteArmor(546, BACONITEA, proxy.addArmor("Baconite"), 0).setUnlocalizedName("mcenrichment:helmetBaconite").setCreativeTab(tabMCEnrichment); 
LanguageRegistry.addName(baconiteHelmet, "Baconite Helmet");

baconiteChestplate = new BaconiteArmor(547, BACONITEA, proxy.addArmor("Baconite"), 1).setUnlocalizedName("mcenrichment:chestplateBaconite").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(baconiteChestplate, "Baconite Chestplate");

baconiteLeggings = new BaconiteArmor(548, BACONITEA, proxy.addArmor("Baconite"), 2).setUnlocalizedName("mcenrichment:leggingsBaconite").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(baconiteLeggings, "Baconite Leggings");

baconiteBoots = new BaconiteArmor(549, BACONITEA, proxy.addArmor("Baconite"), 3).setUnlocalizedName("mcenrichment:bootsBaconite").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(baconiteBoots, "Baconite Boots");

sapphireHelmet = new SapphireArmor(550, SAPPHIREA, proxy.addArmor("Sapphire"), 0).setUnlocalizedName("helmetSaphire").setCreativeTab(tabMCEnrichment); 
LanguageRegistry.addName(sapphireHelmet, "Sapphire Helmet");

sapphireChestplate = new SapphireArmor(551, SAPPHIREA, proxy.addArmor("Sapphire"), 1).setUnlocalizedName("chestplateSaphire").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(sapphireChestplate, "Sapphire Chestplate");

sapphireLeggings = new SapphireArmor(552, SAPPHIREA, proxy.addArmor("Sapphire"), 2).setUnlocalizedName("leggingsSaphire").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(sapphireLeggings, "Sapphire Leggings");

sapphireBoots = new SapphireArmor(553, SAPPHIREA, proxy.addArmor("Sapphire"), 3).setUnlocalizedName("bootsSaphire").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(sapphireBoots, "Sapphire Boots");

obsidianHelmet = new ObsidianArmor(554, OBSIDIANA, proxy.addArmor("Obsidian"), 0).setUnlocalizedName("helmetObsidian").setCreativeTab(tabMCEnrichment); 
LanguageRegistry.addName(obsidianHelmet, "Obsidian Helmet");

obsidianChestplate = new ObsidianArmor(555, OBSIDIANA, proxy.addArmor("Obsidian"), 1).setUnlocalizedName("chestplateObsidian").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(obsidianChestplate, "Obsidian Chestplate");

obsidianLeggings = new ObsidianArmor(556, OBSIDIANA, proxy.addArmor("Obsidian"), 2).setUnlocalizedName("leggingsObsidian").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(obsidianLeggings, "Obsidian Leggings");

obsidianBoots = new ObsidianArmor(557, OBSIDIANA, proxy.addArmor("Obsidian"), 3).setUnlocalizedName("bootsObsidian").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(obsidianBoots, "Obsidian Boots");

rubyHelmet = new RubyArmor(558, SAPPHIREA, proxy.addArmor("Ruby"), 0).setUnlocalizedName("helmetRuby").setCreativeTab(tabMCEnrichment); 
LanguageRegistry.addName(rubyHelmet, "Ruby Helmet");

rubyChestplate = new RubyArmor(559, SAPPHIREA, proxy.addArmor("Ruby"), 1).setUnlocalizedName("chestplateRuby").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(rubyChestplate, "Ruby Chestplate");

rubyLeggings = new RubyArmor(560, SAPPHIREA, proxy.addArmor("Ruby"), 2).setUnlocalizedName("leggingsRuby").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(rubyLeggings, "Ruby Leggings");

rubyBoots = new RubyArmor(561, SAPPHIREA, proxy.addArmor("Ruby"), 3).setUnlocalizedName("bootsRuby").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(rubyBoots, "Ruby Boots");

amethystHelmet = new amethystArmor(562, SAPPHIREA, proxy.addArmor("amethyst"), 0).setUnlocalizedName("helmetamethyst").setCreativeTab(tabMCEnrichment); 
LanguageRegistry.addName(amethystHelmet, "Amethyst Helmet");

amethystChestplate = new amethystArmor(563, SAPPHIREA, proxy.addArmor("amethyst"), 1).setUnlocalizedName("chestplateamethyst").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(amethystChestplate, "Amethyst Chestplate");

amethystLeggings = new amethystArmor(564, SAPPHIREA, proxy.addArmor("amethyst"), 2).setUnlocalizedName("leggingsamethyst").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(amethystLeggings, "Amethyst Leggings");

amethystBoots = new amethystArmor(565, SAPPHIREA, proxy.addArmor("amethyst"), 3).setUnlocalizedName("bootsamethyst").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(amethystBoots, "Amethyst Boots");
//food

baconRaw = new RawBacon(rawBaconID, 1, 4.0F, false).setUnlocalizedName("mcenrichment:rawBacon").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(baconRaw, "Raw Bacon");

baconCooked = new CookedBacon(567, 20, 10.0F, true).setUnlocalizedName("mcenrichment:cookedBacon").setCreativeTab(tabMCEnrichment);
LanguageRegistry.addName(baconCooked, "Cooked Bacon");

//biome
//biome1 = new Biome1(24).setBiomeName("Biome 1").setTemperatureRainfall(0.7F, 0.8F);
//GameRegistry.addBiome(biome1);
//smelting
GameRegistry.addSmelting(baconiteOreID, new ItemStack (baconiteIngot), 0.1f); 

GameRegistry.addSmelting(baconRaw.itemID, new ItemStack (baconCooked), 0.1f); 

//crafting

GameRegistry.addShapelessRecipe(new ItemStack(paxcelBaconite), new Object[] {
   MCEnrichment.pickBaconite, MCEnrichment.shovelBaconite, MCEnrichment.swordBaconite, MCEnrichment.hoeBaconite, MCEnrichment.axeBaconite,
});

GameRegistry.addRecipe(new ItemStack(baconiteBoots), new Object[] {
    "   ", "T T", "T T",
    'T', MCEnrichment.baconiteIngot,
});

GameRegistry.addRecipe(new ItemStack(baconiteLeggings), new Object[] {
    "TTT", "T T", "T T",
    'T', MCEnrichment.baconiteIngot,
});

GameRegistry.addRecipe(new ItemStack(baconiteHelmet), new Object[] {
    "TTT", "T T",
    'T', MCEnrichment.baconiteIngot,
});

GameRegistry.addRecipe(new ItemStack(baconiteChestplate), new Object[] {
    "T T", "TTT", "TTT",
    'T', MCEnrichment.baconiteIngot,
});

GameRegistry.addRecipe(new ItemStack(sapphireBoots), new Object[] {
    "   ", "T T", "T T",
    'T', MCEnrichment.sapphire,
});

GameRegistry.addRecipe(new ItemStack(sapphireLeggings), new Object[] {
    "TTT", "T T", "T T",
    'T', MCEnrichment.sapphire,
});

GameRegistry.addRecipe(new ItemStack(sapphireHelmet), new Object[] {
    "TTT", "T T",
    'T', MCEnrichment.sapphire,
});

GameRegistry.addRecipe(new ItemStack(sapphireChestplate), new Object[] {
    "T T", "TTT", "TTT",
    'T', MCEnrichment.sapphire,
});

GameRegistry.addRecipe(new ItemStack(pickBaconite), new Object[] {
    "TTT", " X ", " X ",
    'T', MCEnrichment.baconiteIngot, 'X', Item.stick
});

GameRegistry.addRecipe(new ItemStack(hoeBaconite), new Object[] {
    "TT ", " X ", " X ",
    'T', MCEnrichment.baconiteIngot, 'X', Item.stick
});

GameRegistry.addRecipe(new ItemStack(axeBaconite), new Object[] {
    "TT ", "TX ", " X ",
    'T', MCEnrichment.baconiteIngot, 'X', Item.stick
});

GameRegistry.addRecipe(new ItemStack(swordBaconite), new Object[] {
    " T ", " T ", " X ",
    'T', MCEnrichment.baconiteIngot, 'X', Item.stick
});

GameRegistry.addRecipe(new ItemStack(shovelBaconite), new Object[] {
    " T ", " X ", " X ",
    'T', MCEnrichment.baconiteIngot, 'X', Item.stick
});

GameRegistry.addRecipe(new ItemStack(pickSapphire), new Object[] {
    "TTT", " X ", " X ",
    'T', MCEnrichment.sapphire , 'X', Item.stick
});

GameRegistry.addRecipe(new ItemStack(hoeSapphire), new Object[] {
    "TT ", " X ", " X ",
    'T', MCEnrichment.sapphire, 'X', Item.stick
});

GameRegistry.addRecipe(new ItemStack(axeSapphire), new Object[] {
    "TT ", "TX ", " X ",
    'T', MCEnrichment.sapphire, 'X', Item.stick
});

GameRegistry.addRecipe(new ItemStack(swordSapphire), new Object[] {
    " T ", " T ", " X ",
    'T', MCEnrichment.sapphire, 'X', Item.stick
});

GameRegistry.addRecipe(new ItemStack(shovelSapphire), new Object[] {
    " T ", " X ", " X ",
    'T', MCEnrichment.sapphire, 'X', Item.stick

});


GameRegistry.addRecipe(new ItemStack(pickAmethyst), new Object[] {
    "TTT", " X ", " X ",
    'T', MCEnrichment.amethyst , 'X', Item.stick
});

GameRegistry.addRecipe(new ItemStack(hoeAmethyst), new Object[] {
    "TT ", " X ", " X ",
    'T', MCEnrichment.amethyst, 'X', Item.stick
});

GameRegistry.addRecipe(new ItemStack(axeAmethyst), new Object[] {
    "TT ", "TX ", " X ",
    'T', MCEnrichment.amethyst, 'X', Item.stick
});

GameRegistry.addRecipe(new ItemStack(swordAmethyst), new Object[] {
    " T ", " T ", " X ",
    'T', MCEnrichment.amethyst, 'X', Item.stick
});

GameRegistry.addRecipe(new ItemStack(shovelAmethyst), new Object[] {
    " T ", " X ", " X ",
    'T', MCEnrichment.amethyst, 'X', Item.stick

});


GameRegistry.addRecipe(new ItemStack(bowBaconite), new Object[] {
    " XT", "X T", " XT",
    'X', MCEnrichment.baconiteIngot, 'T', Item.silk
});

GameRegistry.addRecipe(new ItemStack(baconCutter), new Object[] {
    "   ", " T ", "X  ",
    'T', Item.ingotIron, 'X', Item.stick
});
ItemStack(baconCutter.setContainerItem(baconCutter));
GameRegistry.addShapelessRecipe(new ItemStack(baconRaw, 1),
            new Object[] {
        Item.porkRaw, new ItemStack(baconCutter, 1, Short.MAX_VALUE)
});

GameRegistry.addShapelessRecipe(new ItemStack(woodSA, 1),
            new Object[] {
        Item.shears, Item.axeWood
});

GameRegistry.addShapelessRecipe(new ItemStack(stoneSA, 1),
            new Object[] {
        Item.shears, Item.axeStone
});

GameRegistry.addShapelessRecipe(new ItemStack(ironSA, 1),
            new Object[] {
        Item.shears, Item.axeIron
});

GameRegistry.addShapelessRecipe(new ItemStack(goldSA, 1),
            new Object[] {
        Item.shears, Item.axeGold
});

GameRegistry.addShapelessRecipe(new ItemStack(diamondSA, 1),
            new Object[] {
        Item.shears, Item.axeDiamond
});


GameRegistry.addShapelessRecipe(new ItemStack(amethystSA, 1),
            new Object[] {
        Item.shears, MCEnrichment.axeAmethyst
});

GameRegistry.addShapelessRecipe(new ItemStack(baconiteSA, 1),
            new Object[] {
        Item.shears, MCEnrichment.axeBaconite
});

GameRegistry.addShapelessRecipe(new ItemStack(obsidianSA, 1),
            new Object[] {
        Item.shears, MCEnrichment.axeObsidian
});

GameRegistry.addShapelessRecipe(new ItemStack(sapphireSA, 1),
            new Object[] {
        Item.shears, MCEnrichment.axeSapphire
});

GameRegistry.addRecipe(new ItemStack(rubyBoots), new Object[] {
    "   ", "T T", "T T",
    'T', MCEnrichment.ruby,
});

GameRegistry.addRecipe(new ItemStack(rubyLeggings), new Object[] {
    "TTT", "T T", "T T",
    'T', MCEnrichment.ruby,
});

GameRegistry.addRecipe(new ItemStack(rubyHelmet), new Object[] {
    "TTT", "T T",
    'T', MCEnrichment.ruby,
});

GameRegistry.addRecipe(new ItemStack(rubyChestplate), new Object[] {
    "T T", "TTT", "TTT",
    'T', MCEnrichment.ruby,
});

GameRegistry.addRecipe(new ItemStack(pickBaconite), new Object[] {
    "TTT", " X ", " X ",
    'T', MCEnrichment.baconiteIngot, 'X', Item.stick
});

GameRegistry.addRecipe(new ItemStack(hoeBaconite), new Object[] {
    "TT ", " X ", " X ",
    'T', MCEnrichment.baconiteIngot, 'X', Item.stick
});

GameRegistry.addRecipe(new ItemStack(axeBaconite), new Object[] {
    "TT ", "TX ", " X ",
    'T', MCEnrichment.baconiteIngot, 'X', Item.stick
});

GameRegistry.addRecipe(new ItemStack(swordBaconite), new Object[] {
    " T ", " T ", " X ",
    'T', MCEnrichment.baconiteIngot, 'X', Item.stick
});

GameRegistry.addRecipe(new ItemStack(shovelBaconite), new Object[] {
    " T ", " X ", " X ",
    'T', MCEnrichment.baconiteIngot, 'X', Item.stick
});

GameRegistry.addRecipe(new ItemStack(pickRuby), new Object[] {
    "TTT", " X ", " X ",
    'T', MCEnrichment.ruby, 'X', Item.stick
});

GameRegistry.addRecipe(new ItemStack(hoeRuby), new Object[] {
    "TT ", " X ", " X ",
    'T', MCEnrichment.ruby, 'X', Item.stick
});

GameRegistry.addRecipe(new ItemStack(axeRuby), new Object[] {
    "TT ", "TX ", " X ",
    'T', MCEnrichment.ruby, 'X', Item.stick
});

GameRegistry.addRecipe(new ItemStack(swordRuby), new Object[] {
    " T ", " T ", " X ",
    'T', MCEnrichment.ruby, 'X', Item.stick
});

GameRegistry.addRecipe(new ItemStack(shovelRuby), new Object[] {
    " T ", " X ", " X ",
    'T', MCEnrichment.ruby, 'X', Item.stick
});


GameRegistry.addRecipe(new ItemStack(pickObsidian), new Object[] {
    "TTT", " X ", " X ",
    'T', Block.obsidian, 'X', Item.stick
});

GameRegistry.addRecipe(new ItemStack(hoeObsidian), new Object[] {
    "TT ", " X ", " X ",
    'T', Block.obsidian, 'X', Item.stick
});

GameRegistry.addRecipe(new ItemStack(axeObsidian), new Object[] {
    "TT ", "TX ", " X ",
    'T', Block.obsidian, 'X', Item.stick
});

GameRegistry.addRecipe(new ItemStack(swordObsidian), new Object[] {
    " T ", " T ", " X ",
    'T', Block.obsidian, 'X', Item.stick
});

GameRegistry.addRecipe(new ItemStack(shovelObsidian), new Object[] {
    " T ", " X ", " X ",
    'T', Block.obsidian, 'X', Item.stick
});

GameRegistry.addRecipe(new ItemStack(obsidianBoots), new Object[] {
    "   ", "T T", "T T",
    'T', Block.obsidian,
});

GameRegistry.addRecipe(new ItemStack(obsidianLeggings), new Object[] {
    "TTT", "T T", "T T",
    'T', Block.obsidian,
});

GameRegistry.addRecipe(new ItemStack(obsidianHelmet), new Object[] {
    "TTT", "T T",
    'T', Block.obsidian,
});

GameRegistry.addRecipe(new ItemStack(obsidianChestplate), new Object[] {
    "T T", "TTT", "TTT",
    'T', Block.obsidian,
});


GameRegistry.addRecipe(new ItemStack(sapphireBoots), new Object[] {
    "   ", "T T", "T T",
    'T', MCEnrichment.sapphire,
});

GameRegistry.addRecipe(new ItemStack(sapphireLeggings), new Object[] {
    "TTT", "T T", "T T",
    'T', MCEnrichment.sapphire,
});

GameRegistry.addRecipe(new ItemStack(sapphireHelmet), new Object[] {
    "TTT", "T T",
    'T', MCEnrichment.sapphire,
});

GameRegistry.addRecipe(new ItemStack(sapphireChestplate), new Object[] {
    "T T", "TTT", "TTT",
    'T', MCEnrichment.sapphire,
});

GameRegistry.addRecipe(new ItemStack(amethystBoots), new Object[] {
    "   ", "T T", "T T",
    'T', MCEnrichment.amethyst,
});

GameRegistry.addRecipe(new ItemStack(amethystLeggings), new Object[] {
    "TTT", "T T", "T T",
    'T', MCEnrichment.amethyst,
});

GameRegistry.addRecipe(new ItemStack(amethystHelmet), new Object[] {
    "TTT", "T T",
    'T', MCEnrichment.amethyst,
});

GameRegistry.addRecipe(new ItemStack(amethystChestplate), new Object[] {
    "T T", "TTT", "TTT",
    'T', MCEnrichment.amethyst,
});

GameRegistry.addRecipe(new ItemStack(Block.cloth), new Object[] {
    "TTT", "TTT", "TTT",
    'T', Item.silk
});
}
public void addAchievementLocalizations() {
	addAchievementName("multiToolAcheve", "The Tool of All Tools");
	addAchievementDescription("multiToolAcheve", "Can you craft the mightiest of them all?");
}
public void addAchievementDescription(String par1String, String par2String) {
	LanguageRegistry.instance().addStringLocalization("achievement." + par1String + ".desc", "en_US", par2String);

}
public void addAchievementName(String par1String, String par2String) {
	LanguageRegistry.instance().addStringLocalization("achievement." + par1String, "en_US", par2String);

}
private void ItemStack(Item setContainerItem) {


}
}

 

Crafting Handler:

package mods.mcenrichment.common;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory;
import net.minecraft.item.ItemStack;
import cpw.mods.fml.common.ICraftingHandler;

public class ModCraftingHandler implements ICraftingHandler{

@Override
public void onCrafting(EntityPlayer player, ItemStack item, IInventory craftMatrix) {
if(item.itemID == MCEnrichment.paxcelBaconite.itemID){
player.addStat(MCEnrichment.multitoolAchievement, 1);
}
}
@Override
public void onSmelting(EntityPlayer player, ItemStack item) {
// TODO Auto-generated method stub
}
}

Link to comment
Share on other sites

Do you have a Client or Common Proxy?

 

You need to register your CraftingHandler.

If you don't have a Client/Common Proxy, go here.

Outdated, but working:

 

Add an @Init in your ClientProxy.

Then put this in:

 

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

 

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

    • java.lang.RuntimeException:null at net.minecraftforge.registries.GameData.postRegisterEvents(GameData.java:315) ~[forge-1.20.1-47.3.10-universal.jar%23329!/:?] {re:mixin,re:classloading,pl:mixin:APP:supermartijn642corelib.mixins.json:GameDataMixin,pl:mixin:A}at net.minecraftforge.common.ForgeStatesProvider.lambda$new$4(ForgeStatesProvider.java:25) ~[forge-1.20.1-47.3.10-universal.jar%23329!/:?] {re:classloading}at net.minecraftforge.fml.ModLoader.handleInlineTransition(ModLoader.java:217) ~[fmlcore-1.20.1-47.3.10.jar%23325!/:?] {}at net.minecraftforge.fml.ModLoader.lambda$dispatchAndHandleError$19(ModLoader.java:209) ~[fmlcore-1.20.1-47.3.10.jar%23325!/:?] {}at java.util.Optional.ifPresent(Optional.java:178) ~[?:?] {re:mixin}at net.minecraftforge.fml.ModLoader.dispatchAndHandleError(ModLoader.java:209) ~[fmlcore-1.20.1-47.3.10.jar%23325!/:?] {}at net.minecraftforge.fml.ModLoader.lambda$gatherAndInitializeMods$13(ModLoader.java:183) ~[fmlcore-1.20.1-47.3.10.jar%23325!/:?] {}at java.lang.Iterable.forEach(Iterable.java:75) ~[?:?] {re:mixin}at net.minecraftforge.fml.ModLoader.gatherAndInitializeMods(ModLoader.java:183) ~[fmlcore-1.20.1-47.3.10.jar%23325!/:?] {}at net.minecraftforge.client.loading.ClientModLoader.lambda$begin$1(ClientModLoader.java:69) ~[forge-1.20.1-47.3.10-universal.jar%23329!/:?] {re:classloading,pl:runtimedistcleaner:A}at net.minecraftforge.client.loading.ClientModLoader.lambda$createRunnableWithCatch$4(ClientModLoader.java:89) ~[forge-1.20.1-47.3.10-universal.jar%23329!/:?] {re:classloading,pl:runtimedistcleaner:A}at net.minecraftforge.client.loading.ClientModLoader.begin(ClientModLoader.java:69) ~[forge-1.20.1-47.3.10-universal.jar%23329!/:?] {re:classloading,pl:runtimedistcleaner:A}at net.minecraft.client.Minecraft.                Size    Insert image from URL
    • My Bitcoin Recovery Experience With  The Hack Angels.     I highly recommend the service of The Hack Angels to everyone who wishes to recover lost money either bitcoin or other cryptocurrencies from these online scammers, wallet hackers, or if you ever sent bitcoins to the wrong wallet address. I was able to recover my lost bitcoins from online swindlers in less than two days after contacting them. They are the best professional hackers out there and I’m truly thankful for their help in recovering all I lost. If you need their service too, here is their contact information.   Mail Box; support@thehackangels. com    (Web: https://thehackangels.com) Whats Ap; +1 520) - 200, 23  20
    • Temu Coupon Code $50 off [taa85211] or [tad85211] for New and Existing Users To get Temu $50 off Coupon Code [taa85211] or [tad85211] as a new user enter the Coupon during checkout when making your first purchase at Temu You will receive the benefit once the Coupon applied. TEMU App is a shopping platform that provides us with the best-branded items at Cheap prices. You will also notice that TEMU offers users to save extra by applying the TEMU Coupon Code during checkout. You can get $50 off Temu by using the Coupon Code “taa85211} or {tad85211} ”. Existing customers can use this code. Temu existing user Coupon Code: [taa85211} or {tad85211} Using Temu’s Coupon Code [taa85211} or {tad85211] will get you $50 off, access to exclusive deals, and benefits for additional savings. Save $50 off with Temu Coupon Codes. New and existing customer offers. What is Temu $50 Coupon Bundle? New Temu $50 Coupon bundle includes $50 worth of Temu Coupon Codes. The Temu $50 Coupon Code [taa85211} or {tad85211] can be used by new and existing Temu users to get a Coupon on their purchases. Temu $50 Coupon Bundle Code [taa85211} or {tad85211] Temu Coupon $50 off for existing customers There are a number of Coupons and deals shoppers can take advantage of with the Teemu Coupon Bundle [taa85211} or {tad85211]. Temu Coupon $50 off for existing customers"taa85211} or {tad85211" will save you $100 on your order. To get a Coupon, click on the item to purchase and enter the code. You can think of it as a supercharged savings pack for all your shopping needs Temu Coupon Code $50 off free shipping You will save $50 when you use Temu’s $50 OFF Coupon Code [taa85211} or {tad85211]. Enter the Coupon Code when purchasing an item How Does Temu $50 Coupon Work Temu’s $50 Coupon Code isn’t just one big Coupon you use all at once. Instead, think of it as a welcome package filled with different Coupons and offers worth $50. New customers are welcome. Temu Coupon Code $50 off Temu $40 OFF Coupon Code “taa85211} or {tad85211” will save you $50 on your order. To get a Coupon, click on the item to purchase and enter the code. Yes, Temu offers $50 off Coupon Code “taa85211} or {tad85211” for first time users. You can get a $50 bonus plus 30% off any purchase at Temu with the $40 Coupon Bundle at Temu if you sign up with the Coupon Code [taa85211} or {tad85211] and make a first purchase of $50 or more. How Do Apply Temu Coupon Code [taa85211} or {tad85211]? 1.Download the TEMU app and create a new account. 2.Fill in basic details to complete account verification. 3. Select the item you want to purchase and add it to your cart Minimum of $100. 4.Click on the Coupon Code option and enter the TEMU Coupon Code. 5.Once the Coupon has been applied, you will see the final Coupon. 6.P rice Select your payment method and complete your purchase. Temu Coupon Code $50 off first time user yes, If you’re a first-time user, Temu offers $50 off with Coupon Code “taa85211} or {tad85211” Temu offers first-time users a $50 Coupon. Here are some Temu Coupons! The fact that new users can benefit from such generous Coupons is great. How do you redeem Temu $50 Coupon Code? Yes, To redeem the Temu $50 Coupon Code, follow these steps: 1.Sign Up: If you haven’t already, sign up for a Temu account on their website or app. 2.Add Items to Cart: Browse through the products you’d like to purchase. Add items worth $50 or more to your cart. 3.Apply Coupon Code: During checkout, enter the Coupon Code “taa85211} or {tad85211” in the designated field. This will unlock the $50 Coupon bundle. You can also use the Coupon Code “taa85211} or {tad85211” when signing up to receive the same benefit. 4.Enjoy Savings: The Coupon will be applied, and you’ll enjoy additional savings on your purchase. Plus, you can combine this with other available Coupons, such as the 50% off code for fashion, home, and beauty categories.
    • Temu Coupon Code $50 off [taa85211] or [tad85211] for New and Existing Users To get Temu $50 off Coupon Code [taa85211] or [tad85211] as a new user enter the Coupon during checkout when making your first purchase at Temu You will receive the benefit once the Coupon applied. TEMU App is a shopping platform that provides us with the best-branded items at Cheap prices. You will also notice that TEMU offers users to save extra by applying the TEMU Coupon Code during checkout. You can get $50 off Temu by using the Coupon Code “taa85211} or {tad85211} ”. Existing customers can use this code. Temu existing user Coupon Code: [taa85211} or {tad85211} Using Temu’s Coupon Code [taa85211} or {tad85211] will get you $50 off, access to exclusive deals, and benefits for additional savings. Save $50 off with Temu Coupon Codes. New and existing customer offers. What is Temu $50 Coupon Bundle? New Temu $50 Coupon bundle includes $50 worth of Temu Coupon Codes. The Temu $50 Coupon Code [taa85211} or {tad85211] can be used by new and existing Temu users to get a Coupon on their purchases. Temu $50 Coupon Bundle Code [taa85211} or {tad85211] Temu Coupon $50 off for existing customers There are a number of Coupons and deals shoppers can take advantage of with the Teemu Coupon Bundle [taa85211} or {tad85211]. Temu Coupon $50 off for existing customers"taa85211} or {tad85211" will save you $100 on your order. To get a Coupon, click on the item to purchase and enter the code. You can think of it as a supercharged savings pack for all your shopping needs Temu Coupon Code $50 off free shipping You will save $50 when you use Temu’s $50 OFF Coupon Code [taa85211} or {tad85211]. Enter the Coupon Code when purchasing an item How Does Temu $50 Coupon Work Temu’s $50 Coupon Code isn’t just one big Coupon you use all at once. Instead, think of it as a welcome package filled with different Coupons and offers worth $50. New customers are welcome. Temu Coupon Code $50 off Temu $40 OFF Coupon Code “taa85211} or {tad85211” will save you $50 on your order. To get a Coupon, click on the item to purchase and enter the code. Yes, Temu offers $50 off Coupon Code “taa85211} or {tad85211” for first time users. You can get a $50 bonus plus 30% off any purchase at Temu with the $40 Coupon Bundle at Temu if you sign up with the Coupon Code [taa85211} or {tad85211] and make a first purchase of $50 or more. How Do Apply Temu Coupon Code [taa85211} or {tad85211]? 1.Download the TEMU app and create a new account. 2.Fill in basic details to complete account verification. 3. Select the item you want to purchase and add it to your cart Minimum of $100. 4.Click on the Coupon Code option and enter the TEMU Coupon Code. 5.Once the Coupon has been applied, you will see the final Coupon. 6.P rice Select your payment method and complete your purchase. Temu Coupon Code $50 off first time user yes, If you’re a first-time user, Temu offers $50 off with Coupon Code “taa85211} or {tad85211” Temu offers first-time users a $50 Coupon. Here are some Temu Coupons! The fact that new users can benefit from such generous Coupons is great. How do you redeem Temu $50 Coupon Code? Yes, To redeem the Temu $50 Coupon Code, follow these steps: 1.Sign Up: If you haven’t already, sign up for a Temu account on their website or app. 2.Add Items to Cart: Browse through the products you’d like to purchase. Add items worth $50 or more to your cart. 3.Apply Coupon Code: During checkout, enter the Coupon Code “taa85211} or {tad85211” in the designated field. This will unlock the $50 Coupon bundle. You can also use the Coupon Code “taa85211} or {tad85211” when signing up to receive the same benefit. 4.Enjoy Savings: The Coupon will be applied, and you’ll enjoy additional savings on your purchase. Plus, you can combine this with other available Coupons, such as the 50% off code for fashion, home, and beauty categories.
    • Temu Coupon Code $50 off [taa85211] or [tad85211] for New and Existing Users To get Temu $50 off Coupon Code [taa85211] or [tad85211] as a new user enter the Coupon during checkout when making your first purchase at Temu You will receive the benefit once the Coupon applied. TEMU App is a shopping platform that provides us with the best-branded items at Cheap prices. You will also notice that TEMU offers users to save extra by applying the TEMU Coupon Code during checkout. You can get $50 off Temu by using the Coupon Code “taa85211} or {tad85211} ”. Existing customers can use this code. Temu existing user Coupon Code: [taa85211} or {tad85211} Using Temu’s Coupon Code [taa85211} or {tad85211] will get you $50 off, access to exclusive deals, and benefits for additional savings. Save $50 off with Temu Coupon Codes. New and existing customer offers. What is Temu $50 Coupon Bundle? New Temu $50 Coupon bundle includes $50 worth of Temu Coupon Codes. The Temu $50 Coupon Code [taa85211} or {tad85211] can be used by new and existing Temu users to get a Coupon on their purchases. Temu $50 Coupon Bundle Code [taa85211} or {tad85211] Temu Coupon $50 off for existing customers There are a number of Coupons and deals shoppers can take advantage of with the Teemu Coupon Bundle [taa85211} or {tad85211]. Temu Coupon $50 off for existing customers"taa85211} or {tad85211" will save you $100 on your order. To get a Coupon, click on the item to purchase and enter the code. You can think of it as a supercharged savings pack for all your shopping needs Temu Coupon Code $50 off free shipping You will save $50 when you use Temu’s $50 OFF Coupon Code [taa85211} or {tad85211]. Enter the Coupon Code when purchasing an item How Does Temu $50 Coupon Work Temu’s $50 Coupon Code isn’t just one big Coupon you use all at once. Instead, think of it as a welcome package filled with different Coupons and offers worth $50. New customers are welcome. Temu Coupon Code $50 off Temu $40 OFF Coupon Code “taa85211} or {tad85211” will save you $50 on your order. To get a Coupon, click on the item to purchase and enter the code. Yes, Temu offers $50 off Coupon Code “taa85211} or {tad85211” for first time users. You can get a $50 bonus plus 30% off any purchase at Temu with the $40 Coupon Bundle at Temu if you sign up with the Coupon Code [taa85211} or {tad85211] and make a first purchase of $50 or more. How Do Apply Temu Coupon Code [taa85211} or {tad85211]? 1.Download the TEMU app and create a new account. 2.Fill in basic details to complete account verification. 3. Select the item you want to purchase and add it to your cart Minimum of $100. 4.Click on the Coupon Code option and enter the TEMU Coupon Code. 5.Once the Coupon has been applied, you will see the final Coupon. 6.P rice Select your payment method and complete your purchase. Temu Coupon Code $50 off first time user yes, If you’re a first-time user, Temu offers $50 off with Coupon Code “taa85211} or {tad85211” Temu offers first-time users a $50 Coupon. Here are some Temu Coupons! The fact that new users can benefit from such generous Coupons is great. How do you redeem Temu $50 Coupon Code? Yes, To redeem the Temu $50 Coupon Code, follow these steps: 1.Sign Up: If you haven’t already, sign up for a Temu account on their website or app. 2.Add Items to Cart: Browse through the products you’d like to purchase. Add items worth $50 or more to your cart. 3.Apply Coupon Code: During checkout, enter the Coupon Code “taa85211} or {tad85211” in the designated field. This will unlock the $50 Coupon bundle. You can also use the Coupon Code “taa85211} or {tad85211” when signing up to receive the same benefit. 4.Enjoy Savings: The Coupon will be applied, and you’ll enjoy additional savings on your purchase. Plus, you can combine this with other available Coupons, such as the 50% off code for fashion, home, and beauty categories.
  • Topics

×
×
  • Create New...

Important Information

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