Jump to content

Recommended Posts

Posted

Hey there!

 

I'm currently looking through registry events, and I'm confused at which I should be using for what reason. Let's say I've made a custom item. Currently, I have the registration happening in my ClientProxy's PostInit(), being called on the FMLPostInitializationEvent. I was told that I should be doing the registering in a register event. I've come across two different events that seem applicable to me, so I'd like to know the best practice.

 

The first is the RegistryEvent.Register<Item>. The second is ModelRegistryEvent. I'm not too sure which to use. If I had to guess, I'd say just go with the latter, but I want to make sure I follow the best practice. And in that spirit, here's the code I'm using to register my items (in case you'd like to offer some advice here as well. I have those 2 other return statements commented out because my texture isn't being loaded and I'm trying to figure out why). Any help is greatly appreciated :D

 

Code: http://pastebin.com/jSQkPTjM

Posted

Items, blocks, and models need to be registered in PreInit and only PreInit.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

And you should use

ModelLoader.setCustomModelResourceLocation

instead of

ItemModelMesher#register

(in preInit).

 

For the events, they are new, I haven't seen anybody use it yet.

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Posted

Okay, thanks! I'll give this a shot. Piggy backing off of this, off the top of your head, would you know what int value to use as metaData in ModelLoader.setCustomModelResourceLocation?

Posted

Items, blocks, and models need to be registered in PreInit and only PreInit.

No.

We specifically added the 'RegistryEvent.Register<Type>' events to clean up this confusion. Create and register your items/blocks in THIS EVENT ONLY.

 

The ModelRegistryEvent is for registering Models as they are not standard FML controlled registries.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Posted

Okay, thanks guys. The events seemed like a cleaner way to do it, I just wasn't sure what to use since when you register an item, aren't you also registering its model (getItemModelMesher or ModelResourceLocation)? That's also part of what threw me off. But I appreciate all the help so far!

Posted

We specifically added the 'RegistryEvent.Register<Type>' events to clean up this confusion. Create and register your items/blocks in THIS EVENT ONLY.

 

Well thanks for letting the community know, Lex.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

Items, blocks, and models need to be registered in PreInit and only PreInit.

No.

We specifically added the 'RegistryEvent.Register<Type>' events to clean up this confusion. Create and register your items/blocks in THIS EVENT ONLY.

 

The ModelRegistryEvent is for registering Models as they are not standard FML controlled registries.

 

I know you're the head honcho, but if you have a moment: I created the listener and all is dandy so far. But all I have to do is

event.getRegistry.register(item)

? Or would I also need to still

getItemModelMesher().register()

(or alternatively, as told to me previously in this thread)

ModelLoader.setCustomModelResourceLocation(item, someIntForSomething, new ModelResourceLocation(...)

 

As always, any guidance is greatly appreciated! :D

Posted

If you do custom models you could probably get away with doing it during the Register<Item> event.

Or the ModelRegistryEvent's

 

As I said, the model reigstry isnt a normal registry do it doesnt get its own event, but you could bundle it together with Item. As thats where you're creating your item.

Or if you want, do it in init, it really doesnt matter as long as its after the Register event.

 

 

@Draco, It was publicized when created, it was announced on twitter, it even had a page in our docs, don't get all snippy because you didn't see it.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Posted

If you do custom models you could probably get away with doing it during the Register<Item> event.

Or the ModelRegistryEvent's

 

As I said, the model reigstry isnt a normal registry do it doesnt get its own event, but you could bundle it together with Item. As thats where you're creating your item.

Or if you want, do it in init, it really doesnt matter as long as its after the Register event.

 

 

@Draco, It was publicized when created, it was announced on twitter, it even had a page in our docs, don't get all snippy because you didn't see it.

 

Okay, thank you! I've moved everything into the Register<Item> event now. I think this is my last question (until I reach the next road bump in the YouTube tutorial series I'm following). I put it in another thread even though I do think it's somewhat related to this. If you could offer a bit of insight there, that'd be great. But either way, I appreciate your time.

 

The other thread (having to do with 'missing' JSON files): http://www.minecraftforge.net/forum/index.php?topic=43043.0

Posted

@Draco, It was publicized when created, it was announced on twitter, it even had a page in our docs, don't get all snippy because you didn't see it.

 

I wasn't actually.

 

But that said, I don't use social media.  It is the worst way to receive info ever conceived.  I mean, yes, if I want information from a specific feed I can go there, but I don't always know I need to go there.

 

As for the docs, do you mean at http://mcforge.readthedocs.io? Because I'm not seeing it currently (then again your post said "had" so maybe it was there and isn't now for...some reason?) Honestly genuinely curious as to where you are referring to so I can read up on how it works.

 

Edit:

it was announced on twitter

Ok, now I'm going to be pedantic and snippy:

There are no tweets from @ForgeDevTeam about this feature.  In fact, of 10 tweets the account has supposedly made, only 6 are even shown, one of which is "first" and another is "What is this "twit" thing?"

 

I'm actually trying to locate the information about this new registration event system and can't.  Heck, even searching these forums for "RegistryEvent" returns 4 threads:

  • This one.
  • A one from a week ago asking what the hell it is for.
  • One from earlier today that I am not reading because the poster providing help is overtly hostile to receiving help himself.
  • Another one from a week ago where someone was having unrelated JSON issues (and their code contained the event).

 

The announcement post in the Releases subsection doesn't show up because it doesn't refer to the event by name, just concept ("new LifeCycle events") with no links to additional information just a "please use this" note.

 

I'm not trying to make your life difficult I'm just bewildered about how I am unable to locate the information you stated as being highly visible.  If I'm looking in the wrong places, then maybe that information needs to be posted to those places.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

The comments on this are really confusing to me and don't make a lick of sense.

 

Been messing around with forge for months now and I still don't know how to add blocks to the game. Entities and items all day long.

 

Now if I go to learn it or something or go to gather information all the info is going to be wrong because it was changed or something or what?

There is no documentation of how to add blocks, I can't find any.

 

If there was I'd be able to add blocks in my mods, because I would have read the proper way to do it and implemented it right. Instead of half guessing at something, implementing it wrong, then acting like thats ok.

 

wth is going on with the blocks... and how do I make one the *right* way? I'd really like to know myself.

 

Is this video doing it correctly?

 

 

If not I'm not even going to bother with it because its too much crap.

Posted

Registering blocks is as simple as items:

 

Subscribe to

RegistryEvent.Register<Block>

and then use the registry in the event to register your blocks.

 

I highly disagree. Because blocks are not items.

Posted

 

RegistryEvent.Register<Block>

 

That's what I'm not getting.

 

RegistryEvent.Register<Block>?

 

Where exactly would I put this?

@Mod(modid = Reference.MOD_ID, name = Reference.MOD_NAME, version = Reference.MOD_VERSION)
public class Guru
{
@SidedProxy(clientSide = Reference.CLIENT_PROXY_CLASS, serverSide = Reference.SERVER_PROXY_CLASS)
public static CommonProxy proxy;
@Instance(Reference.MOD_ID)
private static Guru instance;
@EventHandler
public void preInit(FMLPreInitializationEvent event)
{
	ModCreativeTabs.load();
	proxy.preInit();
	GuruItems.init();
	GuruItems.register();
	GuruEntities.registerEntities();
	initRecipes();
}
    @EventHandler
    public void init(FMLInitializationEvent event)
    { 
	proxy.registerRenders();
        proxy.registerKeybindings();
        NetworkRegistry.INSTANCE.registerGuiHandler(instance, proxy);
    }	
private static void initRecipes()
{
	GameRegistry.addRecipe(new ItemStack(GuruItems.AIR_ORB), new Object[] {" X ", "X X", " X ", 'X', Items.FEATHER});
	GameRegistry.addRecipe(new ItemStack(GuruItems.WATER_ORB), new Object[] {" X ",  "X X", " X ", 'X', Items.WATER_BUCKET});
	GameRegistry.addRecipe(new ItemStack(GuruItems.EARTH_ORB), new Object[] {" X ",  "X X", " X ", 'X', Item.getItemFromBlock(Blocks.DIRT)});
	GameRegistry.addRecipe(new ItemStack(GuruItems.FIRE_ORB), new Object[] {" X ",  "X X", " X ", 'X', Items.LAVA_BUCKET});
	GameRegistry.addRecipe(new ItemStack(GuruItems.NETHER_ORB), new Object[] {" X ",  "X X", " X ", 'X', Item.getItemFromBlock(Blocks.OBSIDIAN)});
}
public static Guru getInstance()
{
	return instance;
}
}

 

 

 

 

This is how I have my items set up:

public class GuruItems
{
public static Item AIR_ORB;
public static Item WATER_ORB;
public static Item EARTH_ORB;
public static Item FIRE_ORB;
public static Item NETHER_ORB;
public static Item INVISIBLE_ORB;
public static Item CREATIVE_ORB;

public static void init()
{
	Item item = (new ItemBucket(Blocks.AIR)).setUnlocalizedName("bucket").setMaxStackSize(16);
	AIR_ORB = new ItemAirOrb().setUnlocalizedName("air_orb").setMaxStackSize(64).setCreativeTab(ModCreativeTabs.the_basic_elements);
	WATER_ORB = new ItemWaterOrb().setUnlocalizedName("water_orb").setContainerItem(item).setMaxStackSize(64).setCreativeTab(ModCreativeTabs.the_basic_elements);
	EARTH_ORB = new ItemEarthOrb().setUnlocalizedName("earth_orb").setMaxStackSize(64).setCreativeTab(ModCreativeTabs.the_basic_elements);
	FIRE_ORB = new ItemFireOrb().setUnlocalizedName("fire_orb").setContainerItem(item).setMaxStackSize(64).setCreativeTab(ModCreativeTabs.the_basic_elements);
	NETHER_ORB = new ItemNetherOrb().setUnlocalizedName("nether_orb").setMaxStackSize(64).setCreativeTab(ModCreativeTabs.the_basic_elements);
	INVISIBLE_ORB = new ItemInvisibleOrb().setUnlocalizedName("invisible_orb").setMaxStackSize(64).setCreativeTab(ModCreativeTabs.the_basic_elements);
	CREATIVE_ORB = new ItemCreativeOrb().setUnlocalizedName("creative_orb").setMaxStackSize(64).setCreativeTab(ModCreativeTabs.the_basic_elements);
}
public static void register()
{
	GameRegistry.register(AIR_ORB.setRegistryName ("air_orb"));
	GameRegistry.register(WATER_ORB.setRegistryName ("water_orb"));
	GameRegistry.register(EARTH_ORB.setRegistryName ("earth_orb"));
	GameRegistry.register(FIRE_ORB.setRegistryName ("fire_orb"));
	GameRegistry.register(NETHER_ORB.setRegistryName ("nether_orb"));
	GameRegistry.register(INVISIBLE_ORB.setRegistryName ("invisible_orb"));
	GameRegistry.register(CREATIVE_ORB.setRegistryName ("creative_orb"));
}
public static void registerRenders()
{
	registerRender(AIR_ORB);
	registerRender(WATER_ORB);
	registerRender(EARTH_ORB);
	registerRender(FIRE_ORB);
	registerRender(NETHER_ORB);
	registerRender(INVISIBLE_ORB);
	registerRender(CREATIVE_ORB);
}
private static void registerRender(Item item)
{
	Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(item, 0, new ModelResourceLocation(Reference.MOD_ID + ":" + item.getUnlocalizedName().substring(5), "inventory"));
}
}

Posted

That's what I'm not getting.

 

RegistryEvent.Register<Block>?

 

Where exactly would I put this?

You subscribe to it like a normal event. Note that you will either have to use the new
@EventBusSubscriber

annotation (cleaner) or register your event handler in your mod's constructor, because these events are fired before preInit.

 

private static void registerRender(Item item)

{

Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(item, 0, new ModelResourceLocation(Reference.MOD_ID + ":" + item.getUnlocalizedName().substring(5), "inventory"));

}

}

This is outdated and problematic. You should be registering models using
ModelLoader.setCustomModelResourceLocation

(equivalent to your current method) during

ModelRegistryEvent

.

 

 

There needs to be a friggin guide for this... this is what I'm talking about. Its crap. Like a attending communion of aliens or something. How am I supposed to know if something is outdated if its not deprecated? Clean code is not possible without a way of knowing wth it looks like or knowing that something changed.

Posted

There needs to be a friggin guide for this...
Being worked on already.

 

How am I supposed to know if something is outdated if its not deprecated?
This I agree with, the methods in GameRegistry should be deprecated.

 

 

If it turns out to be in English I'd be happy.

This registry registers registries with `ResourceLocation` names; additionally, it registers registries to `Class` keys. This allows one to look up the registry that registers a certain class (e.g. one can look up `Block.class` in the registry registry with `GameRegistry.findRegistry` to get the registry that registers blocks).

 

^ say that 5 times real fast

Posted

Also, why this?

for (Field f : Items.class.getDeclaredFields())

 

One shouldn't have to use reflection to register blocks/items/models IMO

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

Also, is that the exact way we should be structuring our mods?

 

I have taken a different approach: giving the

Mod.EventBusSubscriber

annotation to

CommonProxy

, and

Mod.EventBusSubscriber(Side.CLIENT)

and

SideOnly(Side.CLIENT)

annotations to

ClientProxy

, the providing each with the necessary events.

 

It works (at least it does not crash when I launch clients or servers).

 

Or maybe I am being an idiot and should just do what was suggested.

Posted
EDIT: Also, @SideOnly(CLIENT) - is this not "forbidden"?
I know what I'm doing, and why i'm doing it. You guys shoulnt use it no.

One shouldn't have to use reflection to register blocks/items/models IMO
Its how I felt like designing my code. If you don't want to do it nothing is forcing you to.

Its meant to be a reference of what to register in each event not HOW to register it.

Also, is that the exact way we should be structuring our mods?

No, you can do it however you want this is just a answer of how to use these events and a few examples of other registry related Forge features.

You can layout your code and do it however you want.

Just register the right things at the right events.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Posted

So far I've removed all original blocks and replaced them with an example_block.

I have been able to rename the block with a lang file.

 

And now I'm on to the setting textures part or having a custom json model part...

Since the get go I've been working with pink and black blocks and haven't been able to get it to be textured.

 

I'm looking here:

{
  "forge_marker": 1,
  "defaults": {
    "textures": {
      "all": "blocks/bookshelf"
    }
  },
  "variants": {
    "normal":    [{ "model": "cube_all"}],
    "inventory": [{ "model": "cube_all"}]
  }
}

 

at the energy cell blockstate. But when running it originally the energy cell was black and pink as well without any textures. First time I ran it I got 3 pink and black blocks with no item orientation and no functionality (from what I could tell) each of them had a terribly long name when in game. There was a grid rendered by one of the 3 blocks when placed on the ground though.

 

I'm getting somewhere with this... so that's cool. Just Not totally certain how to go about custom jsons and textures....

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

    • im having another issue with a new modpack im making and it crashes on start did the false thing again but still crashes on start   ---- Minecraft Crash Report ---- WARNING: coremods are present:   MalisisSwitchesPlugin (malisisswitches-1.12.2-5.1.0.jar)   LoadingPlugin (RandomThings-MC1.12.2-4.2.7.4.jar)   IELoadingPlugin (ImmersiveEngineering-core-0.12-98.jar)   EngineersDoorsLoadingPlugin (engineers_doors-1.12.2-0.9.1.jar)   RandomPatches (randompatches-1.12.2-1.22.1.10.jar)   Aqua Acrobatics Transformer (AquaAcrobatics-1.15.4.jar)   ForgelinPlugin (Forgelin-1.8.4.jar)   clothesline-hooks (clothesline-hooks-1.12.2-0.0.1.2.jar)   MekanismCoremod (Mekanism-1.12.2-9.8.3.390.jar)   OpenModsCorePlugin (OpenModsLib-1.12.2-0.12.2.jar)   CXLibraryCore (cxlibrary-1.12.1-1.6.1.jar)   Quark Plugin (Quark-r1.6-179.jar)   ObfuscatePlugin (obfuscate-0.4.2-1.12.2.jar)   CTMCorePlugin (CTM-MC1.12.2-1.0.2.31.jar)   UniDictCoreMod (UniDict-1.12.2-3.0.10.jar)   EnderCorePlugin (EnderCore-1.12.2-0.5.78-core.jar)   Plugin (NotEnoughIDs-1.5.4.4.jar)   Inventory Tweaks Coremod (InventoryTweaks-1.63.jar)   MixinBooter (!mixinbooter-10.6.jar)   SecurityCraftLoadingPlugin ([1.12.2] SecurityCraft v1.10.jar)   SecretRoomsMod-Core (secretroomsmod-1.12.2-5.6.4.jar)   LoadingPlugin (ResourceLoader-MC1.12.1-1.5.3.jar)   MalisisCorePlugin (malisiscore-1.12.2-6.5.1.jar) Contact their authors BEFORE contacting forge // Shall we play a game? Time: 7/10/25 12:58 PM Description: There was a severe problem during mod loading that has caused the game to fail net.minecraftforge.fml.common.LoaderException: java.lang.ExceptionInInitializerError     at net.shadowfacts.forgelin.ForgelinAutomaticEventSubscriber.subscribeAutomatic(ForgelinAutomaticEventSubscriber.kt:74)     at net.shadowfacts.forgelin.Forgelin.onPreInit(Forgelin.kt:22)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:637)     at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91)     at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150)     at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76)     at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399)     at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71)     at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116)     at com.google.common.eventbus.EventBus.post(EventBus.java:217)     at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219)     at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91)     at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150)     at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76)     at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399)     at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71)     at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116)     at com.google.common.eventbus.EventBus.post(EventBus.java:217)     at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136)     at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:629)     at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:252)     at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:467)     at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:378)     at net.minecraft.client.main.Main.main(SourceFile:123)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)     at net.minecraft.launchwrapper.Launch.main(Launch.java:28) Caused by: java.lang.ExceptionInInitializerError     at sun.misc.Unsafe.ensureClassInitialized(Native Method)     at sun.reflect.UnsafeFieldAccessorFactory.newFieldAccessor(UnsafeFieldAccessorFactory.java:43)     at sun.reflect.ReflectionFactory.newFieldAccessor(ReflectionFactory.java:142)     at java.lang.reflect.Field.acquireFieldAccessor(Field.java:1088)     at java.lang.reflect.Field.getFieldAccessor(Field.java:1069)     at java.lang.reflect.Field.get(Field.java:393)     at kotlin.reflect.jvm.internal.KClassImpl$Data$objectInstance$2.invoke(KClassImpl.kt:128)     at kotlin.SafePublicationLazyImpl.getValue(LazyJVM.kt:107)     at kotlin.reflect.jvm.internal.KClassImpl$Data.getObjectInstance(KClassImpl.kt:119)     at kotlin.reflect.jvm.internal.KClassImpl.getObjectInstance(KClassImpl.kt:253)     at net.shadowfacts.forgelin.ForgelinAutomaticEventSubscriber.subscribeAutomatic(ForgelinAutomaticEventSubscriber.kt:59)     ... 41 more Caused by: java.lang.IllegalArgumentException: Cannot create a fluidstack from an unregistered fluid     at net.minecraftforge.fluids.FluidStack.<init>(FluidStack.java:54)     at net.minecraftforge.fluids.BlockFluidClassic.<init>(BlockFluidClassic.java:63)     at net.minecraftforge.fluids.BlockFluidClassic.<init>(BlockFluidClassic.java:68)     at com.jozufozu.exnihiloomnia.common.blocks.BlockFluidWitchWater.<init>(BlockFluidWitchWater.kt:20)     at com.jozufozu.exnihiloomnia.common.blocks.ExNihiloBlocks.<clinit>(ExNihiloBlocks.kt:37)     ... 52 more No Mixin Metadata is found in the Stacktrace. A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details:     Minecraft Version: 1.12.2     Operating System: Windows 10 (amd64) version 10.0     Java Version: 1.8.0_51, Oracle Corporation     Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation     Memory: 3194690224 bytes (3046 MB) / 4560257024 bytes (4349 MB) up to 10468982784 bytes (9984 MB)     JVM Flags: 3 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx11232m -Xms256m     IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0     FML: MCP 9.42 Powered by Forge 14.23.5.2860 287 mods loaded, 287 mods active     States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored     | State | ID                                | Version                                                        | Source                                               | Signature                                |     |:----- |:--------------------------------- |:-------------------------------------------------------------- |:---------------------------------------------------- |:---------------------------------------- |     | LCH   | minecraft                         | 1.12.2                                                         | minecraft.jar                                        | None                                     |     | LCH   | mcp                               | 9.42                                                           | minecraft.jar                                        | None                                     |     | LCH   | FML                               | 8.0.99.99                                                      | forge-1.12.2-14.23.5.2860.jar                        | e3c3d50c7c986df74c645c0ac54639741c90a557 |     | LCH   | forge                             | 14.23.5.2860                                                   | forge-1.12.2-14.23.5.2860.jar                        | e3c3d50c7c986df74c645c0ac54639741c90a557 |     | LCH   | mixinbooter                       | 10.6                                                           | minecraft.jar                                        | None                                     |     | LCH   | openmodscore                      | 0.12.2                                                         | minecraft.jar                                        | None                                     |     | LCH   | obfuscate                         | 0.4.2                                                          | minecraft.jar                                        | None                                     |     | LCH   | srm-hooks                         | 1.12.2-1.0.0                                                   | minecraft.jar                                        | None                                     |     | LCH   | clothesline-hooks                 | 1.12.2-0.0.1.2                                                 | minecraft.jar                                        | None                                     |     | LCH   | randompatches                     | 1.12.2-1.22.1.10                                               | randompatches-1.12.2-1.22.1.10.jar                   | None                                     |     | LCH   | freecam                           | 2.0.0                                                          | zergatul.freecam-2.0.0-forge-1.12.2.jar              | None                                     |     | LCH   | essential                         | 1.0.0                                                          | Essential (forge_1.12.2).processed.jar               | None                                     |     | LCH   | securitycraft                     | v1.10                                                          | [1.12.2] SecurityCraft v1.10.jar                     | None                                     |     | LCH   | trop                              | 24.07.19                                                       | [1.12.2] The Rings of Power 24.07.19 (Forge).jar     | None                                     |     | LCH   | actuallyadditions                 | 1.12.2-r152                                                    | ActuallyAdditions-1.12.2-r152.jar                    | None                                     |     | LCH   | baubles                           | 1.5.2                                                          | Baubles-1.12-1.5.2.jar                               | None                                     |     | LCH   | actuallybaubles                   | 1.1                                                            | ActuallyBaubles-1.12-1.1.jar                         | None                                     |     | LCH   | additional_lights                 | 1.12.2-1.2.1                                                   | additional_lights-1.12.2-1.2.1.jar                   | None                                     |     | LCH   | ctm                               | MC1.12.2-1.0.2.31                                              | CTM-MC1.12.2-1.0.2.31.jar                            | None                                     |     | LCH   | appliedenergistics2               | rv6-stable-7                                                   | appliedenergistics2-rv6-stable-7.jar                 | dfa4d3ac143316c6f32aa1a1beda1e34d42132e5 |     | LCH   | endercore                         | 1.12.2-0.5.78                                                  | EnderCore-1.12.2-0.5.78.jar                          | None                                     |     | LCH   | crafttweaker                      | 4.1.20                                                         | CraftTweaker2-1.12-4.1.20.704.jar                    | None                                     |     | LCH   | jei                               | 4.16.1.301                                                     | jei_1.12.2-4.16.1.301.jar                            | None                                     |     | LCH   | codechickenlib                    | 3.2.3.358                                                      | CodeChickenLib-1.12.2-3.2.3.358-universal.jar        | f1850c39b2516232a2108a7bd84d1cb5df93b261 |     | LCH   | redstoneflux                      | 2.1.1                                                          | RedstoneFlux-1.12-2.1.1.1-universal.jar              | None                                     |     | LCH   | cofhcore                          | 4.6.6                                                          | CoFHCore-1.12.2-4.6.6.1-universal.jar                | None                                     |     | LCH   | cofhworld                         | 1.4.0                                                          | CoFHWorld-1.12.2-1.4.0.1-universal.jar               | None                                     |     | LCH   | thermalfoundation                 | 2.6.7                                                          | ThermalFoundation-1.12.2-2.6.7.1-universal.jar       | None                                     |     | LCH   | thermalexpansion                  | 5.5.7                                                          | ThermalExpansion-1.12.2-5.5.7.1-universal.jar        | None                                     |     | LCH   | enderio                           | 5.3.72                                                         | EnderIO-1.12.2-5.3.72.jar                            | None                                     |     | LCH   | mantle                            | 1.12-1.3.3.55                                                  | Mantle-1.12-1.3.3.55.jar                             | None                                     |     | LCH   | projecte                          | 1.12.2-PE1.4.1                                                 | ProjectE-1.12.2-PE1.4.1.jar                          | None                                     |     | LCH   | chisel                            | MC1.12.2-1.0.2.45                                              | Chisel-MC1.12.2-1.0.2.45.jar                         | None                                     |     | LCH   | enderiointegrationtic             | 5.3.72                                                         | EnderIO-1.12.2-5.3.72.jar                            | None                                     |     | LCH   | quark                             | r1.6-179                                                       | Quark-r1.6-179.jar                                   | None                                     |     | LCH   | tconstruct                        | 1.12.2-2.13.0.183                                              | TConstruct-1.12.2-2.13.0.183.jar                     | None                                     |     | LCH   | p455w0rdslib                      | 2.3.161                                                        | p455w0rdslib-1.12.2-2.3.161.jar                      | 186bc454cd122c9c2f1aa4f95611254bcc543363 |     | LCH   | ae2wtlib                          | 1.0.34                                                         | AE2WTLib-1.12.2-1.0.34.jar                           | 186bc454cd122c9c2f1aa4f95611254bcc543363 |     | LCE   | forgelin                          | 1.8.4                                                          | Forgelin-1.8.4.jar                                   | None                                     |     | LC    | waila                             | 1.8.26                                                         | Hwyla-1.8.26-B41_1.12.2.jar                          | None                                     |     | LC    | buildcraftlib                     | 8.0.0                                                          | buildcraft-core-8.0.0.jar                            | None                                     |     | LC    | buildcraftcore                    | 8.0.0                                                          | buildcraft-core-8.0.0.jar                            | None                                     |     | LC    | mekanism                          | 1.12.2-9.8.3.390                                               | Mekanism-1.12.2-9.8.3.390.jar                        | None                                     |     | LC    | aeadditions                       | 1.3.8                                                          | AEAdditions-1.12.2-1.3.8.jar                         | None                                     |     | LC    | botania                           | r1.10-364                                                      | Botania r1.10-364.4.jar                              | None                                     |     | LC    | aiotbotania                       | 0.7.1                                                          | aiotbotania-0.7.1.jar                                | None                                     |     | LC    | appleskin                         | 1.0.14                                                         | AppleSkin-mc1.12-1.0.14.jar                          | None                                     |     | LC    | aquaacrobatics                    | 1.15.4                                                         | AquaAcrobatics-1.15.4.jar                            | None                                     |     | LC    | atlaslib                          | 1.1.6                                                          | Atlas-Lib-1.12.2-1.1.6.jar                           | None                                     |     | LC    | autoreglib                        | 1.3-32                                                         | AutoRegLib-1.3-32.jar                                | None                                     |     | LC    | bhc                               | 2.0.3                                                          | baubley-heart-canisters-1.12.2-2.0.3.jar             | None                                     |     | LC    | betterbuilderswands               | 0.11.1                                                         | BetterBuildersWands-1.12-0.11.1.245+69d0d70.jar      | None                                     |     | LC    | betternether                      | 0.1.8.6                                                        | betternether-0.1.8.6.jar                             | None                                     |     | LC    | bibliocraft                       | 2.4.6                                                          | BiblioCraft[v2.4.6][MC1.12.2].jar                    | None                                     |     | LC    | biomesoplenty                     | 7.0.1.2445                                                     | BiomesOPlenty-1.12.2-7.0.1.2445-universal.jar        | None                                     |     | LC    | guideapi                          | 1.12-2.1.8-63                                                  | Guide-API-1.12-2.1.8-63.jar                          | None                                     |     | LC    | bloodmagic                        | 1.12.2-2.4.3-105                                               | BloodMagic-1.12.2-2.4.3-105.jar                      | None                                     |     | LC    | bloodsmeltery                     | 1.1.2                                                          | Blood-Smeltery-1.12.2-1.1.2.jar                      | None                                     |     | LC    | bloodarsenal                      | 1.12.2-2.2.2-31                                                | BloodArsenal-1.12.2-2.2.2-31.jar                     | None                                     |     | LC    | bloodtinker                       | 1.0.5                                                          | bloodtinker-1.0.5.jar                                | None                                     |     | LC    | bonsaitrees                       | 1.1.4                                                          | bonsaitrees-1.1.4-b170.jar                           | None                                     |     | LC    | spawnermod                        | 1.0-1.12.2                                                     | branders-enhanced-mob-spawners-v1.12.2-1.4.4.jar.jar | None                                     |     | LC    | buildcraftbuilders                | 8.0.0                                                          | buildcraft-builders-8.0.0.jar                        | None                                     |     | LC    | buildcrafttransport               | 8.0.0                                                          | buildcraft-transport-8.0.0.jar                       | None                                     |     | LC    | buildcraftsilicon                 | 8.0.0                                                          | buildcraft-silicon-8.0.0.jar                         | None                                     |     | LC    | buildcraftcompat                  | 8.0.0                                                          | buildcraft-compat-8.0.0.jar                          | None                                     |     | LC    | buildcraftenergy                  | 8.0.0                                                          | buildcraft-energy-8.0.0.jar                          | None                                     |     | LC    | buildcraftfactory                 | 8.0.0                                                          | buildcraft-factory-8.0.0.jar                         | None                                     |     | LC    | buildcraftrobotics                | 8.0.0                                                          | buildcraft-robotics-8.0.0.jar                        | None                                     |     | LC    | bcrf                              | 2.1.3                                                          | BuildCraftRF-2.1.4.jar                               | None                                     |     | LC    | camera                            | 1.0.10                                                         | camera-1.0.10.jar                                    | None                                     |     | LC    | carryon                           | 1.12.3                                                         | carryon-1.12.2-1.12.7.23.jar                         | None                                     |     | LC    | ceramics                          | 1.12-1.3.7b                                                    | Ceramics-1.12-1.3.7b.jar                             | None                                     |     | LC    | cfm                               | 6.7.0                                                          | cfm-legacy-1.12.2-6.7.0.jar                          | None                                     |     | LC    | chameleon                         | 1.12-4.1.3                                                     | Chameleon-1.12-4.1.3.jar                             | None                                     |     | LC    | chancecubes                       | 1.12.2-5.0.2.385                                               | ChanceCubes-1.12.2-5.0.2.385.jar                     | None                                     |     | LC    | chickens                          | 6.0.4                                                          | chickens-6.0.4.jar                                   | None                                     |     | LC    | chiselsandbits                    | 14.33                                                          | chiselsandbits-14.33.jar                             | None                                     |     | LC    | cjcm                              | 1.0                                                            | cjcm-1.0.jar                                         | None                                     |     | LC    | clayconversion                    | 1.4                                                            | clayconversion-1.12.x-1.4.jar                        | None                                     |     | LC    | sanlib                            | 1.6.3                                                          | SanLib-1.12.2-1.6.3.jar                              | 4aad6d31d04fd4b54ac08427561b110ee66198fd |     | LC    | claysoldiers                      | 3.0.0-beta.2                                                   | ClaySoldiersMod-1.12.2-3.0.0-beta.2.jar              | None                                     |     | LC    | cucumber                          | 1.1.3                                                          | Cucumber-1.12.2-1.1.3.jar                            | None                                     |     | LC    | mysticalagriculture               | 1.7.5                                                          | MysticalAgriculture-1.12.2-1.7.5.jar                 | None                                     |     | LC    | mysticalagradditions              | 1.3.2                                                          | MysticalAgradditions-1.12.2-1.3.2.jar                | None                                     |     | LC    | engineersdecor                    | 1.1.5                                                          | engineersdecor-1.12.2-1.1.5.jar                      | ed58ed655893ced6280650866985abcae2bf7559 |     | LC    | ieclochecompat                    | 2.1.7-dev.454                                                  | ieclochecompat-2.1.7-dev.454.jar                     | None                                     |     | LC    | immersiveengineering              | 0.12-98                                                        | ImmersiveEngineering-0.12-98.jar                     | None                                     |     | LC    | clochepp                          | 1.0.3                                                          | cloche-profit-peripheral-1.12.2-1.0.3.jar            | None                                     |     | LC    | clochecall                        | 1.1.2                                                          | ClocheCall-1.1.2.jar                                 | None                                     |     | LC    | clumps                            | 3.1.2                                                          | Clumps-3.1.2.jar                                     | None                                     |     | LC    | collective                        | 3.0                                                            | collective-1.12.2-3.0.jar                            | None                                     |     | LC    | controlling                       | 3.0.10                                                         | Controlling-3.0.12.4.jar                             | None                                     |     | LC    | cookingforblockheads              | 6.5.0                                                          | CookingForBlockheads_1.12.2-6.5.0.jar                | None                                     |     | LC    | craftingtweaks                    | 8.1.9                                                          | CraftingTweaks_1.12.2-8.1.9.jar                      | None                                     |     | LC    | ctgui                             | 1.0.0                                                          | CraftTweaker2-1.12-4.1.20.704.jar                    | None                                     |     | LC    | crafttweakerjei                   | 2.0.3                                                          | CraftTweaker2-1.12-4.1.20.704.jar                    | None                                     |     | LC    | cxlibrary                         | 1.6.1                                                          | cxlibrary-1.12.1-1.6.1.jar                           | None                                     |     | LC    | decorative_gaming_consoles        | 1.1.0                                                          | decorative-gaming-consoles-forge-1.12.2-1.1.0.jar    | None                                     |     | LC    | doubledoors                       | 2.5                                                            | doubledoors_1.12.2-2.5.jar                           | None                                     |     | LC    | supermartijn642configlib          | 1.1.6                                                          | supermartijn642configlib-1.1.8-forge-mc1.12.jar      | None                                     |     | LC    | durabilitytooltip                 | 1.1.4                                                          | durabilitytooltip-1.1.5-forge-mc1.12.jar             | None                                     |     | LC    | effortlessbuilding                | 1.12.2-2.16                                                    | effortlessbuilding-1.12.2-2.16.jar                   | None                                     |     | LC    | elementalitems                    | 1.8                                                            | elementalitems-1.12.2-14.23.2.2625-1.8.jar           | None                                     |     | LC    | elevatorid                        | 1.3.14                                                         | ElevatorMod-1.12.2-1.3.14.jar                        | None                                     |     | LC    | mysticalmechanics                 | 0.18                                                           | Mystical Mechanics-0.18.jar                          | None                                     |     | LC    | embers                            | 1.19                                                           | EmbersRekindled-1.19.jar                             | None                                     |     | LC    | projectex                         | 1.2.0.40                                                       | ProjectEX-1.2.0.40.jar                               | None                                     |     | LC    | emcbaubles                        | 1.0                                                            | emcbaubles-1.12-1.0.jar                              | None                                     |     | LC    | emcbuilderswand                   | 0.1                                                            | emcbuilderswand-1.12.2-1.9.jar                       | None                                     |     | LC    | enchdesc                          | 1.1.15                                                         | EnchantmentDescriptions-1.12.2-1.1.15.jar            | d476d1b22b218a10d845928d1665d45fce301b27 |     | LC    | enderiobase                       | 5.3.72                                                         | EnderIO-1.12.2-5.3.72.jar                            | None                                     |     | LC    | enderioconduits                   | 5.3.72                                                         | EnderIO-1.12.2-5.3.72.jar                            | None                                     |     | LC    | enderioconduitsappliedenergistics | 5.3.72                                                         | EnderIO-1.12.2-5.3.72.jar                            | None                                     |     | LC    | enderioconduitsopencomputers      | 5.3.72                                                         | EnderIO-1.12.2-5.3.72.jar                            | None                                     |     | LC    | enderioconduitsrefinedstorage     | 5.3.72                                                         | EnderIO-1.12.2-5.3.72.jar                            | None                                     |     | LC    | enderiointegrationforestry        | 5.3.72                                                         | EnderIO-1.12.2-5.3.72.jar                            | None                                     |     | LC    | enderiointegrationticlate         | 5.3.72                                                         | EnderIO-1.12.2-5.3.72.jar                            | None                                     |     | LC    | enderioinvpanel                   | 5.3.72                                                         | EnderIO-1.12.2-5.3.72.jar                            | None                                     |     | LC    | enderiomachines                   | 5.3.72                                                         | EnderIO-1.12.2-5.3.72.jar                            | None                                     |     | LC    | enderiopowertools                 | 5.3.72                                                         | EnderIO-1.12.2-5.3.72.jar                            | None                                     |     | LC    | enderstorage                      | 2.4.6.137                                                      | EnderStorage-1.12.2-2.4.6.137-universal.jar          | f1850c39b2516232a2108a7bd84d1cb5df93b261 |     | LC    | engineersdoors                    | 0.9.1                                                          | engineers_doors-1.12.2-0.9.1.jar                     | None                                     |     | LC    | exnihilocreatio                   | 1.12.2-0.4.7.2                                                 | exnihilocreatio-1.12.2-0.4.7.2.jar                   | None                                     |     | LC    | exnihiloomnia                     | 1.0                                                            | exnihiloomnia_1.12.2-0.0.2.jar                       | None                                     |     | LC    | excompressum                      | 3.0.32                                                         | ExCompressum_1.12.2-3.0.32.jar                       | None                                     |     | LC    | extrabotany                       | 58                                                             | ExtraBotany-r1.1-58r.jar                             | None                                     |     | LC    | extracells                        | 2.6.7                                                          | ExtraCells-1.12.2-2.6.7.jar                          | None                                     |     | LC    | extractpoison                     | 1.6                                                            | extractpoison_1.12.2-1.6.jar                         | None                                     |     | LC    | extrautils2                       | 1.0                                                            | extrautils2-1.12-1.9.9.jar                           | None                                     |     | LC    | zerocore                          | 1.12.2-0.1.2.9                                                 | zerocore-1.12.2-0.1.2.9.jar                          | None                                     |     | LC    | bigreactors                       | 1.12.2-0.4.5.68                                                | ExtremeReactors-1.12.2-0.4.5.68.jar                  | None                                     |     | LC    | farmingforblockheads              | 3.1.28                                                         | FarmingForBlockheads_1.12.2-3.1.28.jar               | None                                     |     | LC    | fastleafdecay                     | v14                                                            | FastLeafDecay-v14.jar                                | None                                     |     | LC    | fluxnetworks                      | 4.1.0                                                          | FluxNetworks-1.12.2-4.1.1.34.jar                     | None                                     |     | LC    | forgemultipartcbe                 | 2.6.2.83                                                       | ForgeMultipart-1.12.2-2.6.2.83-universal.jar         | f1850c39b2516232a2108a7bd84d1cb5df93b261 |     | LC    | microblockcbe                     | 2.6.2.83                                                       | ForgeMultipart-1.12.2-2.6.2.83-universal.jar         | None                                     |     | LC    | minecraftmultipartcbe             | 2.6.2.83                                                       | ForgeMultipart-1.12.2-2.6.2.83-universal.jar         | None                                     |     | LC    | glassdoors                        | 1.0.0                                                          | glassdoors-1.12.2-1.0.0.jar                          | None                                     |     | LC    | grapplemod                        | 1.12.2-v13                                                     | grappling_hook_mod-1.12.2-v13.jar                    | None                                     |     | LC    | gravestone                        | 1.10.3                                                         | gravestone-1.10.3.jar                                | None                                     |     | LC    | ichunutil                         | 7.2.2                                                          | iChunUtil-1.12.2-7.2.2.jar                           | 4db5c2bd1b556f252a5b8b54b256d381b2a0a6b8 |     | LC    | gravitygun                        | 7.1.0                                                          | GravityGun-1.12.2-7.1.0.jar                          | 4db5c2bd1b556f252a5b8b54b256d381b2a0a6b8 |     | LC    | cgm                               | 0.15.3                                                         | guns-0.15.3-1.12.2.jar                               | None                                     |     | LC    | harvest                           | 1.12-1.2.8-25                                                  | Harvest-1.12-1.2.8-25.jar                            | None                                     |     | LC    | hatchery                          | 2.2.2                                                          | hatchery-1.12.2-2.2.2.jar                            | None                                     |     | LC    | hats                              | 7.1.1                                                          | Hats-1.12.2-7.1.1.jar                                | 4db5c2bd1b556f252a5b8b54b256d381b2a0a6b8 |     | LC    | hatstand                          | 7.1.0                                                          | HatStand-1.12.2-7.1.0.jar                            | None                                     |     | LC    | immersivecables                   | 1.3.2                                                          | ImmersiveCables-1.12.2-1.3.2.jar                     | None                                     |     | LC    | immersivepetroleum                | 1.1.10                                                         | immersivepetroleum-1.12.2-1.1.10.jar                 | None                                     |     | LC    | industrialdecor                   | V-22.1120                                                      | industrialdecor_1.12.2_v21.1120.jar                  | None                                     |     | LC    | industrial_decor                  | 1.0.0                                                          | industrialdecor_1.12.2_v21.1120.jar                  | None                                     |     | LC    | teslacorelib                      | 1.0.18                                                         | tesla-core-lib-1.12.2-1.0.18.jar                     | d476d1b22b218a10d845928d1665d45fce301b27 |     | LC    | industrialforegoing               | 1.12.2-1.12.2                                                  | industrialforegoing-1.12.2-1.12.13-237.jar           | None                                     |     | LC    | inventorytweaks                   | 1.63+release.109.220f184                                       | InventoryTweaks-1.63.jar                             | 55d2cd4f5f0961410bf7b91ef6c6bf00a766dcbe |     | LC    | ironbackpacks                     | 1.12.2-3.0.8-12                                                | IronBackpacks-1.12.2-3.0.8-12.jar                    | None                                     |     | LC    | ironchest                         | 1.12.2-7.0.67.844                                              | ironchest-1.12.2-7.0.72.847.jar                      | None                                     |     | LC    | ironfurnaces                      | 1.3.5                                                          | ironfurnaces-1.3.5.jar                               | None                                     |     | LC    | ironjetpacks                      | 1.1.0                                                          | IronJetpacks-1.12-2-1.1.0.jar                        | None                                     |     | LC    | jetif                             | 1.5.2                                                          | jetif-1.12.2-1.5.2.jar                               | None                                     |     | LC    | jetorches                         | 2.1.0                                                          | jetorches-1.12.2-2.1.0.jar                           | None                                     |     | LC    | journeymap                        | 1.12.2-5.7.1p3                                                 | journeymap-1.12.2-5.7.1p3.jar                        | None                                     |     | LC    | harvestcraft                      | 1.12.2zb                                                       | Pam's HarvestCraft 1.12.2zg.jar                      | None                                     |     | LC    | jehc                              | 1.7.2                                                          | just-enough-harvestcraft-1.12.2-1.7.2.jar            | None                                     |     | LC    | jee                               | 1.0.8                                                          | JustEnoughEnergistics-1.12.2-1.0.8.jar               | None                                     |     | LC    | justenoughreactors                | 1.1.3.61                                                       | JustEnoughReactors-1.12.2-1.1.3.61.jar               | 2238d4a92d81ab407741a2fdb741cebddfeacba6 |     | LC    | jeresources                       | 0.9.2.60                                                       | JustEnoughResources-1.12.2-0.9.2.60.jar              | None                                     |     | LC    | justmobheads                      | 5.1                                                            | justmobheads_1.12.2-5.1.jar                          | None                                     |     | LC    | jmc                               | 1.1                                                            | JustMoreCakes-2.0_MC1.12.2.jar                       | None                                     |     | LC    | mystcraft                         | 0.13.7.06                                                      | mystcraft-1.12.2-0.13.7.06.jar                       | None                                     |     | LC    | lootbags                          | 2.5.8.5                                                        | LootBags-1.12.2-2.5.8.5.jar                          | None                                     |     | LC    | magic_doorknob                    | 1.12.2-0.0.4.548                                               | MagicDoorknob-1.12.2-0.0.4.548.jar                   | None                                     |     | LC    | malisiscore                       | 1.12.2-6.5.1-SNAPSHOT                                          | malisiscore-1.12.2-6.5.1.jar                         | None                                     |     | LC    | malisisblocks                     | 1.12.2-6.1.0                                                   | malisisblocks-1.12.2-6.1.0.jar                       | None                                     |     | LC    | malisisdoors                      | 1.12.2-7.3.0                                                   | malisisdoors-1.12.2-7.3.0.jar                        | None                                     |     | LC    | malisisswitches                   | 1.12.2-5.1.0                                                   | malisisswitches-1.12.2-5.1.0.jar                     | None                                     |     | LC    | matc                              | 1.0.1-hotfix                                                   | matc-1.0.1-hotfix.jar                                | None                                     |     | LC    | mcjtylib_ng                       | 3.5.4                                                          | mcjtylib-1.12-3.5.4.jar                              | None                                     |     | LC    | mcwbridges                        | 1.0.6                                                          | mcw-bridges-1.0.6b-mc1.12.2.jar                      | None                                     |     | LC    | mcwdoors                          | 1.3                                                            | mcw-doors-1.0.3-mc1.12.2.jar                         | None                                     |     | LC    | mcwfences                         | 1.0.0                                                          | mcw-fences-1.0.0-mc1.12.2.jar                        | None                                     |     | LC    | mcwfurnitures                     | 1.0.1                                                          | mcw-furniture-1.0.1-mc1.12.2beta.jar                 | None                                     |     | LC    | mcwlights                         | 1.0.6                                                          | mcw-lights-1.0.6-mc1.12.2forge.jar                   | None                                     |     | LC    | mcwpaintings                      | 1.0.5                                                          | mcw-paintings-1.0.5-1.12.2forge.jar                  | None                                     |     | LC    | mcwpaths                          | 1.0.2                                                          | mcw-paths-1.0.2forge-mc1.12.2.jar                    | None                                     |     | LC    | mcwroofs                          | 1.0.2                                                          | mcw-roofs-1.0.2-mc1.12.2.jar                         | None                                     |     | LC    | mcwtrpdoors                       | 1.0.2                                                          | mcw-trapdoors-1.0.3-mc1.12.2.jar                     | None                                     |     | LC    | mcwwindows                        | 1.0                                                            | mcw-windows-1.0.0-mc1.12.2.jar                       | None                                     |     | LC    | mekanismgenerators                | 1.12.2-9.8.3.390                                               | MekanismGenerators-1.12.2-9.8.3.390.jar              | None                                     |     | LC    | mekanismtools                     | 1.12.2-9.8.3.390                                               | MekanismTools-1.12.2-9.8.3.390.jar                   | None                                     |     | LC    | mekatweaker                       | 1.2.0                                                          | mekatweaker-1.12-1.2.0.jar                           | None                                     |     | LC    | mob_grinding_utils                | 0.3.13                                                         | MobGrindingUtils-0.3.13.jar                          | None                                     |     | LC    | morecauldrons                     | 1.4.6                                                          | More-Cauldrons-1.4.6.jar                             | None                                     |     | LC    | morebuckets                       | 1.0.4                                                          | MoreBuckets-1.12.2-1.0.4.jar                         | None                                     |     | LC    | morechickens                      | 3.1.0                                                          | morechickens-1.12.2-3.1.0.jar                        | None                                     |     | LC    | morefurnaces                      | 1.10.5                                                         | MoreFurnaces-1.12.2-1.10.6.jar                       | None                                     |     | LC    | mystlibrary                       | 1.12.2-0.0.3.2                                                 | mystlibrary-1.12.2-0.0.3.2.jar                       | None                                     |     | LC    | moremystcraft                     | 1.0.0                                                          | moremystcraft-1.12.2-1.0.0.jar                       | None                                     |     | LC    | moreoverlays                      | 1.15.1                                                         | moreoverlays-1.15.1-mc1.12.2.jar                     | None                                     |     | LC    | guilib                            | $version                                                       | morepaintings-paintings-1.12.2-5.0.1.2.jar           | None                                     |     | LC    | paintingselgui                    | $version                                                       | morepaintings-paintings-1.12.2-5.0.1.2.jar           | None                                     |     | LC    | morepaintings                     | $version                                                       | morepaintings-paintings-1.12.2-5.0.1.2.jar           | None                                     |     | LC    | morph                             | 7.2.0                                                          | Morph-1.12.2-7.2.1.jar                               | 4db5c2bd1b556f252a5b8b54b256d381b2a0a6b8 |     | LC    | mousetweaks                       | 2.10                                                           | MouseTweaks-2.10-mc1.12.2.jar                        | None                                     |     | LC    | mrtjpcore                         | 2.1.4.43                                                       | MrTJPCore-1.12.2-2.1.4.43-universal.jar              | None                                     |     | LC    | mystagradcompat                   | 1.2                                                            | mystagradcompat-1.2.jar                              | None                                     |     | LC    | mystgears                         | 1.1.7                                                          | mystgears-1.1.7.jar                                  | None                                     |     | LC    | mysticaladaptations               | 1.8.8                                                          | MysticalAdaptations-1.12.2-1.8.8.jar                 | None                                     |     | LC    | mysticalagriexpansion             | 0.4                                                            | MysticalAgriexpansion-1.12.2-0.4.jar                 | None                                     |     | LC    | naturescompass                    | 1.8.5                                                          | NaturesCompass-1.12.2-1.8.5.jar                      | None                                     |     | LC    | nefdecomod                        | 0.9                                                            | NefsMedievalPub+v0.9(1.12.2).jar                     | None                                     |     | LC    | noautojump                        | 1.2                                                            | NoAutoJump-1.12.2-1.2.jar                            | 4ffa87db52cf086d00ecc4853a929367b1c39b5c |     | LC    | norecipebook                      | 1.2.1                                                          | noRecipeBook_v1.2.2formc1.12.2.jar                   | None                                     |     | LC    | neid                              | 1.5.4.4                                                        | NotEnoughIDs-1.5.4.4.jar                             | None                                     |     | LC    | oreexcavation                     | 1.4.150                                                        | OreExcavation-1.4.150.jar                            | None                                     |     | LC    | oeintegration                     | 2.3.4                                                          | oeintegration-2.3.4.jar                              | None                                     |     | LC    | omlib                             | 3.1.5-256                                                      | omlib-1.12.2-3.1.5-256.jar                           | None                                     |     | LC    | ompd                              | 3.1.1-76                                                       | ompd-1.12.2-3.1.1-76.jar                             | None                                     |     | LC    | openmods                          | 0.12.2                                                         | OpenModsLib-1.12.2-0.12.2.jar                        | d2a9a8e8440196e26a268d1f3ddc01b2e9c572a5 |     | LC    | openblocks                        | 1.8.1                                                          | OpenBlocks-1.12.2-1.8.1.jar                          | d2a9a8e8440196e26a268d1f3ddc01b2e9c572a5 |     | LC    | openmodularturrets                | 3.1.14-382                                                     | openmodularturrets-1.12.2-3.1.14-382.jar             | None                                     |     | LC    | ordinarycoins                     | 1.5                                                            | ordinarycoins-1.12.2-1.5.jar                         | None                                     |     | LC    | packcrashinfo                     | %VERSION%                                                      | packcrashinfo-1.0.1.jar                              | None                                     |     | LC    | simplerecipes                     | 1.12.2c                                                        | Pam's Simple Recipes 1.12.2c.jar                     | None                                     |     | LC    | pamscookables                     | 1.1                                                            | pamscookables-1.1.jar                                | None                                     |     | LC    | pgwbandedtorches                  | 0.9.20200801                                                   | pgwbandedtorches-1.12.2-0.9.20200801.jar             | None                                     |     | LC    | pickletweaks                      | 2.1.3                                                          | PickleTweaks-1.12.2-2.1.3.jar                        | None                                     |     | LC    | playerskins                       | 1.0.4                                                          | playerskin-1.12.2-1.0.5.jar                          | None                                     |     | LC    | portablecraftingtable             | 1.1.4                                                          | PortableCraftingTable-1.12.2-1.1.4.jar               | None                                     |     | LC    | portalgun                         | 7.1.0                                                          | PortalGun-1.12.2-7.1.0.jar                           | 4db5c2bd1b556f252a5b8b54b256d381b2a0a6b8 |     | LC    | teslathingies                     | 1.0.15                                                         | powered-thingies-1.12.2-1.0.15.jar                   | d476d1b22b218a10d845928d1665d45fce301b27 |     | LC    | projectred-core                   | 4.9.4.120                                                      | ProjectRed-1.12.2-4.9.4.120-Base.jar                 | None                                     |     | LC    | projectred-compat                 | 1.0                                                            | ProjectRed-1.12.2-4.9.4.120-compat.jar               | None                                     |     | LC    | projectred-integration            | 4.9.4.120                                                      | ProjectRed-1.12.2-4.9.4.120-integration.jar          | None                                     |     | LC    | projectred-transmission           | 4.9.4.120                                                      | ProjectRed-1.12.2-4.9.4.120-integration.jar          | None                                     |     | LC    | projectred-illumination           | 4.9.4.120                                                      | ProjectRed-1.12.2-4.9.4.120-lighting.jar             | None                                     |     | LC    | randomthings                      | 4.2.7.4                                                        | RandomThings-MC1.12.2-4.2.7.4.jar                    | d72e0dd57935b3e9476212aea0c0df352dd76291 |     | LC    | randomtweaks                      | 1.12.2-2.8.3.1                                                 | randomtweaks-1.12.2-2.8.3.1.jar                      | 20d08fb3fe9c268a63a75d337fb507464c8aaccd |     | LC    | rbm2                              | RBM2 Pre-Release BetaV0.3.0 For MinecraftV1.12, 1.12.1, 1.12.2 | RBM2V1.0.0.jar                                       | None                                     |     | LC    | resourceloader                    | 1.5.3                                                          | ResourceLoader-MC1.12.1-1.5.3.jar                    | d72e0dd57935b3e9476212aea0c0df352dd76291 |     | LC    | rftools                           | 7.73                                                           | rftools-1.12-7.73.jar                                | None                                     |     | LC    | rftoolspower                      | 1.2.0                                                          | rftoolspower-1.12-1.2.0.jar                          | None                                     |     | LC    | sanplayermodel                    | 1.2.2                                                          | SanLib-1.12.2-1.6.3.jar                              | None                                     |     | LC    | playershop                        | 1.0                                                            | SCMowns Player Shop Mod v1.0.0.jar                   | None                                     |     | LC    | secretroomsmod                    | 5.6.4                                                          | secretroomsmod-1.12.2-5.6.4.jar                      | None                                     |     | LC    | oeshapeselector                   | 1.0                                                            | shapeselector-1.12.2b4.jar                           | None                                     |     | LC    | simple-rpc                        | 1.0                                                            | simple-rpc-1.12.2-3.1.1.jar                          | None                                     |     | LC    | simplecorn                        | 2.5.12                                                         | SimpleCorn1.12-2.5.12.jar                            | None                                     |     | LC    | lteleporters                      | 1.12.2-3.0.2                                                   | simpleteleporters-1.12.2-3.0.2.jar                   | None                                     |     | LC    | simple_trophies                   | 1.2.2                                                          | simpletrophies-1.2.2.1.jar                           | None                                     |     | LC    | thermaldynamics                   | 2.5.6                                                          | ThermalDynamics-1.12.2-2.5.6.1-universal.jar         | None                                     |     | LC    | simplyjetpacks                    | 1.12.2-2.2.20.0                                                | SimplyJetpacks2-1.12.2-2.2.20.0.jar                  | None                                     |     | LC    | simplylight                       | 1.12.2-0.8.7                                                   | simplylight-1.12.2-0.8.7.jar                         | None                                     |     | LC    | solarflux                         | 12.4.11                                                        | SolarFluxReborn-1.12.2-12.4.11.jar                   | 9f5e2a811a8332a842b34f6967b7db0ac4f24856 |     | LC    | storagedrawers                    | 5.5.3                                                          | StorageDrawers-1.12.2-5.5.3.jar                      | None                                     |     | LC    | storagedrawersextra               | @VERSION@                                                      | StorageDrawersExtras-1.12-3.1.0.jar                  | None                                     |     | LC    | taiga                             | 1.12.2-1.3.3                                                   | taiga-1.12.2-1.3.4.jar                               | None                                     |     | LC    | thermalcultivation                | 0.3.6                                                          | ThermalCultivation-1.12.2-0.3.6.1-universal.jar      | None                                     |     | LC    | thermalinnovation                 | 0.3.6                                                          | ThermalInnovation-1.12.2-0.3.6.1-universal.jar       | None                                     |     | LC    | thermalsolars                     | 1.12.2 V1.9.5                                                  | thermalsolars-1.12.2-1.9.5.jar                       | None                                     |     | LC    | thermaltinkering                  | 1.0                                                            | ThermalTinkering-1.12.2-2.0.1.jar                    | None                                     |     | LC    | tcomplement                       | 1.12.2-0.4.3                                                   | TinkersComplement-1.12.2-0.4.3.jar                   | None                                     |     | LC    | tinkersjei                        | 1.2                                                            | tinkersjei-1.2.jar                                   | None                                     |     | LC    | tinymobfarm                       | 1.0.5                                                          | TinyMobFarm-1.12.2-1.0.5.jar                         | None                                     |     | LC    | tp                                | 3.2.34                                                         | tinyprogressions-1.12.2-3.3.34-Release.jar           | None                                     |     | LC    | torchmaster                       | 1.8.5.0                                                        | torchmaster_1.12.2-1.8.5.0.jar                       | None                                     |     | LC    | travelersbackpack                 | 1.0.35                                                         | TravelersBackpack-1.12.2-1.0.35.jar                  | None                                     |     | LC    | treegrowingsimulator              | 0.0.4                                                          | TreeGrowingSimulator2017-1.0.1.jar                   | None                                     |     | LC    | xat                               | 0.32.5                                                         | Trinkets and Baubles-0.32.5.jar                      | None                                     |     | LC    | vehicle                           | 0.44.1                                                         | vehicle-mod-0.44.1-1.12.2.jar                        | None                                     |     | LC    | wanionlib                         | 1.12.2-2.91                                                    | WanionLib-1.12.2-2.91.jar                            | None                                     |     | LC    | wft                               | 1.0.4                                                          | WirelessFluidTerminal-1.12.2-1.0.4.jar               | 186bc454cd122c9c2f1aa4f95611254bcc543363 |     | LC    | wit                               | 1.0.2                                                          | WirelessInterfaceTerminal-1.12.2-1.0.2.jar           | 186bc454cd122c9c2f1aa4f95611254bcc543363 |     | LC    | wirelessredstone                  | 1.12.2-1.1.6                                                   | WirelessRedstone-1.12.2-1.1.6.jar                    | None                                     |     | LC    | wrcbe                             | 2.3.2                                                          | WR-CBE-1.12.2-2.3.2.33-universal.jar                 | f1850c39b2516232a2108a7bd84d1cb5df93b261 |     | LC    | xercapaint                        | 1.12.2-1.3                                                     | xercapaint-1.12.2-1.3.jar                            | None                                     |     | LC    | more_dims                         | 1.0.2                                                          | Y.A.M.D.1.0.2.jar                                    | None                                     |     | LC    | recipehandler                     | 0.14                                                           | YARCF-0.14(1.12.2).jar                               | None                                     |     | LC    | yastm                             | 1.12.2                                                         | yastm-1.12.2-2.0.0BETA-universal.jar                 | None                                     |     | LC    | ladylib                           | 2.6.2                                                          | Ladylib-2.6.2.jar                                    | None                                     |     | LC    | modwinder                         | 1.1                                                            | Ladylib-2.6.2.jar                                    | None                                     |     | LC    | dissolution                       | 0.3.13                                                         | Dissolution-1.12.2-0.3.13r2.jar                      | None                                     |     | LC    | jade                              | 0.1.0                                                          | Jade-0.1.0.jar                                       | None                                     |     | LC    | orelib                            | 3.6.0.1                                                        | OreLib-1.12.2-3.6.0.1.jar                            | 7a2128d395ad96ceb9d9030fbd41d035b435753a |     | LC    | patchwork                         | 0.2.3.4                                                        | Patchwork-1.12.2-0.2.3.4BETA.jar                     | 7a2128d395ad96ceb9d9030fbd41d035b435753a |     | LC    | teslacorelib_registries           | 1.0.18                                                         | tesla-core-lib-1.12.2-1.0.18.jar                     | None                                     |     | LC    | unidict                           | 1.12.2-3.0.10                                                  | UniDict-1.12.2-3.0.10.jar                            | None                                     |     Loaded coremods (and transformers):  MalisisSwitchesPlugin (malisisswitches-1.12.2-5.1.0.jar)    LoadingPlugin (RandomThings-MC1.12.2-4.2.7.4.jar)   lumien.randomthings.asm.ClassTransformer IELoadingPlugin (ImmersiveEngineering-core-0.12-98.jar)   blusunrize.immersiveengineering.common.asm.IEClassTransformer EngineersDoorsLoadingPlugin (engineers_doors-1.12.2-0.9.1.jar)   nihiltres.engineersdoors.common.asm.EngineersDoorsClassTransformer RandomPatches (randompatches-1.12.2-1.22.1.10.jar)   com.therandomlabs.randompatches.core.RPTransformer Aqua Acrobatics Transformer (AquaAcrobatics-1.15.4.jar)    ForgelinPlugin (Forgelin-1.8.4.jar)    clothesline-hooks (clothesline-hooks-1.12.2-0.0.1.2.jar)   com.jamieswhiteshirt.clothesline.hooks.plugin.ClassTransformer MekanismCoremod (Mekanism-1.12.2-9.8.3.390.jar)   mekanism.coremod.KeybindingMigrationHelper OpenModsCorePlugin (OpenModsLib-1.12.2-0.12.2.jar)   openmods.core.OpenModsClassTransformer CXLibraryCore (cxlibrary-1.12.1-1.6.1.jar)   cubex2.cxlibrary.CoreModTransformer Quark Plugin (Quark-r1.6-179.jar)   vazkii.quark.base.asm.ClassTransformer ObfuscatePlugin (obfuscate-0.4.2-1.12.2.jar)   com.mrcrayfish.obfuscate.asm.ObfuscateTransformer CTMCorePlugin (CTM-MC1.12.2-1.0.2.31.jar)   team.chisel.ctm.client.asm.CTMTransformer UniDictCoreMod (UniDict-1.12.2-3.0.10.jar)   wanion.unidict.core.UniDictCoreModTransformer EnderCorePlugin (EnderCore-1.12.2-0.5.78-core.jar)   com.enderio.core.common.transform.EnderCoreTransformer   com.enderio.core.common.transform.SimpleMixinPatcher Plugin (NotEnoughIDs-1.5.4.4.jar)   ru.fewizz.neid.asm.Transformer Inventory Tweaks Coremod (InventoryTweaks-1.63.jar)   invtweaks.forge.asm.ContainerTransformer MixinBooter (!mixinbooter-10.6.jar)    SecurityCraftLoadingPlugin ([1.12.2] SecurityCraft v1.10.jar)    SecretRoomsMod-Core (secretroomsmod-1.12.2-5.6.4.jar)   com.wynprice.secretroomsmod.core.SecretRoomsTransformer LoadingPlugin (ResourceLoader-MC1.12.1-1.5.3.jar)   lumien.resourceloader.asm.ClassTransformer MalisisCorePlugin (malisiscore-1.12.2-6.5.1.jar)        GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.6.0 NVIDIA 576.88' Renderer: 'NVIDIA GeForce RTX 5060 Ti/PCIe/SSE2'     OpenModsLib class transformers: [llama_null_fix:FINISHED],[horse_base_null_fix:FINISHED],[pre_world_render_hook:FINISHED],[player_render_hook:FINISHED],[horse_null_fix:FINISHED]     AE2 Version: stable rv6-stable-7 for Forge 14.23.5.2768     Ender IO: No known problems detected.     Authlib is : /C:/Users/sjm77/curseforge/minecraft/Install/libraries/com/mojang/authlib/1.5.25/authlib-1.5.25.jar     !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!     !!!You are looking at the diagnostics information, not at the crash.       !!!     !!!Scroll up until you see the line with '---- Minecraft Crash Report ----'!!!     !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!     Pulsar/tconstruct loaded Pulses:          - TinkerCommons (Enabled/Forced)         - TinkerWorld (Enabled/Not Forced)         - TinkerTools (Enabled/Not Forced)         - TinkerHarvestTools (Enabled/Forced)         - TinkerMeleeWeapons (Enabled/Forced)         - TinkerRangedWeapons (Enabled/Forced)         - TinkerModifiers (Enabled/Forced)         - TinkerSmeltery (Enabled/Not Forced)         - TinkerGadgets (Enabled/Not Forced)         - TinkerOredict (Enabled/Forced)         - TinkerIntegration (Enabled/Forced)         - TinkerFluids (Enabled/Forced)         - TinkerMaterials (Enabled/Forced)         - TinkerModelRegister (Enabled/Forced)         - chiselIntegration (Enabled/Not Forced)         - chiselsandbitsIntegration (Enabled/Not Forced)         - craftingtweaksIntegration (Enabled/Not Forced)         - wailaIntegration (Enabled/Not Forced)         - quarkIntegration (Enabled/Not Forced)     Modpack Information: Modpack: [Croc's fun] Version: [null] by author [null]     Pulsar/tcomplement loaded Pulses:          - ModuleCommons (Enabled/Forced)         - ModuleMelter (Enabled/Not Forced)         - ModuleArmor (Enabled/Not Forced)         - ModuleSteelworks (Enabled/Not Forced)         - CeramicsPlugin (Enabled/Not Forced)         - ChiselPlugin (Enabled/Not Forced)         - ExNihiloPlugin (Enabled/Not Forced)         - Oredict (Enabled/Forced)  
    • Temu continues to reward loyal customers in the USA with exceptional savings opportunities through exclusive coupon codes designed specifically for existing users. The Temu coupon code $100 off remains one of the most popular discount offers available to returning customers who have already discovered the platform's incredible value proposition. Our featured Temu Coupon code (ACW472253) provides maximum benefits for people across the USA, Canada, and European nations, making it an ideal choice for USA shoppers seeking substantial savings.   Existing customers can take advantage of the comprehensive Temu coupon $100 offand Temu 100 off coupon code opportunities that extend well beyond first-time purchase incentives. These codes ensure that customer loyalty is rewarded with continued access to premium discounts and exclusive offers throughout the year.   What Is The Coupon Code For Temu $100 Off? Both new and existing customers can get amazing benefits if they use our $100 coupon code on the Temu app and website. The Temu coupon $100 offand $100 offTemu coupon provide substantial savings across thousands of product categories available on the platform. Our ACW472253 code offers multiple benefit structures designed to maximize customer value:   ACW472253 - Flat $100 offqualifying orders for immediate savings   ACW472253 - $100 coupon pack for multiple uses across different purchases   ACW472253 - $100 flat discount for new customers joining the platform   ACW472253 - Extra $100 promo code for existing customers continuing their shopping journey   ACW472253 - $100 coupon for USA/Canada users with worldwide shipping benefits   Temu Coupon Code $100 offFor New Users In 2025 New users can get the highest benefits if they use our coupon code on the Temu app. The Temu coupon $100 offand Temu coupon code $100 offprovide exceptional value for first-time shoppers exploring the platform's extensive product catalog. The ACW472253 code delivers comprehensive benefits specifically tailored for newcomers:   ACW472253 - Flat $100 discount for new users on qualifying first orders   ACW472253 - $100 coupon bundle for new customers enabling multiple discounted purchases   ACW472253 - Up to $100 coupon bundle for multiple uses across various product categories   ACW472253 - Free shipping to 68 countries ensuring global accessibility   ACW472253 - Extra 30% off on any purchase for first-time users maximizing initial savings   How To Redeem The Temu Coupon $100 offFor New Customers? The Temu $100 coupon and Temu $100 offcoupon code for new users can be easily applied through a straightforward redemption process. Follow these simple steps to maximize your savings:   Download the Temu app from your device's official app store or visit the Temu website   Create your new account using a valid email address and phone number   Browse through thousands of products and add desired items to your shopping cart   Proceed to checkout and locate the "Promo Code" or "Coupon Code" field   Enter ACW472253 exactly as shown and click "Apply"   Verify that your discount has been applied before completing your purchase   Complete your order using your preferred payment method   Temu Coupon $100 offFor Existing Customers Existing users can also get benefits if they use our coupon code on the Temu app. The Temu $100 coupon codes for existing users and Temu coupon $100 offfor existing customers free shipping ensure that customer loyalty is continuously rewarded with substantial savings opportunities. The ACW472253 code provides specialized benefits for returning customers:   ACW472253 - $100 extra discount for existing Temu users on qualified orders   ACW472253 - $100 coupon bundle for multiple purchases enabling extended savings   ACW472253 - Free gift with express shipping all over the USA/Canada region   ACW472253 - Extra 30% off on top of the existing discount for maximum value   ACW472253 - Free shipping to 68 countries with expedited delivery options   How To Use The Temu Coupon Code $100 offFor Existing Customers? The Temu coupon code $100 offand Temu coupon $100 offcode application process for existing customers follows a similar streamlined approach:   Log into your existing Temu account through the app or website   Add your desired products to the shopping cart   Navigate to the checkout page   Locate the promotional code entry field   Input ACW472253 and confirm the code application   Review your order summary to ensure the discount is properly applied   Complete your purchase with confidence   Latest Temu Coupon $100 offFirst Order Customers can get the highest benefits if they use our coupon code during the first order. The Temu coupon code $100 offfirst order, Temu coupon code first order, and Temu coupon code $100 offfirst time user provide exceptional value for initial platform experiences. The ACW472253 code offers comprehensive first-order benefits:   ACW472253 - Flat $100 discount for the first order on qualifying purchases   ACW472253 - $100 Temu coupon code for the first order with extended validity   ACW472253 - Up to $100 coupon for multiple uses across different product categories   ACW472253 - Free shipping to 68 countries ensuring global accessibility   ACW472253 - Extra 30% off on any purchase for the first order maximizing initial savings   How To Find The Temu Coupon Code $100 Off? The Temu coupon $100 offand Temu coupon $100 offReddit can be located through various reliable channels. Any user can get verified and tested coupons by signing up for the Temu newsletter, which provides regular updates on the latest promotional offers and exclusive discount codes. We also recommend visiting Temu's social media pages to get the latest coupons and promos, as the platform frequently shares time-sensitive offers across their official channels.   You can find the latest and working Temu coupon codes by visiting any trusted coupon site that specializes in verified promotional offers. These platforms regularly test and validate coupon codes to ensure customers receive legitimate savings opportunities.   Is Temu $100 offCoupon Legit? The Temu $100 offCoupon Legit and Temu 100 off coupon legit status is absolutely verified and confirmed. Our Temu coupon code ACW472253 is absolutely legit and has been tested across multiple user accounts and purchase scenarios. Any customers can safely use our Temu coupon code to get $100 offon the first order and then on the recurring orders without concerns about legitimacy or validity.   Our code is not only legit but also regularly tested and verified by our team to ensure consistent performance across different user scenarios. Our Temu coupon code is valid worldwide and doesn't have any expiration date, providing customers with flexible redemption opportunities regardless of timing or location.   How Does Temu $100 offCoupon Work? The Temu coupon code $100 offfirst-time user and Temu coupon codes 100 off operate through a straightforward discount application system that reduces your total order value by the specified coupon amount.   When you apply the ACW472253 coupon code at checkout, the system automatically calculates your eligibility based on your order value, account status, and product selection. The discount is then applied to qualifying items in your cart, reducing your total payment amount by up to $100 depending on your purchase value. For orders exceeding the minimum threshold, the full $100 discount is applied immediately, while smaller orders receive proportional discounts based on the total value. The system also accounts for any additional promotions or discounts that may be running simultaneously, ensuring you receive the maximum possible savings on your purchase.   How To Earn Temu $100 Coupons As A New Customer? The Temu coupon code $100 offand 100 off Temu coupon code can be earned through various customer engagement activities designed to reward platform participation and loyalty.   New customers can earn $100 coupons by downloading the official Temu mobile application, which provides access to exclusive in-app promotions and coupon offers not available through the website. Creating a complete user profile with verified contact information also unlocks additional coupon opportunities. Participating in Temu's referral program allows new users to earn coupon credits by inviting friends and family members to join the platform. Additionally, engaging with daily check-in features, spinning promotional wheels, and participating in limited-time games and challenges can generate coupon credits that accumulate toward $100 discount opportunities.   What Are The Advantages Of Using The Temu Coupon $100 Off? The Temu coupon code 100 off and Temu coupon code $100 offprovide numerous advantages for savvy shoppers:   $100 discount on the first order providing immediate substantial savings   $100 coupon bundle for multiple uses extending value across multiple purchases   70% discount on popular items when combined with existing promotions   Extra 30% off for existing Temu customers maximizing repeat purchase value   Up to 90% off in selected items during special promotional periods   Free gift for new users adding extra value to initial purchases   Free delivery to 68 countries ensuring global accessibility   Temu $100 Discount Code And Free Gift For New And Existing Customers The Temu $100 offcoupon code and $100 offTemu coupon code provide multiple benefits for customers regardless of their account status. There are multiple benefits to using our Temu coupon code that extend beyond simple price reductions:   ACW472253 - $100 discount for the first order with immediate application   ACW472253 - Extra 30% off on any item across all product categories   ACW472253 - Free gift for new Temu users adding tangible value   ACW472253 - Up to 70% discount on any item on the Temu app   ACW472253 - Free gift with free shipping in 68 countries including the USA and USA   Pros And Cons Of Using The Temu Coupon Code $100 offThis Month The Temu coupon $100 offcode and Temu 100 off coupon offer several advantages and considerations:   Pros:   Substantial immediate savings of up to $100 on qualifying orders   No expiration date providing flexible redemption timing   Valid for both new and existing customers ensuring inclusive access   Combines with other promotions for maximum savings potential   Free shipping benefits reducing overall order costs   Cons:   Minimum order requirements may apply to certain discount tiers   Limited to specific product categories during promotional periods   Terms And Conditions Of Using The Temu Coupon $100 offIn 2025 The Temu coupon code $100 offfree shipping and latest Temu coupon code $100 offoperate under specific terms and conditions designed to ensure fair usage:   Our coupon code doesn't have any expiration date allowing flexible redemption timing   Valid for both new and existing users in 68 countries worldwide providing global accessibility   No minimum purchase requirements for using our Temu coupon code ACW472253   Free returns within 90 days of purchase ensuring customer satisfaction   Price adjustment policy within 30 days protecting against price fluctuations   Free standard shipping on qualifying orders reducing additional costs   One-time use per customer account preventing multiple redemptions   Final Note: Use The Latest Temu Coupon Code $100 Off The Temu coupon code $100 offrepresents one of the most valuable savings opportunities available to USA customers shopping on the platform today. Whether you're a first-time user or a loyal existing customer, these substantial discounts provide genuine value across thousands of product categories.   Take advantage of the Temu coupon $100 offwhile these promotional offers remain available to maximize your shopping budget and discover why millions of customers worldwide trust Temu for their online shopping needs. The combination of substantial discounts, free shipping benefits, and comprehensive return policies makes this an ideal time to experience everything Temu has to offer.   FAQs Of Temu $100 offCoupon Q: How do I apply the Temu $100 offcoupon code? A: Enter the code ACW472253 at checkout in the promotional code field. The discount will be automatically applied to qualifying orders, reducing your total by up to $100 depending on your purchase value.   Q: Can existing customers use the $100 offTemu coupon? A: Yes, the ACW472253 coupon code is valid for both new and existing customers. Existing users can benefit from additional discounts and free shipping offers when using this code on qualifying orders.   Q: Is there a minimum order requirement for the Temu $100 coupon? A: No minimum purchase requirements apply when using our ACW472253 coupon code. However, the discount amount may vary based on your total order value and product selection at checkout.   Q: How long is the Temu $100 offcoupon valid? A: The ACW472253 coupon code does not have an expiration date, allowing customers to use it whenever convenient. This provides flexibility for both immediate purchases and future shopping plans on the platform.   Q: Can I combine the $100 Temu coupon with other offers? A: Yes, the ACW472253 coupon can often be combined with existing promotions, flash sales, and other discount offers to maximize your total savings. Check at checkout to see available stacking opportunities.  
  • Topics

×
×
  • Create New...

Important Information

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