Jump to content

Recommended Posts

Posted (edited)

Currently I am attempting to create a mod in 1.8 (has to be 1.8 so pls dont say "UPDATE!!!!!")  that will detect when your inventory is full and then run a command. Currently the mod works in single player, but not in multiplayer. As I understand it, the reason its not working in multiplayer is that the events I am trying to call are server based events and not client based events 

Here is my current code 
 

@Mod(modid = Reference.MOD_ID, name = Reference.NAME, version = Reference.VERSION, acceptedMinecraftVersions = Reference.ACCEPTED_VERSIONS)
public class AutoSell 
{
	
	public static String planet;

	@Instance
	public static AutoSell instance;
	
	@SidedProxy(clientSide = Reference.CLIENT_PROXY_CLASS, serverSide = Reference.SERVER_PROXY_CLASS)
	public static CommonProxy proxy;
	
	@Mod.EventHandler
	public void onFMLInitialization(final FMLInitializationEvent event) 
	{
		FMLCommonHandler.instance().bus().register(new LivingEntityEventHandlers());
		ClientCommandHandler.instance.registerCommand((ICommand)new Commands());
		FMLCommonHandler.instance().bus().register((Object)this);
	}
	
	
	@Mod.EventHandler
	public void serverLoad(FMLServerStartingEvent event)
	{
	    // register server commands

	event.registerServerCommand(new Commands());

	 Runnable runnable = new Runnable() {
	      public void run() {
	    	  Minecraft.getMinecraft().thePlayer.sendChatMessage("/lag"); 
	    	  Minecraft.getMinecraft().thePlayer.sendChatMessage("/server " + planet + "planet");
	      }
	    };
	    
	    ScheduledExecutorService service = Executors
	                    .newSingleThreadScheduledExecutor();
	    service.scheduleAtFixedRate(runnable, 0, 1, TimeUnit.MINUTES);
	  }
	
	
	}	
public class LivingEntityEventHandlers 
{	
	int maxslots;
	@SubscribeEvent
	public void PlayerTickeEvent(TickEvent.PlayerTickEvent event) 
	{
		if (event.player instanceof EntityPlayerMP) 
		{

			EntityPlayerMP player = (EntityPlayerMP) event.player;
			InventoryPlayer inventory = player.inventory;		
			for (int i = 0; i < inventory.mainInventory.length; ++i)
	        {
				
				maxslots = i;
	            if (inventory.mainInventory[i] == null)
	            {
	            	
	            }
	            else
	            {
	            	if (maxslots == 35)
	            	{
    				Minecraft.getMinecraft().thePlayer.sendChatMessage("/sell all");
    				maxslots = 0;
    				break;
	            	}
	            }
	        }
	    }
	
				    
}
}

 

 

also the anti afk commands /lag and /server xplanet are not working I assume from the same issue. I'm new to forge coding, so forgive me for my stupidity

Edited by FallingAngel
Mistake
Posted
  On 3/13/2018 at 4:36 PM, diesieben07 said:
  • No, it does not have to be 1.8. Update. No, I don't care about your server or whatever stupid ancient mod you are trying to use. If whatever it is has not updated by now (it's been over three years), it's time to abandon it.
  • You are registering your Commands class as both a client-side command and a server-side command. This can't be right.
  • You are accessing the game code (sendChatMessage) from a separate thread. This does not work. You can only interact with the game from the main thread.
  • When subscribing to any TickEvent, you must check TickEvent::phase.
  • In PlayerTickeEvent (please follow Java naming conventions...) you check if the player is a server-side player (EntityPlayerMP), but then you access a client-only class (Minecraft). This is known as reaching across logical sides and will crash on a dedicated server and cause subtle and hard to trace issues in single player.
Expand  
  • Im not going to argue the point as many servers still use 1.8 over 1.12 but whatever
     
  • The commands class is working perfectly fine on multiplayer and single player servers
     
  • Thank you :) fixed
     
  • I'm am not very sure how to do this? From what I understand, the event triggers off 2x per tick, one at the start and once at the end. As a result this is rapid firing the message being sent, "/sell all" and getting me kicked for spam. How can i use the phase to make sure that at the instance the code only fires a single time?
     

Fixed and now the code is being sent properly :) 

updated code: 

Main

@Mod(modid = Reference.MOD_ID, name = Reference.NAME, version = Reference.VERSION, acceptedMinecraftVersions = Reference.ACCEPTED_VERSIONS)
public class AutoSell 
{
	
	public static String planet;
	
	@Instance
	public static AutoSell instance;
	
	@SidedProxy(clientSide = Reference.CLIENT_PROXY_CLASS, serverSide = Reference.SERVER_PROXY_CLASS)
	public static CommonProxy proxy;
	
	@Mod.EventHandler
	public void onFMLInitialization(final FMLInitializationEvent event) 
	{
		MinecraftForge.EVENT_BUS.register(new LivingEntityEventHandlers());
		ClientCommandHandler.instance.registerCommand((ICommand)new Commands());
		FMLCommonHandler.instance().bus().register((Object)this);
		FMLCommonHandler.instance().bus().register(new AntiAfk());
	}
	
	
	public static void AfkForDays()
	{
		Minecraft.getMinecraft().thePlayer.sendChatMessage("/server " + planet + " planet");
		Minecraft.getMinecraft().thePlayer.sendChatMessage("/lag");	  
	}
	
	
	public static void sellShit() 
	{
		Minecraft.getMinecraft().thePlayer.sendChatMessage("/sell all");	
	}
}


Sell class:
 

public class LivingEntityEventHandlers 
{	
	
	int maxslots;
	@SubscribeEvent
	public void LivingUpdateEvent(LivingEvent event) 
	{
		if (event.entity instanceof EntityPlayerSP) 
		{
			EntityPlayerSP player = (EntityPlayerSP) event.entity;
			InventoryPlayer inventory = player.inventory;		
			for (int i = 0; i < inventory.mainInventory.length; ++i)
	        {
				
				maxslots = i;
	            if (inventory.mainInventory[i] == null)
	            {
	            	
	            }
	            else
	            {
	            	if (maxslots == 35)
	            	{
    				FallingAngel.AutoSell.AutoSell.sellShit();
    				maxslots = 0;
    				break;
	            	}
	            }
	        }
	    }
	}				    
}


AntiAFK (Not Working)

 

public class AntiAfk {
	int tick = 0;
	@SubscribeEvent
    public void onPlayerJoinedServer(FMLNetworkEvent.ClientConnectedToServerEvent event) {
		if(tick != 6000){
			tick++;
			return;
		}
		else 
		{
			tick = 0;
			FallingAngel.AutoSell.AutoSell.AfkForDays();
		}
		
	}


Commands

 

public class Commands extends CommandBase
{ 
    private final List aliases;
  

    private String planets;
  
    public Commands() 
    { 
        aliases = new ArrayList(); 
        aliases.add("planet"); 
        aliases.add("reco"); 
        
    } 
  
    @Override 
    public int compareTo(Object o)
    { 
        return 0; 
    } 

    @Override 
    public String getName() 
    { 
        return "planet"; 
    } 

    @Override         
    public String getCommandUsage(ICommandSender var1) 
    { 
        return "planet <text>"; 
    } 
    
    @Override
    public List getAliases() 
    { 
        return this.aliases;
    } 

    @Override
	public void execute(ICommandSender sender, String[] args) throws CommandException {
    	
    	if (args.length == 0)
    	{
    		Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText("§eplease enter in a planet or do '/planet list' to see the §ecurrent planet! "));
	
    	}
    	
    	else if (args[0].equals("list"))
		{
    		if(planets != null && !planets.isEmpty()) 
    		{
    		System.out.println(args[0]);
			Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText("§eCurrent Planet: §4§l" + planets.toUpperCase()));
    		}
    		else
    		{
    			Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText("§eNo current planet!"));
    		}
		}
    	
    	else 
    	{	

    			FallingAngel.AutoSell.AutoSell.planet = args[0];
    			planets = args[0];
    			Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText("§eplanet has been set to: §4§l" + args[0].toUpperCase() + " §r§eplanet"));

    	}
		
	}
    public boolean canCommandSenderUse(ICommandSender var1) 
    { 
        return true;
    } 

    @Override
	public List addTabCompletionOptions(ICommandSender sender, String[] args, BlockPos pos) {
		// TODO Auto-generated method stub
		return null;
	} 

    @Override 
    public boolean isUsernameIndex(String[] var1, int var2) 
    { 
        // TODO Auto-generated method stub 
        return false;
    }
	
}

 

Posted

Update - got the code to only fire 2x now. I am using phase but for some reason it fires 2x instead of once any idea why?

 

public class Seller {
    private int count = 0;

    @SubscribeEvent
    public void playerTickEvent(TickEvent.PlayerTickEvent event) 
    {
    if (event.phase == TickEvent.Phase.END) {
        if(this.count < 20)
        {
            this.count++;
        }
        else
        {
            this.count = 0;
            if (FallingAngel.AutoSell.LivingEntityEventHandlers.run == 1)
            {
                FallingAngel.AutoSell.LivingEntityEventHandlers.run = 0;
                FallingAngel.AutoSell.AutoSell.sellShit();
                
            }
        }
    }
}
}

public class Seller {
	private int count = 0;

	@SubscribeEvent
	public void playerTickEvent(TickEvent.PlayerTickEvent event) 
	{
	if (event.phase == TickEvent.Phase.END) {
	    if(this.count < 20)
	    {
	        this.count++;
	    }
	    else
	    {
	        this.count = 0;
	        if (FallingAngel.AutoSell.LivingEntityEventHandlers.run == 1)
    		{
	        	FallingAngel.AutoSell.LivingEntityEventHandlers.run = 0;
    			FallingAngel.AutoSell.AutoSell.sellShit();
    			
    		}
	    }
	}
}
}

 

Posted (edited)

For your anti-AFK, please not that 

FMLNetworkEvent.ClientConnectedToServerEvent

says in its class:

Fired at the client when a client connects to a server

 

Its only fired ONCE, so your counter is only ever incremented once

 

Will your mod be on the server that you are connecting to?

Edited by Cadiboo

About Me

  Reveal hidden contents

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

Posted
  On 3/14/2018 at 6:07 AM, Cadiboo said:

For your anti-AFK, please not that 

FMLNetworkEvent.ClientConnectedToServerEvent

says in its class:

Fired at the client when a client connects to a server

 

Its only fired ONCE, so your counter is only ever incremented once

 

Will your mod be on the server that you are connecting to?

Expand  

Anti Afk was changed to a player tick event as that needed to be on a timer and works now :)

No it will not be on the server. The only issue I have now is this:

public class Seller {
	private int count = 0;

	@SubscribeEvent
	public void playerTickEvent(TickEvent.PlayerTickEvent event) 
	{
	if (event.phase == TickEvent.Phase.END) {
	    if(this.count < 12000)
	    {
	        this.count++;
	    }
	    else
	    {
	    count = 0;
	    FallingAngel.AutoSell.AutoSell.sellShit();			
    	}
	    }
	}
}

is running the FallingAngel.AutoSell.AutoSell.sellShit(); 2x rather than 1 time. 

Posted

There's also a SIDE parameter. CLIENT and SERVER.

You need to pick one.

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

Try inserting some logging to find out what side it is being called on, what called it etc.

About Me

  Reveal hidden contents

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

  • 1 year later...
Posted
  On 3/13/2018 at 4:36 PM, diesieben07 said:
  • No, it does not have to be 1.8. Update. No, I don't care about your server or whatever stupid ancient mod you are trying to use. If whatever it is has not updated by now (it's been over three years), it's time to abandon it.
Expand  

Half the Minecraft multiplayer player-base still play 1.8, shut the fuck up and stop being so ignorant

  • Guest locked this topic
Guest
This topic is now closed to further replies.

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.  
    • Looking for a fantastic way to save big on your next Temu order? The acr639380 Temu coupon code is exactly what you need! Whether you're shopping from the USA, Canada, or Europe, this code offers unbeatable savings — up to $100 off your next purchase. If you’ve been eyeing something on Temu, now’s the perfect time to grab it with this exclusive offer!  What Is the Coupon Code for Temu $100 Off? Both new and existing customers can benefit from this incredible deal when shopping on the Temu app or website. Just use code acr639380 at checkout to unlock your $100 discount. Here’s what it offers: acr639380: Flat $100 off your next purchase.   acr639380: Receive a $100 coupon pack for multiple uses.   acr639380: New customers get an exclusive $100 off their first purchase.   acr639380: Existing customers can claim an extra $100 off future purchases.   acr639380: Valid in the USA, Canada, and across Europe.    Temu $100 Off Coupon for New Users in 2025 If you're new to Temu, this coupon code is perfect for you. It’s your chance to enjoy huge savings right from your very first order. Here’s what new customers get with acr639380: Flat $100 discount on your first order.   Access to a $100 coupon bundle for multiple purchases.   Stack up to $100 in discounts across various orders.   Free shipping to 68 countries, including the USA, Canada, and UK.   An additional 30% off any item on your first purchase.    How to Redeem the Temu $100 Off Coupon (For New Users) It’s simple! Follow these quick steps: Visit the Temu website or download the Temu app.   Create a new account.   Add your favorite products to your cart.   At checkout, enter the Temu $100 off coupon code: acr639380.   Apply the code, enjoy the savings, and complete your purchase!    Temu Coupon $100 Off for Existing Customers Good news — existing customers aren’t left out! Temu rewards loyal shoppers too. Perks for returning users with acr639380: Get an extra $100 off your next order.   A $100 coupon bundle for multiple future purchases.   Free gifts with express shipping (USA & Canada).   An additional 30% off on any purchase.   Free shipping to 68 countries globally.    How to Use Temu $100 Off Coupon (For Existing Customers) To redeem: Log into your Temu account.   Add your items to the cart.   At checkout, enter acr639380.   Apply the code and enjoy your savings!    Temu $100 Off Coupon for First Orders Your first Temu order just got better with acr639380: $100 off your initial purchase.   Access to exclusive first-time user discounts.   Up to $100 in savings on multiple items.   Free shipping to 68 countries.   Extra 30% off your first order.    Where to Find the Latest Temu $100 Off Coupon Looking for the newest and verified Temu coupon codes? Here’s where you can find them: Temu’s newsletter: Subscribe for email-exclusive deals.   Official Temu social media pages.   Trusted coupon websites.   Community threads like Temu coupon $100 off Reddit where users share legit codes.    Is the Temu $100 Off Coupon Legit? Absolutely — the acr639380 coupon is verified, tested, and 100% legit. It works for both new and existing customers worldwide, with no expiration date. Use it with confidence!  How Does the Temu $100 Off Coupon Work? Simple — enter acr639380 at checkout, and the discount is applied automatically. Whether it’s your first order or a repeat purchase, you’ll enjoy direct savings.  How to Earn Temu $100 Coupons as a New Customer New customers can score extra Temu savings by: Signing up for a new Temu account.   Making your first purchase using acr639380.   Watching for special promotions and email deals.   Checking Temu’s homepage for limited-time coupon bundles.    Advantages of Using the Temu $100 Off Coupon Here’s what makes this coupon so appealing: Flat $100 discount on first-time and future orders.   $100 coupon bundle for multiple uses.   Up to 90% off popular products.   Extra 30% off for existing customers.   Free gifts for new users.   Free shipping to 68 countries, including the USA, UK, and Canada.    Temu $100 Discount Code + Free Gift for Everyone Both new and existing customers get added perks: $100 off your first order.   An extra 30% off any product.   Free gifts on first purchases.   Up to 90% off select deals on the Temu app.   Free shipping to 68 countries.    Pros and Cons of Using the Temu Coupon Code $100 Off in 2025 Pros: Massive $100 discount.   Up to 90% off on select items.   Free global shipping to 68 countries.   30% off bonus for existing users.   Verified, legit, and no expiration date.   Cons: Free shipping limited to select countries.   Some exclusions may apply to already discounted items.    Terms and Conditions (2025) No expiration date.   Valid in 68 countries.   No minimum spend required.   Applicable for multiple purchases.   Some product exclusions may apply.    Final Note: Don’t Miss Out on the $100 Temu Coupon If you’re shopping on Temu, don’t leave money on the table. Use coupon code acr639380 to unlock $100 off, free shipping, extra discounts, and exclusive perks. It’s one of the easiest ways to make your shopping spree even more rewarding.  FAQs: Temu $100 Off Coupon Q: Is the $100 off coupon available for both new and existing customers? A: Yes! Both can use acr639380 for amazing discounts. Q: How do I redeem the Temu $100 coupon? A: Enter acr639380 at checkout to instantly save $100. Q: Does the Temu coupon expire? A: No — this coupon currently has no expiration date. Q: Can the coupon be used for multiple purchases? A: Yes, the $100 off coupon and bundle can apply to multiple orders. Q: Does it work for international users? A: Absolutely! It’s valid in 68 countries, including the USA, Canada, and Europe.
    • Go to the config folder and open the secretroomsmod.cfg   At the bottom, you will find:   # Check for mod updates on startup B:update_checker=true   Change it to false:   # Check for mod updates on startup B:update_checker=false  
  • Topics

×
×
  • Create New...

Important Information

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