Jump to content

Custom cable?


Bamse5b

Recommended Posts

BTW, Heres my render code:

package CCTV;

import net.minecraft.client.gui.FontRenderer;
import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;
import net.minecraft.tileentity.TileEntity;
import org.lwjgl.opengl.GL11;
import java.io.IOException;
import java.io.InputStream;

public class RenderFineWire extends TileEntitySpecialRenderer{

public RenderFineWire(){
model = new ModelFineWire();
}

public void renderAModelAt(TileEntityFineWire tileEntity, double d, double d1, double d2, float f) {

int rotation = 0;
if(tileEntity.worldObj != null)
{
rotation = tileEntity.getBlockMetadata();
}
bindTextureByName("/mods/CCTV/textures/customBlocks/CameraTable.png"); //texture
GL11.glPushMatrix();
GL11.glTranslatef((float)d + 0.5F, (float)d1 + 1.5F, (float)d2 + 0.5F);
GL11.glScalef(1.0F, -1F, -1F);
GL11.glRotatef(rotation*90, 0.0F, 1.0F, 0.0F);

if (tileEntity.isConnected[0] != false)
{
model.renderBottom();
}
if (tileEntity.isConnected[1] != false)
{
model.renderTop();
}
if (tileEntity.isConnected[2] != false)
{
model.renderFront();
}
if (tileEntity.isConnected[3] != false)
{
model.renderBack();
}
if (tileEntity.isConnected[4] != false)
{
model.renderRight();
}
if (tileEntity.isConnected[5] != false)
{
model.renderLeft();
}

model.renderMiddle();
GL11.glPopMatrix();
}

private ModelFineWire model;

public void renderTileEntityAt(TileEntity par1TileEntity, double par2, double par4, double par6, float par8)
{
this.renderAModelAt((TileEntityFineWire)par1TileEntity, par2, par4, par6, par8);
}
}

Link to comment
Share on other sites

BTW, Heres my render code:

package CCTV;

import net.minecraft.client.gui.FontRenderer;
import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;
import net.minecraft.tileentity.TileEntity;
import org.lwjgl.opengl.GL11;
import java.io.IOException;
import java.io.InputStream;

public class RenderFineWire extends TileEntitySpecialRenderer{

public RenderFineWire(){
model = new ModelFineWire();
}

public void renderAModelAt(TileEntityFineWire tileEntity, double d, double d1, double d2, float f) {

int rotation = 0;
if(tileEntity.worldObj != null)
{
rotation = tileEntity.getBlockMetadata();
}
bindTextureByName("/mods/CCTV/textures/customBlocks/CameraTable.png"); //texture
GL11.glPushMatrix();
GL11.glTranslatef((float)d + 0.5F, (float)d1 + 1.5F, (float)d2 + 0.5F);
GL11.glScalef(1.0F, -1F, -1F);
GL11.glRotatef(rotation*90, 0.0F, 1.0F, 0.0F);

if (tileEntity.isConnected[0] != false)
{
model.renderBottom();
}
if (tileEntity.isConnected[1] != false)
{
model.renderTop();
}
if (tileEntity.isConnected[2] != false)
{
model.renderFront();
}
if (tileEntity.isConnected[3] != false)
{
model.renderBack();
}
if (tileEntity.isConnected[4] != false)
{
model.renderRight();
}
if (tileEntity.isConnected[5] != false)
{
model.renderLeft();
}

model.renderMiddle();
GL11.glPopMatrix();
}

private ModelFineWire model;

public void renderTileEntityAt(TileEntity par1TileEntity, double par2, double par4, double par6, float par8)
{
this.renderAModelAt((TileEntityFineWire)par1TileEntity, par2, par4, par6, par8);
}
}

Link to comment
Share on other sites

Isn't this:

if (tileEntity.isConnected[5] != false)
{
model.renderLeft();
}

 

Checking to see if the tileEntity has a connection to the left side, and if it is it will render the left side connection for your block?

For me it seems like the above code should work, if your renderLeft() method is written properly that is :P

 

I'm not sure if I see what your problem is, you're code seems fine, so since it's not working I wonder if this part of the code is copied from a tutorial or some other code?

If you guys dont get it.. then well ya.. try harder...

Link to comment
Share on other sites

I didnt copy it, i just looked how other people did it and found out its the tile entity thats going to check if theres any other cables next to it. But I dont know how to check it, right now i can make a part visible if I change a false to true..

Link to comment
Share on other sites

Correct, but I only got this part working :P

package CCTV;

import net.minecraft.tileentity.TileEntity;

public class TileEntityFineWire extends TileEntity{

public boolean[] isConnected = { false, false, false, false, false, false };

public TileEntityFineWire()
{
}
}

Link to comment
Share on other sites

Yes I do understand what you mean, but I'm trying to ask you what logically must be true in order for it to connect to the left side?

 

Edit: I don't mean for you to tell me some code for it, just tell me what you believe is needed to be true in order for it to connect to the left.

If you guys dont get it.. then well ya.. try harder...

Link to comment
Share on other sites

well I think you missed the question, I didn't ask if the method needs to be true, not about the code at all.

 

If you stop thinking about the code, just think that the system is working and everything is fine.

If the cable connects to the left side, what needs to be on the left side?

If you guys dont get it.. then well ya.. try harder...

Link to comment
Share on other sites

I want it to connect to another cable!

1. Yes that's the answer, there needs to be another cable there!

So how do we check to see if there is a cable at that place? :)

 

WITHOUT changing false to true!

 

If you never will change the value false to true, what's the point of having them at all?

If the value can't change from true to false and back to true depending on it's connection status what's the point of the variable then? :P

If you guys dont get it.. then well ya.. try harder...

Link to comment
Share on other sites

I want it to connect to another cable!

1. Yes that's the answer, there needs to be another cable there!

 

WITHOUT changing false to true!

 

If you never will change the value false to true, what's the point of having them at all?

If the value can't change from true to false and back to true depending on it's connection status what's the point of the variable then? :P

Do you understand that at all?! The variables are there so the code will CHANGE THEM when it detects another cable!! But im asking HOW TO DETECT IF THERE IS ANOTHER CABLE NEARBY!!!  >:(

Link to comment
Share on other sites

Yeah I know what they are meant to do and I understand the concept perfectly, but at the same time I'm trying to teach you how it works and I also try to point out that the statement you made would not work out.

 

I assumed you intended for them to change and not having to hard code them to be true or false.

But what you said was that you intended them to not change from false to true.

 

HOW TO DETECT IF THERE IS ANOTHER CABLE NEARBY!!!  >:(

So you told me you needed a cable to be at the left location in order to connect to it, right?

Well how do you detect if there's a block at a given position inn the world?

Is there a method to let you know what block is at a given x,y,z position?

 

If you guys dont get it.. then well ya.. try harder...

Link to comment
Share on other sites

1. I'm trying to help you and you get pissed at me.. makes me wonder why I bother use my spare time to answer logic questions inn the first place. Come'on man..

 

2. I know of the UE mod/framework and have used it earlier yeah, since you are looking at the code for it you could just see how he is checking if it's touching another cable? :P

 

3. I'm not sure I see you're problem really? My suggestion above would work to achieve what you asked for and you did not say "without checking the block" so WTF is your problem?

If you guys dont get it.. then well ya.. try harder...

Link to comment
Share on other sites

Forget it, found out how... This was a little useless  :'(

Yeah.. you could just read the code on how UE is doing it, or said you wanted to do it like UE, or in general be more clear about what you wanted to achieve. As far as I can tell the problem you stated would be solvable by my suggestion of getting the block or te from the location to the left of the cable.. So I still don't see you're problem nor any reason for your anger.

If you guys dont get it.. then well ya.. try harder...

Link to comment
Share on other sites

Forget it, found out how... This was a little useless  :'(

Yeah.. you could just read the code on how UE is doing it, or said you wanted to do it like UE, or in general be more clear about what you wanted to achieve. As far as I can tell the problem you stated would be solvable by my suggestion of getting the block or te from the location to the left of the cable.. So I still don't see you're problem nor any reason for your anger.

Bevause you could explain it good enogh for a guy thats not english -.-

Link to comment
Share on other sites

I'm sorry?

 

I tried my best to keep my English as decent and grammaticly correct as I could, and keep my terms as simple as possible to make it harder to misunderstand me as my english sucks. Considering that my english skills are quite limited due to the fact that I'm scandinavian and we lack a proper english educational system.

 

So I have no idea how I could in a simpler way ask you for your thoughts and poked you inn the correct direction?

If you guys dont get it.. then well ya.. try harder...

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Created new worlds and still had problems https://mclo.gs/ZoySn3o
    • Hello There! In the 169th episode of Hunger Games this is an EXTREMELY short game which we didn't think that was going to happen with 10 people in this game but this is an extremely great and fast game!  
    • I am dont understand what the cause of the crash was, due to me not knowing coding.  Here is the crash log   ---- Minecraft Crash Report ---- // On the bright side, I bought you a teddy bear! Time: 2024-05-21 17:43:48 EDT Description: Exception ticking world java.util.ConcurrentModificationException     at java.util.HashMap$HashIterator.nextNode(HashMap.java:1473)     at java.util.HashMap$KeyIterator.next(HashMap.java:1497)     at net.minecraft.entity.EntityTracker.sendLeashedEntitiesInChunk(EntityTracker.java:386)     at net.minecraft.server.management.PlayerChunkMapEntry.sendToPlayers(PlayerChunkMapEntry.java:162)     at net.minecraft.server.management.PlayerChunkMap.tick(SourceFile:165)     at net.minecraft.world.WorldServer.tick(WorldServer.java:227)     at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:756)     at net.minecraft.server.dedicated.DedicatedServer.updateTimeLightAndEntities(DedicatedServer.java:397)     at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:668)     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:526)     at java.lang.Thread.run(Thread.java:748) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Affected level --   Level name: world   All players: 2 total; [GCEntityPlayerMP['gStar351'/118636, l='world', x=-668.21, y=68.00, z=488.64], GCEntityPlayerMP['BulkRapier'/131507, l='world', x=-73.50, y=66.00, z=336.50]]   Chunk stats: ServerChunkCache: 601 Drop: 0   Level seed: -4867759358632803902   Level generator: ID 06 - BIOMESOP, ver 0. Features enabled: true   Level generator options:    Level spawn location: World: (32,64,256), Chunk: (at 0,4,0 in 2,16; contains blocks 32,0,256 to 47,255,271), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)   Level time: 1413585 game time, 3284 day time   Level dimension: 0   Level storage version: 0x04ABD - Anvil   Level weather: Rain time: 112654 (now: false), thunder time: 6708 (now: false)   Level game mode: Game mode: survival (ID 0). Hardcore: false. Cheats: false -- System Details --   Minecraft Version: 1.12.2   Operating System: Linux (amd64) version 4.15.0-176-generic   Java Version: 1.8.0_311, Oracle Corporation   Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation   Memory: 6334348984 bytes (6040 MB) / 8189378560 bytes (7810 MB) up to 22906667008 bytes (21845 MB)   JVM Flags: 2 total; -Xmx24576M -Xms512M   IntCache: cache: 0, tcache: 0, allocated: 4, tallocated: 105   FML: MCP 9.42 Powered by Forge 14.23.5.2854 269 mods loaded, 267 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                                |        |:------ |:--------------------------------- |:------------------------ |:----------------------------------------------------------- |:---------------------------------------- |        | LCHIJA | minecraft                         | 1.12.2                   | minecraft.jar                                               | None                                     |        | LCHIJA | mcp                               | 9.42                     | minecraft.jar                                               | None                                     |        | LCHIJA | FML                               | 8.0.99.99                | twitch_mc_eternal_lite_1.3.8.1.jar                          | e3c3d50c7c986df74c645c0ac54639741c90a557 |        | LCHIJA | forge                             | 14.23.5.2854             | twitch_mc_eternal_lite_1.3.8.1.jar                          | e3c3d50c7c986df74c645c0ac54639741c90a557 |        | LCHIJA | advancedrocketrycore              | 1                        | minecraft.jar                                               | None                                     |        | LCHIJA | ColorUtility                      | 1.0.4                    | minecraft.jar                                               | None                                     |        | LCHIJA | creativecoredummy                 | 1.0.0                    | minecraft.jar                                               | None                                     |        | LCHIJA | micdoodlecore                     | 4.0.6                    | minecraft.jar                                               | None                                     |        | LCHIJA | ivtoolkit                         | 1.3.3-1.12               | minecraft.jar                                               | None                                     |        | LCHIJA | littletilescore                   | 1.0.0                    | minecraft.jar                                               | None                                     |        | LCHIJA | openmodscore                      | 0.12.2                   | minecraft.jar                                               | None                                     |        | LCHIJA | foamfixcore                       | 7.7.4                    | minecraft.jar                                               | None                                     |        | LCHIJA | opencomputers|core                | 1.7.5.192                | minecraft.jar                                               | None                                     |        | LCHIJA | randompatches                     | 1.12.2-1.22.1.10         | randompatches-1.12.2-1.22.1.10.jar                          | None                                     |        | LCHIJA | tweakersconstruct                 | 1.12.2-1.6.0             | tweakersconstruct-1.12.2-1.6.0.jar                          | None                                     |        | LCHIJA | fastbench                         | 1.7.3                    | FastWorkbench-1.12.2-1.7.3.jar                              | None                                     |        | LCHIJA | actuallyadditions                 | 1.12.2-r152              | ActuallyAdditions-1.12.2-r152.jar                           | None                                     |        | LCHIJA | forgeendertech                    | 1.12.2-4.5.5.0           | ForgeEndertech-1.12.2-4.5.5.0-build.0561.jar                | None                                     |        | LCHIJA | adlods                            | 1.12.2-1.0.8.0           | AdLods-1.12.2-1.0.8.0-build.0504.jar                        | None                                     |        | LCHIJA | redstoneflux                      | 2.1.1                    | RedstoneFlux-1.12-2.1.1.1-universal.jar                     | None                                     |        | LCHIJA | cofhcore                          | 4.6.6                    | CoFHCore-1.12.2-4.6.6.1-universal.jar                       | None                                     |        | LCHIJA | libvulpes                         | 0.4.2.-75                | LibVulpes-1.12.2-0.4.2-75-universal.jar                     | None                                     |        | LCHIJA | advancedrocketry                  | 1.7.0.-232               | AdvancedRocketry-1.12.2-1.7.0-232-universal.jar             | None                                     |        | LCHIJA | appliedenergistics2               | rv6-stable-7             | appliedenergistics2-rv6-stable-7.jar                        | dfa4d3ac143316c6f32aa1a1beda1e34d42132e5 |        | LCHIJA | bdlib                             | 1.14.3.12                | bdlib-1.14.3.12-mc1.12.2.jar                                | None                                     |        | LCHIJA | ae2stuff                          | 0.7.0.4                  | ae2stuff-0.7.0.4-mc1.12.2.jar                               | None                                     |        | LCHIJA | baubles                           | 1.5.2                    | Baubles-1.12-1.5.2.jar                                      | None                                     |        | LCHIJA | roots                             | 1.12.2-3.0.33            | Roots-1.12.2-3.0.33.jar                                     | None                                     |        | LCHIJA | mysticalworld                     | 1.12.2-1.9.8             | mysticalworld-1.12.2-1.9.8.jar                              | None                                     |        | LCHIJA | endercore                         | 1.12.2-0.5.76            | EnderCore-1.12.2-0.5.76.jar                                 | None                                     |        | LCHIJA | crafttweaker                      | 4.1.20                   | CraftTweaker2-1.12-4.1.20.635.jar                           | None                                     |        | LCHIJA | mtlib                             | 3.0.6                    | MTLib-3.0.6.jar                                             | None                                     |        | LCHIJA | modtweaker                        | 4.0.18                   | modtweaker-4.0.18.jar                                       | None                                     |        | LCHIJA | jei                               | 4.16.1.302               | jei_1.12.2-4.16.1.302.jar                                   | None                                     |        | LCHIJA | thaumcraft                        | 6.1.BETA26               | Thaumcraft-1.12.2-6.1.BETA26.jar                            | None                                     |        | LCHIJA | codechickenlib                    | 3.2.3.358                | CodeChickenLib-1.12.2-3.2.3.358-universal.jar               | f1850c39b2516232a2108a7bd84d1cb5df93b261 |        | LCHIJA | cofhworld                         | 1.4.0                    | CoFHWorld-1.12.2-1.4.0.1-universal.jar                      | None                                     |        | LCHIJA | thermalfoundation                 | 2.6.7                    | ThermalFoundation-1.12.2-2.6.7.1-universal.jar              | None                                     |        | LCHIJA | thermalexpansion                  | 5.5.7                    | ThermalExpansion-1.12.2-5.5.7.1-universal.jar               | None                                     |        | LCHIJA | enderio                           | 5.3.70                   | EnderIO-1.12.2-5.3.70.jar                                   | None                                     |        | LCHIJA | mantle                            | 1.12-1.3.3.55            | Mantle-1.12-1.3.3.55.jar                                    | None                                     |        | LCHIJA | chisel                            | MC1.12.2-1.0.2.45        | Chisel-MC1.12.2-1.0.2.45.jar                                | None                                     |        | LCHIJA | enderiointegrationtic             | 5.3.70                   | EnderIO-1.12.2-5.3.70.jar                                   | None                                     |        | LCHIJA | tombstone                         | 4.1.2                    | tombstone-4.1.2-1.12.2.jar                                  | None                                     |        | LCHIJA | quark                             | r1.6-179                 | Quark-r1.6-179.jar                                          | None                                     |        | LCHIJA | twilightforest                    | 3.11.1021                | twilightforest-1.12.2-3.11.1021-universal.jar               | None                                     |        | LCHIJA | tconstruct                        | 1.12.2-2.13.0.183        | TConstruct-1.12.2-2.13.0.183.jar                            | None                                     |        | LCHIJA | p455w0rdslib                      | 2.3.161                  | p455w0rdslib-1.12.2-2.3.161.jar                             | 186bc454cd122c9c2f1aa4f95611254bcc543363 |        | LCHIJA | ae2wtlib                          | 1.0.34                   | AE2WTLib-1.12.2-1.0.34.jar                                  | 186bc454cd122c9c2f1aa4f95611254bcc543363 |        | LCHIJA | infinitylib                       | 1.12.2-1.12.1            | infinitylib-1.12.1.jar                                      | None                                     |        | LCHIJA | agricraft                         | 2.12.0-1.12.2-b2         | agricraft-2.12.0-1.12.2-b2.jar                              | None                                     |        | LCHIJA | aiimprovements                    | 0.0.1.3                  | AIImprovements-1.12-0.0.1b3.jar                             | None                                     |        | LCHIJA | akashictome                       | 1.2-12                   | AkashicTome-1.2-12.jar                                      | None                                     |        | LCHIJA | applecore                         | 3.4.0                    | AppleCore-mc1.12.2-3.4.0.jar                                | None                                     |        | LCHIJA | appleskin                         | 1.0.14                   | AppleSkin-mc1.12-1.0.14.jar                                 | None                                     |        | LCHIJA | architecturecraft                 | @VERSION@                | architecturecraft-1.12-3.98.jar                             | None                                     |        | LCHIJA | conarm                            | 1.2.5.10                 | conarm-1.12.2-1.2.5.10.jar                                  | b33d2c8df492beff56d1bbbc92da49b8ab7345a1 |        | LCHIJA | armoryexpansion                   | 1.4.2                    | armoryexpansion-1.4.2.jar                                   | None                                     |        | LCHIJA | armoryexpansion-custommaterials   | 1.4.2                    | armoryexpansion-1.4.2.jar                                   | None                                     |        | LCHIJA | llibrary                          | 1.7.20                   | llibrary-1.7.20-1.12.2.jar                                  | b9f30a813bee3b9dd5652c460310cfcd54f6b7ec |        | LCHIJA | iceandfire                        | 1.9.1                    | iceandfire-1.9.1-1.12.2.jar                                 | None                                     |        | LCHIJA | armoryexpansion-iceandfire        | 1.4.2                    | armoryexpansion-1.4.2.jar                                   | None                                     |        | LCHIJA | armoryexpansion-matteroverdrive   | 1.4.2                    | armoryexpansion-1.4.2.jar                                   | None                                     |        | LCHIJA | aroma1997core                     | 2.0.0.2.b167             | Aroma1997Core-1.12.2-2.0.0.2.b167.jar                       | dfbfe4c473253d8c5652417689848f650b2cbe32 |        | LCHIJA | aromabackup                       | 3.0.0.0.b135             | AromaBackup-1.12.2-3.0.0.0.b135.jar                         | dfbfe4c473253d8c5652417689848f650b2cbe32 |        | LCHIJA | aromabackuprecovery               | 3.0.0.0.b135             | AromaBackup-1.12.2-3.0.0.0.b135.jar                         | dfbfe4c473253d8c5652417689848f650b2cbe32 |        | LCHIJA | artifacts                         | 1.12.2-1.2.3             | Artifacts-1.12.2-1.2.3.jar                                  | None                                     |        | LCHIJA | astralsorcery                     | 1.10.27                  | astralsorcery-1.12.2-1.10.27.jar                            | a0f0b759d895c15ceb3e3bcb5f3c2db7c582edf0 |        | LCHIJA | attributefix                      | 1.0.4                    | AttributeFix-1.12.2-1.0.4.jar                               | d476d1b22b218a10d845928d1665d45fce301b27 |        | LCHIJA | atum                              | 2.0.20                   | Atum-1.12.2-2.0.20.jar                                      | None                                     |        | LCHIJA | mdecore                           | 1.12-1.1                 | mdecore-1.12-1.1.jar                                        | None                                     |        | LCHIJA | autooredictconv                   | 1.12-1.0.1               | autooredictconv-1.12-1.0.1.jar                              | None                                     |        | LCHIJA | autoreglib                        | 1.3-32                   | AutoRegLib-1.3-32.jar                                       | None                                     |        | LCHIJA | badwithernocookiereloaded         | 1.12.2-3.4.18            | badwithernocookiereloaded-1.12.2-3.4.18.jar                 | None                                     |        | LCHIJA | battletowers                      | 1.6.5                    | BattleTowers-1.12.2.jar                                     | None                                     |        | LCHIJA | betterbuilderswands               | 0.13.2                   | BetterBuildersWands-1.12.2-0.13.2.271+5997513.jar           | None                                     |        | LCHIJA | botania                           | r1.10-363                | Botania r1.10-363.jar                                       | None                                     |        | LCHIJA | mowziesmobs                       | 1.5.8                    | mowziesmobs-1.5.8.jar                                       | None                                     |        | LCHIJA | patchouli                         | 1.0-23.6                 | Patchouli-1.0-23.6.jar                                      | None                                     |        | LCHIJA | bewitchment                       | 0.22.63                  | bewitchment-1.12.2-0.0.22.64.jar                            | None                                     |        | LCHIJA | bibliocraft                       | 2.4.5                    | BiblioCraft[v2.4.5][MC1.12.2].jar                           | None                                     |        | LCHIJA | biomesoplenty                     | 7.0.1.2444               | BiomesOPlenty-1.12.2-7.0.1.2444-universal.jar               | None                                     |        | LCHIJA | biomestaff                        | 1.0.0                    | BiomeStaff-1.12.2-1.0.0.jar                                 | None                                     |        | LCHIJA | guideapi                          | 1.12-2.1.8-63            | Guide-API-1.12-2.1.8-63.jar                                 | None                                     |        | LCHIJA | bloodmagic                        | 1.12.2-2.4.3-105         | BloodMagic-1.12.2-2.4.3-105.jar                             | None                                     |        | LCHIJA | bookshelf                         | 2.3.590                  | Bookshelf-1.12.2-2.3.590.jar                                | d476d1b22b218a10d845928d1665d45fce301b27 |        | LCHIJA | brokenwings                       | 2.0.0                    | brokenwings-3.0.0.jar                                       | None                                     |        | LCHIJA | buildinggadgets                   | 2.8.4                    | BuildingGadgets-2.8.4.jar                                   | None                                     |        | LCHIJA | reborncore                        | 3.19.5                   | RebornCore-FORK-1.12.2-3.19.5-universal.jar                 | None                                     |        | LCHIJA | techreborn                        | 2.27.3.1084              | TechReborn-1.12.2-2.27.3.1084-universal.jar                 | 8727a3141c8ec7f173b87aa78b9b9807867c4e6b |        | LCHIJA | forestry                          | 5.8.2.422                | forestry_1.12.2-5.8.2.422.jar                               | None                                     |        | LCHIJA | careerbees                        | 1.0                      | careerbees-0.4.0.jar                                        | None                                     |        | LCHIJA | chameleon                         | 1.12-4.1.3               | Chameleon-1.12-4.1.3.jar                                    | None                                     |        | LCHIJA | champions                         | 1.12.2-1.0.11.10         | champions-1.12.2-1.0.11.10.jar                              | b33d2c8df492beff56d1bbbc92da49b8ab7345a1 |        | LCHIJA | chancecubes                       | 1.12.2-5.0.2.385         | ChanceCubes-1.12.2-5.0.2.385.jar                            | None                                     |        | LCHIJA | charm                             | 1.4                      | Charm-1.12.2-1.4.1.jar                                      | None                                     |        | LCHIJA | chiselsandbits                    | 14.33                    | chiselsandbits-14.33.jar                                    | None                                     |        | LCHIJA | chunkpregenerator                 | 2.5.0                    | Chunk Pregenerator-V1.12-2.5.0.jar                          | None                                     |        | LCHIJA | clumps                            | 3.1.2                    | Clumps-3.1.2.jar                                            | None                                     |        | LCHIJA | cyclopscore                       | 1.6.7                    | CyclopsCore-1.12.2-1.6.7.jar                                | bd0353b3e8a2810d60dd584e256e364bc3bedd44 |        | LCHIJA | commoncapabilities                | 2.4.8                    | CommonCapabilities-1.12.2-2.4.8.jar                         | bd0353b3e8a2810d60dd584e256e364bc3bedd44 |        | LCHIJA | cookingforblockheads              | 6.5.0                    | CookingForBlockheads_1.12.2-6.5.0.jar                       | None                                     |        | LCHIJA | cosmeticarmorreworked             | 1.12.2-v5a               | CosmeticArmorReworked-1.12.2-v5a.jar                        | aaaf83332a11df02406e9f266b1b65c1306f0f76 |        | LCHIJA | craftingtweaks                    | 8.1.9                    | CraftingTweaks_1.12.2-8.1.9.jar                             | None                                     |        | LCHIJA | craftstudioapi                    | 1.0.0                    | CraftStudio-1.0.0.93-mc1.12-alpha.jar                       | None                                     |        | LCHIJA | crafttweakerjei                   | 2.0.3                    | CraftTweaker2-1.12-4.1.20.635.jar                           | None                                     |        | LCHIJA | creativecore                      | 1.10.0                   | CreativeCore_v1.10.61_mc1.12.2.jar                          | None                                     |        | LCHIJA | cucumber                          | 1.1.3                    | Cucumber-1.12.2-1.1.3.jar                                   | None                                     |        | LCHIJA | culinaryconstruct                 | 1.3.4                    | culinaryconstruct-1.3.4.jar                                 | 2484ef4d131fdc0dca0647aa21b7b944ddb935a1 |        | LCHIJA | customizeddungeonloot             | 1.0.3                    | Customized-Dungeon-Loot-1.12 -(v.1.0.3).jar                 | None                                     |        | LCHIJA | waila                             | 1.8.26                   | Hwyla-1.8.26-B41_1.12.2.jar                                 | None                                     |        | LCHIJA | stg                               | 1.12.2-1.2.3             | stg-1.12.2-1.2.3.jar                                        | None                                     |        | LCHIJA | danknull                          | 1.7.101                  | DankNull-1.12.2-1.7.101.jar                                 | 644f38521a349310a5dae0239577dc7beebefaec |        | LCHIJA | darknesslib                       | 1.1.0                    | DarknessLib-1.12.2-1.1.0.jar                                | 220f10d3a93b3ff5fbaa7434cc629d863d6751b9 |        | LCHIJA | doggytalents                      | 1.15.1.6                 | DoggyTalents-1.12.2-1.15.1.6.jar                            | None                                     |        | LCHIJA | dungeontactics                    | DT-0.16.9                | DungeonTactics-1.12.2-0.16.9.jar                            | None                                     |        | LCHIJA | ebwizardry                        | 4.3.4                    | ElectroblobsWizardry-4.3.4-MC1.12.2.jar                     | None                                     |        | LCHIJA | enderiobase                       | 5.3.70                   | EnderIO-1.12.2-5.3.70.jar                                   | None                                     |        | LCHIJA | enderioconduits                   | 5.3.70                   | EnderIO-1.12.2-5.3.70.jar                                   | None                                     |        | LCHIJA | enderioconduitsappliedenergistics | 5.3.70                   | EnderIO-1.12.2-5.3.70.jar                                   | None                                     |        | LCHIJA | opencomputers                     | 1.7.5.192                | OpenComputers-MC1.12.2-1.7.5.192.jar                        | None                                     |        | LCHIJA | enderioconduitsopencomputers      | 5.3.70                   | EnderIO-1.12.2-5.3.70.jar                                   | None                                     |        | LCHIJA | enderioconduitsrefinedstorage     | 5.3.70                   | EnderIO-1.12.2-5.3.70.jar                                   | None                                     |        | LCHIJA | enderiointegrationforestry        | 5.3.70                   | EnderIO-1.12.2-5.3.70.jar                                   | None                                     |        | LCHIJA | enderiointegrationticlate         | 5.3.70                   | EnderIO-1.12.2-5.3.70.jar                                   | None                                     |        | LCHIJA | enderioinvpanel                   | 5.3.70                   | EnderIO-1.12.2-5.3.70.jar                                   | None                                     |        | LCHIJA | ftblib                            | 5.4.7.2                  | FTBLib-5.4.7.2.jar                                          | None                                     |        | LCHIJA | enderiomachines                   | 5.3.70                   | EnderIO-1.12.2-5.3.70.jar                                   | None                                     |        | LCHIJA | enderiopowertools                 | 5.3.70                   | EnderIO-1.12.2-5.3.70.jar                                   | None                                     |        | LCHIJA | mcmultipart                       | 2.5.3                    | MCMultiPart-2.5.3.jar                                       | None                                     |        | LCHIJA | mekanism                          | 1.12.2-9.8.3.390         | Mekanism-1.12.2-9.8.3.390.jar                               | None                                     |        | LCHIJA | gasconduits                       | 5.3.70                   | EnderIO-conduits-mekanism-1.12.2-5.3.70.jar                 | None                                     |        | LCHIJA | enderstorage                      | 2.4.6.137                | EnderStorage-1.12.2-2.4.6.137-universal.jar                 | f1850c39b2516232a2108a7bd84d1cb5df93b261 |        | LCHIJA | erebus                            | 1.0.32                   | Erebus-1.0.32.jar                                           | None                                     |        | LCHIJA | extracells                        | 2.6.5                    | ExtraCells-1.12.2-2.6.5.jar                                 | None                                     |        | LCHIJA | extrautils2                       | 1.0                      | extrautils2-1.12-1.9.9.jar                                  | None                                     |        | LCHIJA | farmingforblockheads              | 3.1.28                   | FarmingForBlockheads_1.12.2-3.1.28.jar                      | None                                     |        | LCHIJA | mod_lavacow                       | 1.2.4                    | Fish's Undead Rising-1.2.4a.jar                             | None                                     |        | LCHIJA | sonarcore                         | 5.0.19                   | sonarcore-1.12.2-5.0.19-20.jar                              | None                                     |        | LCHIJA | fluxnetworks                      | 4.1.0                    | FluxNetworks-1.12.2-4.1.1.34.jar                            | None                                     |        | LCHIJA | foamfix                           | 0.10.14-1.12.2           | foamfix-0.10.14-1.12.2.jar                                  | None                                     |        | LCHIJA | forgelin                          | 1.8.4                    | Forgelin-1.8.4.jar                                          | None                                     |        | LCHIJA | forgemultipartcbe                 | 2.6.2.83                 | ForgeMultipart-1.12.2-2.6.2.83-universal.jar                | f1850c39b2516232a2108a7bd84d1cb5df93b261 |        | LCHIJA | microblockcbe                     | 2.6.2.83                 | ForgeMultipart-1.12.2-2.6.2.83-universal.jar                | None                                     |        | LCHIJA | minecraftmultipartcbe             | 2.6.2.83                 | ForgeMultipart-1.12.2-2.6.2.83-universal.jar                | None                                     |        | LCHIJA | from_the_depths                   | @VERSION@                | from_the_depths-1.2.1.0.jar                                 | None                                     |        | LCHIJA | ftbutilities                      | 5.4.1.131                | FTBUtilities-5.4.1.131.jar                                  | None                                     |        | LCHIJA | itemfilters                       | 1.0.4.2                  | ItemFilters-1.0.4.2.jar                                     | None                                     |        | LCHIJA | reskillable                       | 1.12.2-1.13.0            | Reskillable-1.12.2-1.13.0.jar                               | None                                     |        | LCHIJA | ftbquests                         | 1202.9.0.15              | FTBQuests-1202.9.0.15.jar                                   | None                                     |        | LCHIJA | ftbmoney                          | 1.2.0.47                 | FTBMoney-1.2.0.47.jar                                       | None                                     |        | LCHIJA | futuremc                          | 0.2.6                    | future-mc-1.12.2-0.2.6.1.jar                                | None                                     |        | LCHIJA | galacticraftcore                  | 4.0.6                    | Galacticraft-1.12.2-4.0.6.jar                               | None                                     |        | LCHIJA | galacticraftplanets               | 4.0.6                    | Galacticraft-1.12.2-4.0.6.jar                               | None                                     |        | LCHIJA | gottschcore                       | 1.14.0                   | GottschCore-mc1.12.2-f14.23.5.2854-v1.14.0.jar              | None                                     |        | LCHIJA | grue                              | 1.8.0                    | Grue-1.12.2-1.8.0.jar                                       | 220f10d3a93b3ff5fbaa7434cc629d863d6751b9 |        | LCHIJA | gunpowderlib                      | 1.12.2-1.1               | GunpowderLib-1.12.2-1.1.jar                                 | 4ffa87db52cf086d00ecc4853a929367b1c39b5c |        | LCHIJA | hardcoredarkness                  | 2.0                      | HardcoreDarkness-MC1.12.2-2.0.jar                           | d72e0dd57935b3e9476212aea0c0df352dd76291 |        | LCHIJA | icbmclassic                       | 1.12.2-4.0.1.75          | ICBM-classic-1.12.2-4.0.1b75.jar                            | None                                     |        | LCHIJA | immersiveengineering              | 0.12-98                  | ImmersiveEngineering-0.12-98.jar                            | None                                     |        | LCHIJA | immersivecables                   | 1.3.2                    | ImmersiveCables-1.12.2-1.3.2.jar                            | None                                     |        | LCHIJA | immersivepetroleum                | 1.1.9                    | immersivepetroleum-1.12.2-1.1.9.jar                         | None                                     |        | LCHIJA | improvedbackpacks                 | 1.12.2-1.5.0.0           | ImprovedBackpacks-1.12.2-1.5.0.0.jar                        | None                                     |        | LCHIJA | incontrol                         | 3.9.18                   | incontrol-1.12-3.9.18.jar                                   | None                                     |        | LCHIJA | teslacorelib                      | 1.0.17                   | tesla-core-lib-1.12.2-1.0.17.jar                            | d476d1b22b218a10d845928d1665d45fce301b27 |        | LCHIJA | industrialforegoing               | 1.12.2-1.12.2            | industrialforegoing-1.12.2-1.12.13-237.jar                  | None                                     |        | LCHIJA | instantunify                      | 1.1.2                    | instantunify-1.12.2-1.1.2.jar                               | None                                     |        | LCHIJA | mysticalagriculture               | 1.7.5                    | MysticalAgriculture-1.12.2-1.7.5.jar                        | None                                     |        | LCHIJA | mysticalagradditions              | 1.3.2                    | MysticalAgradditions-1.12.2-1.3.2.jar                       | None                                     |        | LCHIJA | nuclearcraft                      | 2.18y                    | NuclearCraft-2.18y-1.12.2.jar                               | None                                     |        | LCHIJA | harvestcraft                      | 1.12.2zb                 | Pam's HarvestCraft 1.12.2zg.jar                             | None                                     |        | LCHIJA | randomthings                      | 4.2.7.4                  | RandomThings-MC1.12.2-4.2.7.4.jar                           | d72e0dd57935b3e9476212aea0c0df352dd76291 |        | LCHIJA | mcjtylib_ng                       | 3.5.4                    | mcjtylib-1.12-3.5.4.jar                                     | None                                     |        | LCHIJA | rftools                           | 7.73                     | rftools-1.12-7.73.jar                                       | None                                     |        | LCHIJA | integrationforegoing              | 1.12.2-1.11              | IntegrationForegoing-1.12.2-1.11.jar                        | 4ffa87db52cf086d00ecc4853a929367b1c39b5c |        | LCHIJA | inventorypets                     | 2.0.15                   | inventorypets-1.12-2.0.15.jar                               | None                                     |        | LCHIJA | inventorytweaks                   | 1.63+release.109.220f184 | InventoryTweaks-1.63.jar                                    | 55d2cd4f5f0961410bf7b91ef6c6bf00a766dcbe |        | LCHIJA | itlt                              | 1.0.4                    | itlt-1.12.x-1.0.4.jar                                       | None                                     |        | LCHIJA | jaopca                            | 1.12.2-2.2.8.103         | JAOPCA-1.12.2-2.2.8.103.jar                                 | None                                     |        | LCHIJA | oredictinit                       | 1.12.2-2.2.1.71          | JAOPCA-1.12.2-2.2.8.103.jar                                 | None                                     |        | LCHIJA | journeymap                        | 1.12.2-5.7.1             | journeymap-1.12.2-5.7.1.jar                                 | None                                     |        | LCHIJA | jee                               | 1.0.8                    | JustEnoughEnergistics-1.12.2-1.0.8.jar                      | None                                     |        | LCHIJA | laggoggles                        | FAT-1.12.2-4.11-92       | LagGoggles-FAT-1.12.2-4.11-92.jar                           | None                                     |        | LCHIJA | letsencryptcraft                  | @VERSION@                | letsencryptcraft-1.10.2-1.2.0.jar                           | None                                     |        | LCHIJA | levelup2                          | ${version}               | levelup2-1.5.8.jar                                          | None                                     |        | LCHIJA | littletiles                       | 1.5.0                    | LittleTiles_v1.5.14_mc1.12.2.jar                            | None                                     |        | LCHIJA | lodsofemone                       | 0.1                      | LodsOfEmone-0.1.jar                                         | None                                     |        | LCHIJA | login_shield                      | 1.12.2-6-g5654706        | Login_Shield-1.12.2-6-g5654706.jar                          | None                                     |        | LCHIJA | timecore                          | 1.0.1.1                  | TimeCore-1.12.2-1.0.1.1.jar                                 | None                                     |        | LCHIJA | lootgames                         | 1.0.3.1                  | LootGames-1.12.2-1.0.3.1.jar                                | None                                     |        | LCHIJA | lunatriuscore                     | 1.2.0.42                 | LunatriusCore-1.12.2-1.2.0.42-universal.jar                 | None                                     |        | LCHIJA | immersivetech                     | 1.8.94                   | MCTImmersiveTechnology-1.12.2-1.8.94.jar                    | None                                     |        | LCHIJA | mekanismgenerators                | 1.12.2-9.8.3.390         | MekanismGenerators-1.12.2-9.8.3.390.jar                     | None                                     |        | LCHIJA | mekanismtools                     | 1.12.2-9.8.3.390         | MekanismTools-1.12.2-9.8.3.390.jar                          | None                                     |        | LCHIJA | mtrm                              | 1.2.2.30                 | MineTweakerRecipeMaker-1.12.2-1.2.2.30.jar                  | None                                     |        | LCHIJA | moartinkers                       | 0.6.0                    | moartinkers-0.6.0.jar                                       | None                                     |        | LCHIJA | mob_grinding_utils                | 0.3.13                   | MobGrindingUtils-0.3.13.jar                                 | None                                     |        | LCHIJA | numina                            | 1.12.2-1.0.38            | Numina-1.12.2-1.0.38.jar                                    | None                                     |        | LCHIJA | powersuits                        | 1.12.2-1.0.46            | ModularPowersuits-1.12.2-1.0.46.jar                         | None                                     |        | LCHIJA | morpheus                          | 1.12.2-3.5.106           | Morpheus-1.12.2-3.5.106.jar                                 | None                                     |        | LCHIJA | mputils                           | 1.5.6                    | MPUtils-1.12.2-1.5.7.jar                                    | None                                     |        | LCHIJA | naturesaura                       | 18.1                     | NaturesAura-18.1.jar                                        | None                                     |        | LCHIJA | naturescompass                    | 1.8.5                    | NaturesCompass-1.12.2-1.8.5.jar                             | None                                     |        | LCHIJA | netherportalfix                   | 5.3.17                   | NetherPortalFix_1.12.1-5.3.17.jar                           | None                                     |        | LCHIJA | recipehandler                     | 0.13                     | NoMoreRecipeConflict-0.13(1.12.2).jar                       | None                                     |        | LCHIJA | neid                              | 1.5.4.4                  | NotEnoughIDs-1.5.4.4.jar                                    | None                                     |        | LCHIJA | omlib                             | 3.1.4-249                | omlib-1.12.2-3.1.4-249.jar                                  | None                                     |        | LCHIJA | openmods                          | 0.12.2                   | OpenModsLib-1.12.2-0.12.2.jar                               | d2a9a8e8440196e26a268d1f3ddc01b2e9c572a5 |        | LCHIJA | openblocks                        | 1.8.1                    | OpenBlocks-1.12.2-1.8.1.jar                                 | d2a9a8e8440196e26a268d1f3ddc01b2e9c572a5 |        | LCHIJA | openmodularturrets                | 3.1.12-378               | openmodularturrets-1.12.2-3.1.12-378.jar                    | None                                     |        | LCHIJA | oreexcavation                     | 1.4.150                  | OreExcavation-1.4.150.jar                                   | None                                     |        | LCHIJA | pamscookables                     | 1.1                      | pamscookables-1.1.jar                                       | None                                     |        | LCHIJA | placebo                           | 1.6.0                    | Placebo-1.12.2-1.6.0.jar                                    | None                                     |        | LCHIJA | thermaldynamics                   | 2.5.6                    | ThermalDynamics-1.12.2-2.5.6.1-universal.jar                | None                                     |        | LCHIJA | simplyjetpacks                    | 2.2.14.67                | SimplyJetpacks2-1.12.2-2.2.14.67.jar                        | None                                     |        | LCHIJA | plustic                           | 8.0.1.0                  | plustic-8.0.1.0.jar                                         | None                                     |        | LCHIJA | quarkoddities                     | 1                        | QuarkOddities-1.12.2.jar                                    | None                                     |        | LCHIJA | rats                              | 3.2.14                   | rats-3.2.14-1.12.2.jar                                      | None                                     |        | LCHIJA | reccomplex                        | 1.4.8.2                  | RecurrentComplex-1.4.8.2.jar                                | None                                     |        | LCHIJA | rftoolsdim                        | 5.71                     | rftoolsdim-1.12-5.71.jar                                    | None                                     |        | LCHIJA | scannable                         | 1.6.3.26                 | Scannable-MC1.12.2-1.6.3.26.jar                             | None                                     |        | LCHIJA | shadowmc                          | 3.8.0                    | ShadowMC-1.12-3.8.0.jar                                     | None                                     |        | LCHIJA | storagedrawers                    | 5.2.2                    | StorageDrawers-1.12.2-5.4.2.jar                             | None                                     |        | LCHIJA | storagedrawersextra               | @VERSION@                | StorageDrawersExtras-1.12-3.1.0.jar                         | None                                     |        | LCHIJA | stupidthings                      | 1.1.6                    | Stupid Things-1.12.2-1.1.6.jar                              | None                                     |        | LCHIJA | taiga                             | 1.12.2-1.3.3             | taiga-1.12.2-1.3.4.jar                                      | None                                     |        | LCHIJA | tfspellpack                       | 1.1.0                    | TFSpellPack-1.1.0-MC1.12.2.jar                              | None                                     |        | LCHIJA | thaumictinkerer                   | 1.12.2-5.0-620a0c5       | thaumictinkerer-1.12.2-5.0-620a0c5.jar                      | None                                     |        | LCHIJA | beneath                           | 1.7.0                    | The Beneath-1.12.2-1.7.0.jar                                | 220f10d3a93b3ff5fbaa7434cc629d863d6751b9 |        | LCHIJA | theaurorian                       | 1.12.2-Release           | theaurorian-1.12.2-release-mar2321.jar                      | None                                     |        | LCHIJA | thermalinnovation                 | 0.3.6                    | ThermalInnovation-1.12.2-0.3.6.1-universal.jar              | None                                     |        | LCHIJA | tinkersjei                        | 1.2                      | tinkersjei-1.2.jar                                          | None                                     |        | LCHIJA | tinkertoolleveling                | 1.12.2-1.1.0.DEV.b23e769 | TinkerToolLeveling-1.12.2-1.1.0.jar                         | None                                     |        | LCHIJA | totemic                           | 1.12.2-0.11.6            | Totemic-1.12.2-0.11.6.jar                                   | 21d11d7bf4d97b465382a1f95428029aac6daaea |        | LCHIJA | treasure2                         | 1.16.0                   | Treasure2-mc1.12.2-f14.23.5.2854-v1.16.0.jar                | None                                     |        | LCHIJA | treasure2_twilight_forest_lp      | 1.0.0                    | Treasure2TwilightForestLP-mc1.12.2-f14.23.5.2854-v1.0.0.jar | None                                     |        | LCHIJA | treasure2_wizardry_lp             | 1.0.0                    | Treasure2WizardryLP-mc1.12.2-f14.23.5.2854-v1.0.0.jar       | None                                     |        | LCHIJA | vampiresneedumbrellas             | 1.4                      | VampiresNeedUmbrellas-1.12.2-1.5.jar                        | None                                     |        | LCHIJA | vampirism                         | 1.6.2                    | Vampirism-1.12.2-1.6.2.jar                                  | None                                     |        | LCHIJA | teamlapen-lib                     | 1.6.2                    | Vampirism-1.12.2-1.6.2.jar                                  | None                                     |        | LCHIJA | vampirism_integrations            | vampirism_integrations   | VampirismIntegrations-1.12.2-1.3.0.jar                      | None                                     |        | LCHIJA | vanillafix                        | 1.0.10-150               | VanillaFix-1.0.10-150.jar                                   | None                                     |        | LCHIJA | wanionlib                         | 1.12.2-2.5               | WanionLib-1.12.2-2.5.jar                                    | None                                     |        | LCHIJA | waystones                         | 4.1.0                    | Waystones_1.12.2-4.1.0.jar                                  | None                                     |        | LCHIJA | wings                             | 1.1.6                    | wings-1.1.6-1.12.2.jar                                      | None                                     |        | LCHIJA | mowzies_wings                     | 1.0.0                    | wings-1.1.6-1.12.2.jar                                      | None                                     |        | LCHIJA | bauble_wings                      | 1.0.0                    | wings-1.1.6-1.12.2.jar                                      | None                                     |        | LCHIJA | wct                               | 3.12.97                  | WirelessCraftingTerminal-1.12.2-3.12.97.jar                 | 186bc454cd122c9c2f1aa4f95611254bcc543363 |        | LCHIJA | wgblockreplacer                   | 2.3.1+1.12.2             | WorldGen-Block-Replacer-2.3.1+1.12.2.jar                    | None                                     |        | LCHIJA | wrcbe                             | 2.3.2                    | WR-CBE-1.12.2-2.3.2.33-universal.jar                        | f1850c39b2516232a2108a7bd84d1cb5df93b261 |        | LCHIJA | xnet                              | 1.8.2                    | xnet-1.12-1.8.2.jar                                         | None                                     |        | LCHIJA | ynot                              | 0.2.4                    | YNot-0.2.4.jar                                              | None                                     |        | LCHIJA | zerocore                          | 1.12.2-0.1.2.9           | zerocore-1.12.2-0.1.2.9.jar                                 | None                                     |        | LCHIJA | orelib                            | 3.6.0.1                  | OreLib-1.12.2-3.6.0.1.jar                                   | 7a2128d395ad96ceb9d9030fbd41d035b435753a |        | LCHIJA | rf-capability-adapter             | 1.1.1                    | capabilityadapter-1.1.1.jar                                 | None                                     |        | LCHIJA | solcarrot                         | 1.8.4                    | solcarrot-1.12.2-1.8.4.jar                                  | None                                     |        | LCHIJA | structurize                       | 1.12.2-0.10.277-RELEASE  | structurize-1.12.2-0.10.277-RELEASE.jar                     | None                                     |        | LCHIJA | minecolonies                      | 1.12.2-0.11.841-ALPHA    | minecolonies-1.12.2-0.11.841-ALPHA-universal.jar            | None                                     |        | LCHIJA | techreborn_compat                 | 1.0.0                    | TechReborn-ModCompatibility-1.12.2-1.4.0.76.jar             | 8727a3141c8ec7f173b87aa78b9b9807867c4e6b |        | LCHIJA | phosphor-lighting                 | 1.12.2-0.2.6             | phosphor-1.12.2-0.2.6+build50-universal.jar                 | f0387d288626cc2d937daa504e74af570c52a2f1 |        | LCHIJA | midnight                          | 0.3.5                    | themidnight-0.3.5.jar                                       | None                                     |        | LCHIJA | armoryexpansion-conarm            | 1.4.2                    | armoryexpansion-1.4.2.jar                                   | None                                     |        | LCHIJA | mysticallib                       | 1.12.2-1.10.0            | mysticallib-1.12.2-1.10.0.jar                               | None                                     |        | LCHIJA | teslacorelib_registries           | 1.0.17                   | tesla-core-lib-1.12.2-1.0.17.jar                            | None                                     |        | LCHIJA | tweakersconstructpostload         | 1.12.2-1.6.0             | tweakersconstruct-1.12.2-1.6.0.jar                          | None                                     |        | LCHIJA | unidict                           | 1.12.2-3.0.8             | UniDict-1.12.2-3.0.8.jar                                    | None                                     |        | LCHIJA | wrapup                            | 1.12-1.1.3               | WrapUp-1.12-1.1.3.jar                                       | None                                     |        | UD     | mdecore-core                      | 1.0                      | minecraft.jar                                               | None                                     |        | UD     | mobends_wings                     | 1.0.0                    | wings-1.1.6-1.12.2.jar                                      | None                                     |   Loaded coremods (and transformers): wings (wings-1.1.6-1.12.2.jar)                                         me.paulf.wings.server.asm.WingsRuntimePatcher                                         me.paulf.wings.server.asm.mobends.WingsMoBendsRuntimePatcher                                       IELoadingPlugin (ImmersiveEngineering-core-0.12-98.jar)                                         blusunrize.immersiveengineering.common.asm.IEClassTransformer                                       CreativePatchingLoader (CreativeCore_v1.10.61_mc1.12.2.jar)                                                                                TransformerLoader (OpenComputers-MC1.12.2-1.7.5.192.jar)                                         li.cil.oc.common.asm.ClassTransformer                                       MicdoodlePlugin (Galacticraft-1.12.2-4.0.6.jar)                                         micdoodle8.mods.miccore.MicdoodleTransformer                                       MekanismCoremod (Mekanism-1.12.2-9.8.3.390.jar)                                         mekanism.coremod.KeybindingMigrationHelper                                       BewitchmentFMLLoadingPlugin (bewitchment-1.12.2-0.0.22.64.jar)                                                                                Quark Plugin (Quark-r1.6-179.jar)                                         vazkii.quark.base.asm.ClassTransformer                                       AppleCore (AppleCore-mc1.12.2-3.4.0.jar)                                         squeek.applecore.asm.TransformerModuleHandler                                       iceandfire (iceandfire-1.9.1-1.12.2.jar)                                         com.github.alexthe666.iceandfire.patcher.IceAndFireRuntimePatcher                                       Inventory Tweaks Coremod (InventoryTweaks-1.63.jar)                                         invtweaks.forge.asm.ContainerTransformer                                       EnderCorePlugin (EnderCore-1.12.2-0.5.76-core.jar)                                         com.enderio.core.common.transform.EnderCoreTransformer                                         com.enderio.core.common.transform.SimpleMixinPatcher                                       PhosphorFMLLoadingPlugin (phosphor-1.12.2-0.2.6+build50-universal.jar)                                                                                LittlePatchingLoader (LittleTiles_v1.5.14_mc1.12.2.jar)                                         com.creativemd.littletiles.LittleTilesTransformer                                       ratscore (rats-3.2.14-1.12.2.jar)                                         com.github.alexthe666.rats.server.misc.RatsRuntimePatcher                                       LevelUpCore (levelup2-1.5.8.jar)                                                                                CoreMod (Aroma1997Core-1.12.2-2.0.0.2.b167.jar)                                                                                LoadingPlugin (HardcoreDarkness-MC1.12.2-2.0.jar)                                         lumien.hardcoredarkness.asm.ClassTransformer                                       IvToolkit (IvToolkit-1.3.3-1.12.jar)                                                                                LoadingPlugin (Reskillable-1.12.2-1.13.0.jar)                                         codersafterdark.reskillable.base.asm.ClassTransformer                                       ColorUtilityCorePlugin (ColorUtility-universal-1.0.4.jar)                                         com.Axeryok.ColorUtility.ColorUtilityTransformer                                       FutureMC (future-mc-1.12.2-0.2.6.1.jar)                                         thedarkcolour.futuremc.asm.CoreTransformer                                       LoadingPlugin (RandomThings-MC1.12.2-4.2.7.4.jar)                                         lumien.randomthings.asm.ClassTransformer                                       RandomPatches (randompatches-1.12.2-1.22.1.10.jar)                                         com.therandomlabs.randompatches.core.RPTransformer                                       ForgelinPlugin (Forgelin-1.8.4.jar)                                                                                midnight (themidnight-0.3.5.jar)                                         com.mushroom.midnight.core.transformer.MidnightClassTransformer                                       Do not report to Forge! (If you haven't disabled the FoamFix coremod, try disabling it in the config! Note that this bit of text will still appear.) (foamfix-0.10.14-1.12.2.jar)                                         pl.asie.foamfix.coremod.FoamFixTransformer                                       OpenModsCorePlugin (OpenModsLib-1.12.2-0.12.2.jar)                                         openmods.core.OpenModsClassTransformer                                       CorePlugin (ForgeEndertech-1.12.2-4.5.5.0-build.0561.jar)                                                                                serializationisbad (serializationisbad-1.3.jar)                                         io.dogboy.serializationisbad.legacyforge.SIBTransformer                                       AdvancedRocketryPlugin (AdvancedRocketry-1.12.2-1.7.0-232-universal.jar)                                         zmaster587.advancedRocketry.asm.ClassTransformer                                       CharmLoadingPlugin (Charm-1.12.2-1.4.1.jar)                                         svenhjol.charm.base.CharmClassTransformer                                       Plugin (NotEnoughIDs-1.5.4.4.jar)                                         ru.fewizz.neid.asm.Transformer                                       llibrary (llibrary-core-1.0.11-1.12.2.jar)                                         net.ilexiconn.llibrary.server.core.plugin.LLibraryTransformer                                         net.ilexiconn.llibrary.server.core.patcher.LLibraryRuntimePatcher                                       AstralCore (astralsorcery-1.12.2-1.10.27.jar)                                                                                MDECore-Core (mdecore-1.12-1.1.jar)                                         com.mattdahepic.mdecore.asm.TickrateTransformer                                       VanillaFixLoadingPlugin (VanillaFix-1.0.10-150.jar)   OpenModsLib class transformers: [llama_null_fix:FINISHED],[horse_base_null_fix:FINISHED],[pre_world_render_hook:ENABLED],[player_render_hook:ENABLED],[horse_null_fix:FINISHED]   AE2 Version: stable rv6-stable-7 for Forge 14.23.5.2768   Ender IO: No known problems detected.             Authlib is : /home/mch/multicraft/servers/server358624/minecraft_server.1.12.2.jar
  • Topics

×
×
  • Create New...

Important Information

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