Jump to content

two blocks high crop


DrakusorU

Recommended Posts

Hi, first of all im new to java ( I know the basics, I can manage to solve myself most of the problems I encounter ).. for like 2 days im searching how to make a 2 blocks tall crop, i've been looking into other mods how they did it, i've been searching everywhere.. now i am at the stage where I created the crop, it grows, it drop the items I want, but I want to make it grow 1 more block like this http://i.imgur.com/dOAPPQ5.png for example.. exactly this mod ( flax mod from 1.7 ) I tried to recreate in 1.10 for myself.. I pretty much followed this tutorial http://shadowfacts.net/tutorials/forge-modding-1102/ to make my mod, so its almost indentical..

 

what I want exactly to do is once again, make it grow 2 blocks, when I break the top block to receive more items as its fully grown aswell if I break the buttom block when its fully grown, but if I break the bottom without being fully grown to receive only the seed back..

 

i've searched a lot how to do this for 1.10.. if there was already a topic about this, im sorry but I couldnt find it..

Link to comment
Share on other sites

I agree with comment above. In fact I learned how to create stuff simply by copying vanilla code.

 

Forge is very helpful in that it actually shows you how MC is coded something that would be hard to do normally since everything is obfuscated. So instead of just doing things after tutorial just actually look trough forge/mc vanilla code.

 

All blocks are registered in Block class

 

Search for reed or tall grass see how is done there

 

Ctrl + click on a class name to open it up in a new tab  in Eclipse. read trough try to do the same

Disclaimer:  I been told to keep my opinions to myself, to shut up and that I am spreading lies and misinformation or even that my methods are unorthodox and or too irregular. Here are my suggestions take it or leave it.

Link to comment
Share on other sites

Agreed. Knowing what you can pull from vanilla code is very useful.

But basically you're gonna have a block with states and say states 0-3 are 1 block tall, you're gonna check when you grow, that its the top block (bottom block with air above or top block) and then if its state 3, set the space above it to the block with state 4.

Link to comment
Share on other sites

Just make two separate blocks. You can make them drop separate things. Have the bottom block have a random tick and when it reaches a certain age the bottom block would have an if then statements saying, if there is air above me, then place this other block.

I don't optimize my code before it works.

Link to comment
Share on other sites

Oh, by the way.

 

Be aware of the BlockEvent.CropGrowEvent and its two sub events.  You should fire these at the appropriate times if you are not using subclassing a class that does, or not calling super.updateTick().  Look at BlockCrops, Reeds, Cactus, Netherwart, CocoPods, and a couple others for examples of useage.

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.

Link to comment
Share on other sites

I managed to make it grow 1 more block, but I have a problem with the function updateTick

 

I've got the function from another mod, but that mod was making the crop grow 3 blocks, so I tried to make it grow only 2 but it doesnt update corectly.. well.. it doesnt grow fully.. it looks like this http://prntscr.com/deb0g9 instead of http://i.imgur.com/dOAPPQ5.png

 

I was trying to recreate the flax mod from 1.7.10 so the assets are taken from that mod..

 

I know it is because of this function because I messed around for like 2 hours trying figure out what was wrong

 

the original code:

/*public void updateTick(World worldIn, BlockPos pos, IBlockState state, Random rand)
    {
    	int j = ((Integer)state.getValue(AGE)).intValue();
    	if ((j != 9) && (j != 10) && (j != 11) && ((worldIn.getBlockState(pos.down()).getBlock() == this) || (canBlockStay(worldIn, pos, state)))) {
    		if ((worldIn.isAirBlock(pos.up())) || (j == 4) || (j == 7)) {
    			if (worldIn.getLightFromNeighbors(pos.up()) >= 9) {
    					if ((j == 0) || (j == 1) || (j == 2)) {
    						worldIn.setBlockState(pos, getStateFromMeta(j + 1));
    					}
		            if (j == 3) {
		                worldIn.setBlockState(pos, getStateFromMeta(4));
		           	}
    					if (j == 5) {
    						worldIn.setBlockState(pos, getStateFromMeta(6));
    					}
    					if (j == 6) {
    						worldIn.setBlockState(pos, getStateFromMeta(7));
    						worldIn.setBlockState(pos.up(), getStateFromMeta();
    					}
    					if (j ==  {
    						worldIn.setBlockState(pos, getStateFromMeta(10));
    						worldIn.setBlockState(pos.down(), getStateFromMeta(9));
    						worldIn.setBlockState(pos.down(2), getStateFromMeta(9));
    					}
    					if (((j == 4) || (j == 7)) && (worldIn.getBlockState(pos.up()).getBlock() == this)) {
    						int k = ((Integer)worldIn.getBlockState(pos.up()).getValue(AGE)).intValue();
    						if (k == 5) {
    							worldIn.setBlockState(pos.up(), getStateFromMeta(6));
    						}
    						if (k == 6) {
    							worldIn.setBlockState(pos.up(), getStateFromMeta(7));
    							worldIn.setBlockState(pos.up(2), getStateFromMeta();
    						}
    						if (k == 7) {
    							worldIn.setBlockState(pos.up(2), getStateFromMeta(11));
    							worldIn.setBlockState(pos.up(), getStateFromMeta(10));
    							worldIn.setBlockState(pos, getStateFromMeta(9));
    						}
    						if (k ==  {
    							worldIn.setBlockState(pos.up(), getStateFromMeta(11));
    							worldIn.setBlockState(pos, getStateFromMeta(10));
    							worldIn.setBlockState(pos.down(), getStateFromMeta(9));
    						}
    					}
    			}
    		}
    	}
    }*/

 

what I tried to do and have now:

 

public void updateTick(World worldIn, BlockPos pos, IBlockState state, Random rand)
    {
    	int j = ((Integer)state.getValue(AGE)).intValue();
    	if (((worldIn.getBlockState(pos.down()).getBlock() == this) || (canBlockStay(worldIn, pos, state)))) {
    		if ((worldIn.isAirBlock(pos.up()))) {
    			if (worldIn.getLightFromNeighbors(pos.up()) >=  {
    				if ((j == 0) || (j == 1) || (j == 2)) {
					worldIn.setBlockState(pos, getStateFromMeta(j + 1));
				}
	            if (j == 3) {
	                worldIn.setBlockState(pos, getStateFromMeta(4));
	           	}
	            if (j == 4) {
					worldIn.setBlockState(pos, getStateFromMeta(5));
				}
				if (j == 5) {
					worldIn.setBlockState(pos, getStateFromMeta(6));
				}
				if (j == 6) {
					worldIn.setBlockState(pos, getStateFromMeta(7));
					worldIn.setBlockState(pos.up(), getStateFromMeta();
				}
				if ((j == 7) && (worldIn.getBlockState(pos.up()).getBlock() == this)) {
					int k = ((Integer)worldIn.getBlockState(pos.up()).getValue(AGE)).intValue();
					if (k ==  {
						worldIn.setBlockState(pos.up(), getStateFromMeta(9));
					}
					if (k == 9) {
						worldIn.setBlockState(pos.up(), getStateFromMeta(10));
					}
					if (k == 10) {
						worldIn.setBlockState(pos.up(), getStateFromMeta(11));
					}
					if (k == 11) {
						worldIn.setBlockState(pos.up(), getStateFromMeta(12));
					}
					if (k == 12) {
						worldIn.setBlockState(pos.up(), getStateFromMeta(13));
					}
					if (k == 13) {
						worldIn.setBlockState(pos.up(), getStateFromMeta(14));
					}
				}
    			}
    		}	
    	}
    }

 

the crop json:

 

{
    "forge_marker": 1,
    "defaults": {
        "model": "cross"
    },
    "variants": {
        "age": {
            "0": {
                "textures": {
                    "cross": "xcrops:blocks/flax/flaxBlock_stage_0"
                }
            },
            "1": {
                "textures": {
                    "cross": "xcrops:blocks/flax/flaxBlock_stage_1"
                }
            },
            "2": {
                "textures": {
                    "cross": "xcrops:blocks/flax/flaxBlock_stage_2"
                }
            },
            "3": {
                "textures": {
                    "cross": "xcrops:blocks/flax/flaxBlock_stage_3"
                }
            },
            "4": {
                "textures": {
                    "cross": "xcrops:blocks/flax/flaxBlock_stage_4"
                }
            },
            "5": {
                "textures": {
                    "cross": "xcrops:blocks/flax/flaxBlock_stage_5"
                }
            },
            "6": {
                "textures": {
                    "cross": "xcrops:blocks/flax/flaxBlock_stage_6"
                }
            },
            "7": {
                "textures": {
                    "cross": "xcrops:blocks/flax/flaxBlock_stage_7"
                }
            },
            "8": {
                "textures": {
                    "cross": "xcrops:blocks/flax/flaxBlock_stage_8"
                }
            },
            "9": {
                "textures": {
                    "cross": "xcrops:blocks/flax/flaxBlock_stage_9"
                }
            },
            "10": {
                "textures": {
                    "cross": "xcrops:blocks/flax/flaxBlock_stage_10"
                }
            },
            "11": {
                "textures": {
                    "cross": "xcrops:blocks/flax/flaxBlock_stage_11"
                }
            },
            "12": {
                "textures": {
                    "cross": "xcrops:blocks/flax/flaxBlock_stage_12"
                }
            },
            "13": {
                "textures": {
                    "cross": "xcrops:blocks/flax/flaxBlock_stage_13"
                }
            },
            "14": {
                "textures": {
                    "cross": "xcrops:blocks/flax/flaxBlock_stage_14"
                }
            }
        }
    }
}

 

what confuse me the most is the part where I add the second block and where I need to update it..

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
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.



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I recently got a new laptop as a gift - on my previous laptop all of my mods and everything worked completely fine and as intended but for some reason with the new one, after installing forge for 1.8 and moving both my mod and config folder over, the game crashes without even booting up. When I installed forge (1.8) I did mis click the server option instead of client but I thought it wouldn't do anything and for the most part it seems it doesn't. I did reinstall with the client option selected. The game only seems to crash when the mod folder is in the .minecraft folder, not the config. I have the windows store version of the launcher installed. if anyone has answers ill be extremely happy with any feedback. Thank you for your time.   List of Mods installed (mostly hypixel skyblock and QOL mods): Apec Block Overlay Dulkir FastChat Not Enough Updates Patcher Scrollable Tooltips Skyblock Addons Skyblock Catia Skytils SoopyV2 Timechanger Chat Triggers
    • I'm making a survival-realistic modpack on 1.18.2 and the game crashes whenever loading a new world. it never loads past 0%.  This is the crash report. If it doesn't work, I can always make another.  https://pastebin.com/Gb4Nae4V
    • I recently got a new laptop as a gift - on my previous laptop all of my mods and everything worked completely fine and as intended but for some reason with the new one, after installing forge for 1.8 and moving both my mod and config folder over, the game crashes without even booting up. When I installed forge (1.8) I did mis click the server option instead of client but I thought it wouldn't do anything and for the most part it seems it doesn't. I did reinstall with the client option selected. The game only seems to crash when the mod folder is in the .minecraft folder, not the config. I have the windows store version of the launcher installed. if anyone has answers ill be extremely happy with any feedback. Thank you for your time.   List of Mods installed (mostly hypixel skyblock and QOL mods): Apec Block Overlay Dulkir FastChat Not Enough Updates Patcher Scrollable Tooltips Skyblock Addons Skyblock Catia Skytils SoopyV2 Timechanger Chat Triggers
    • So I'm trying to create an instance of Block static { Block funnyUselessBlockWithNoPurpose = new Block(BlockBehaviour.Properties.of(Material.AIR)); }   I don't want to register it in block registry or use it anywhere else, only need this temporary to measure a few things. However it fails with "Registry is already frozen". Shouldn't block register when I actually call `BLOCKS.register(name, block);`?    
    • ---- Minecraft Crash Report ---- WARNING: coremods are present:   Inventory Tweaks Coremod (InventoryTweaks-1.64+dev.151.jar)   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.15-1.12.2.jar)   LibrarianLib Plugin (librarianlib-1.12.2-4.22.jar)   ForgelinPlugin (Forgelin-1.8.4.jar)   OpenModsCorePlugin (OpenModsLib-1.12.2-0.12.2.jar)   Quark Plugin (Quark-r1.6-179.jar)   AppleCore (AppleCore-mc1.12.2-3.4.0.jar)   CTMCorePlugin (CTM-MC1.12.2-1.0.2.31.jar)   Plugin (NotEnoughIDs-1.5.4.4.jar)   EnderCorePlugin (EnderCore-1.12.2-0.5.76-core.jar)   JustEnoughIDs Extension Plugin (JustEnoughIDs-1.0.4-SNAPSHOT-thin.jar)   CorePlugin (ForgeEndertech-1.12.2-4.5.6.1-build.0648.jar)   MalisisCorePlugin (malisiscore-1.12.2-6.5.1.jar) Contact their authors BEFORE contacting forge // Don't do that. Time: 4/1/23 7:12 PM Description: Initializing game java.lang.RuntimeException: java.lang.NoSuchFieldException: processor     at net.minecraftforge.fml.common.Loader.handler$beforeConstructingMods$zza000(Loader.java:1171)     at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:594)     at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:232)     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.NoSuchFieldException: processor     at java.lang.Class.getDeclaredField(Class.java:2070)     at net.minecraftforge.fml.common.Loader.handler$beforeConstructingMods$zza000(Loader.java:1135)     ... 11 more A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Client thread Stacktrace:     at net.minecraftforge.fml.common.Loader.handler$beforeConstructingMods$zza000(Loader.java:1171)     at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:594)     at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:232)     at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:467) -- Initialization -- Details: Stacktrace:     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) -- 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: 1106984256 bytes (1055 MB) / 1716518912 bytes (1637 MB) up to 9395240960 bytes (8960 MB)     JVM Flags: 3 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx10080m -Xms256m     IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0     FML: MCP 9.42 Powered by Forge 14.23.5.2860 129 mods loaded, 129 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                                |     |:----- |:--------------------------------- |:------------------------- |:--------------------------------------------------------- |:---------------------------------------- |     | L     | minecraft                         | 1.12.2                    | minecraft.jar                                             | None                                     |     | L     | mcp                               | 9.42                      | minecraft.jar                                             | None                                     |     | L     | FML                               | 8.0.99.99                 | forge-1.12.2-14.23.5.2860.jar                             | e3c3d50c7c986df74c645c0ac54639741c90a557 |     | L     | forge                             | 14.23.5.2860              | forge-1.12.2-14.23.5.2860.jar                             | e3c3d50c7c986df74c645c0ac54639741c90a557 |     | L     | openmodscore                      | 0.12.2                    | minecraft.jar                                             | None                                     |     | L     | foamfixcore                       | 7.7.4                     | minecraft.jar                                             | None                                     |     | L     | forgeendertech                    | 1.12.2-4.5.6.1            | ForgeEndertech-1.12.2-4.5.6.1-build.0648.jar              | None                                     |     | L     | adlods                            | 1.12.2-1.0.8.0            | AdLods-1.12.2-1.0.8.0-build.0504.jar                      | None                                     |     | L     | applecore                         | 3.4.0                     | AppleCore-mc1.12.2-3.4.0.jar                              | None                                     |     | L     | jei                               | 4.16.1.301                | jei_1.12.2-4.16.1.301.jar                                 | None                                     |     | L     | appleskin                         | 1.0.14                    | AppleSkin-mc1.12-1.0.14.jar                               | None                                     |     | L     | ctm                               | MC1.12.2-1.0.2.31         | CTM-MC1.12.2-1.0.2.31.jar                                 | None                                     |     | L     | appliedenergistics2               | rv6-stable-7              | appliedenergistics2-rv6-stable-7.jar                      | None                                     |     | L     | mantle                            | 1.12-1.3.3.55             | Mantle-1.12-1.3.3.55.jar                                  | None                                     |     | L     | mysticalworld                     | 1.12.2-1.11.0             | mysticalworld-1.12.2-1.11.0.jar                           | None                                     |     | L     | chisel                            | MC1.12.2-1.0.2.45         | Chisel-MC1.12.2-1.0.2.45.jar                              | None                                     |     | L     | endercore                         | 1.12.2-0.5.76             | EnderCore-1.12.2-0.5.76.jar                               | None                                     |     | L     | codechickenlib                    | 3.2.3.358                 | CodeChickenLib-1.12.2-3.2.3.358-universal.jar             | None                                     |     | L     | redstoneflux                      | 2.1.1                     | RedstoneFlux-1.12-2.1.1.1-universal.jar                   | None                                     |     | L     | cofhcore                          | 4.6.6                     | CoFHCore-1.12.2-4.6.6.1-universal.jar                     | None                                     |     | L     | brandonscore                      | 2.4.20                    | BrandonsCore-1.12.2-2.4.20.162-universal.jar              | None                                     |     | L     | cofhworld                         | 1.4.0                     | CoFHWorld-1.12.2-1.4.0.1-universal.jar                    | None                                     |     | L     | thermalfoundation                 | 2.6.7                     | ThermalFoundation-1.12.2-2.6.7.1-universal.jar            | None                                     |     | L     | draconicevolution                 | 2.3.28                    | Draconic-Evolution-1.12.2-2.3.28.354-universal.jar        | None                                     |     | L     | thermalexpansion                  | 5.5.7                     | ThermalExpansion-1.12.2-5.5.7.1-universal.jar             | None                                     |     | L     | enderio                           | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |     | L     | enderiointegrationtic             | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |     | L     | quark                             | r1.6-179                  | Quark-r1.6-179.jar                                        | None                                     |     | L     | twilightforest                    | 3.11.1021                 | twilightforest-1.12.2-3.11.1021-universal.jar             | None                                     |     | L     | tconstruct                        | 1.12.2-2.13.0.183         | TConstruct-1.12.2-2.13.0.183.jar                          | None                                     |     | L     | conarm                            | 1.2.5.10                  | conarm-1.12.2-1.2.5.10.jar                                | None                                     |     | L     | armoryexpansion                   | 1.4.2                     | armoryexpansion-1.4.2.jar                                 | None                                     |     | L     | armoryexpansion-custommaterials   | 1.4.2                     | armoryexpansion-1.4.2.jar                                 | None                                     |     | L     | armoryexpansion-iceandfire        | 1.4.2                     | armoryexpansion-1.4.2.jar                                 | None                                     |     | L     | armoryexpansion-matteroverdrive   | 1.4.2                     | armoryexpansion-1.4.2.jar                                 | None                                     |     | L     | autoreglib                        | 1.3-32                    | AutoRegLib-1.3-32.jar                                     | None                                     |     | L     | betterbuilderswands               | 0.11.1                    | BetterBuildersWands-1.12-0.11.1.245+69d0d70.jar           | None                                     |     | L     | biomesoplenty                     | 7.0.1.2445                | BiomesOPlenty-1.12.2-7.0.1.2445-universal.jar             | None                                     |     | L     | byg                               | 1.7.1                     | BiomesYouGo1.7.1.jar                                      | None                                     |     | L     | bookshelf                         | 2.3.590                   | Bookshelf-1.12.2-2.3.590.jar                              | None                                     |     | L     | chameleon                         | 1.12-4.1.3                | Chameleon-1.12-4.1.3.jar                                  | None                                     |     | L     | clumps                            | 3.1.2                     | Clumps-3.1.2.jar                                          | None                                     |     | L     | cyclopscore                       | 1.6.7                     | CyclopsCore-1.12.2-1.6.7.jar                              | None                                     |     | L     | commoncapabilities                | 2.4.8                     | CommonCapabilities-1.12.2-2.4.8.jar                       | None                                     |     | L     | cosmeticarmorreworked             | 1.12.2-v5a                | CosmeticArmorReworked-1.12.2-v5a.jar                      | None                                     |     | L     | cucumber                          | 1.1.3                     | Cucumber-1.12.2-1.1.3.jar                                 | None                                     |     | L     | darkutils                         | 1.8.230                   | DarkUtils-1.12.2-1.8.230.jar                              | None                                     |     | L     | dldungeonsjbg                     | 1.14.12                   | DoomlikeDungeons-1.14.12-MC1.12.2.jar                     | None                                     |     | L     | enchdesc                          | 1.1.15                    | EnchantmentDescriptions-1.12.2-1.1.15.jar                 | None                                     |     | L     | enderiobase                       | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |     | L     | enderioconduits                   | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |     | L     | enderioconduitsappliedenergistics | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |     | L     | enderioconduitsopencomputers      | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |     | L     | refinedstorage                    | 1.6.16                    | refinedstorage-1.6.16.jar                                 | None                                     |     | L     | enderioconduitsrefinedstorage     | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |     | L     | enderiointegrationforestry        | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |     | L     | enderiointegrationticlate         | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |     | L     | enderioinvpanel                   | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |     | L     | ftblib                            | 5.4.7.2                   | FTBLib-5.4.7.2.jar                                        | None                                     |     | L     | enderiomachines                   | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |     | L     | enderiopowertools                 | 5.3.70                    | EnderIO-1.12.2-5.3.70.jar                                 | None                                     |     | L     | enderstorage                      | 2.4.6.137                 | EnderStorage-1.12.2-2.4.6.137-universal.jar               | None                                     |     | L     | extrautils2                       | 1.0                       | extrautils2-1.12-1.9.9.jar                                | None                                     |     | L     | zerocore                          | 1.12.2-0.1.2.9            | zerocore-1.12.2-0.1.2.9.jar                               | None                                     |     | L     | bigreactors                       | 1.12.2-0.4.5.68           | ExtremeReactors-1.12.2-0.4.5.68.jar                       | None                                     |     | L     | flamingo                          | 1.12-1.11                 | Flamingo-1.12-v1.11.jar                                   | None                                     |     | L     | foamfix                           | @VERSION@                 | foamfix-0.10.15-1.12.2.jar                                | None                                     |     | L     | forgelin                          | 1.8.4                     | Forgelin-1.8.4.jar                                        | None                                     |     | L     | forgemultipartcbe                 | 2.6.2.83                  | ForgeMultipart-1.12.2-2.6.2.83-universal.jar              | None                                     |     | L     | microblockcbe                     | 2.6.2.83                  | ForgeMultipart-1.12.2-2.6.2.83-universal.jar              | None                                     |     | L     | minecraftmultipartcbe             | 2.6.2.83                  | ForgeMultipart-1.12.2-2.6.2.83-universal.jar              | None                                     |     | L     | ftbbackups                        | 1.1.0.1                   | FTBBackups-1.1.0.1.jar                                    | None                                     |     | L     | ftbutilities                      | 5.4.1.131                 | FTBUtilities-5.4.1.131.jar                                | None                                     |     | L     | cfm                               | 6.3.0                     | furniture-6.3.2-1.12.2.jar                                | None                                     |     | L     | gravestone                        | 1.10.3                    | gravestone-1.10.3.jar                                     | None                                     |     | L     | mobtotems                         | 1.12.1-0.3.0              | mobtotems-1.12.1-0.3.0.jar                                | None                                     |     | L     | guideapi                          | 1.12-2.1.8-63             | Guide-API-1.12-2.1.8-63.jar                               | None                                     |     | L     | gunpowderlib                      | 1.12.2-1.1                | GunpowderLib-1.12.2-1.1.jar                               | None                                     |     | L     | ichunutil                         | 7.2.2                     | iChunUtil-1.12.2-7.2.2.jar                                | None                                     |     | L     | hats                              | 7.1.1                     | Hats-1.12.2-7.1.1.jar                                     | None                                     |     | L     | inventorypets                     | 2.0.15                    | inventorypets-1.12-2.0.15.jar                             | None                                     |     | L     | inventorytweaks                   | 1.64+dev.151.822d839      | InventoryTweaks-1.64+dev.151.jar                          | None                                     |     | L     | ironchest                         | 1.12.2-7.0.67.844         | ironchest-1.12.2-7.0.72.847.jar                           | None                                     |     | L     | jeiintegration                    | 1.6.0                     | jeiintegration_1.12.2-1.6.0.jar                           | None                                     |     | L     | journeymap                        | 1.12.2-5.7.1              | journeymap-1.12.2-5.7.1.jar                               | None                                     |     | L     | justenoughdimensions              | 1.6.0-dev.20200416.184714 | justenoughdimensions-1.12.2-1.6.0-dev.20200416.184714.jar | None                                     |     | L     | jeid                              | 1.0.4-SNAPSHOT            | JustEnoughIDs-1.0.4-SNAPSHOT-thin.jar                     | None                                     |     | L     | jeresources                       | 0.9.2.60                  | JustEnoughResources-1.12.2-0.9.2.60.jar                   | None                                     |     | L     | librarianlib                      | 4.22                      | librarianlib-1.12.2-4.22.jar                              | None                                     |     | L     | malisiscore                       | 1.12.2-6.5.1-SNAPSHOT     | malisiscore-1.12.2-6.5.1.jar                              | None                                     |     | L     | malisisdoors                      | 1.12.2-7.3.0              | malisisdoors-1.12.2-7.3.0.jar                             | None                                     |     | L     | mcjtylib_ng                       | 3.5.4                     | mcjtylib-1.12-3.5.4.jar                                   | None                                     |     | L     | morph                             | 7.2.0                     | Morph-1.12.2-7.2.1.jar                                    | None                                     |     | L     | morpheus                          | 1.12.2-3.5.106            | Morpheus-1.12.2-3.5.106.jar                               | None                                     |     | L     | mousetweaks                       | 2.10                      | MouseTweaks-2.10-mc1.12.2.jar                             | None                                     |     | L     | mtlib                             | 3.0.7                     | MTLib-3.0.7.jar                                           | None                                     |     | L     | natura                            | 1.12.2-4.3.2.69           | natura-1.12.2-4.3.2.69.jar                                | None                                     |     | L     | nonvflash                         | 1.2.0                     | NoNVFlash-1.12.2-1.2.0.3-universal.jar                    | None                                     |     | L     | neid                              | 1.5.4.4                   | NotEnoughIDs-1.5.4.4.jar                                  | None                                     |     | L     | notenoughwands                    | 1.8.1                     | notenoughwands-1.12-1.8.1.jar                             | None                                     |     | L     | nutrition                         | 4.4.0                     | Nutrition-1.12.2-4.4.0.jar                                | None                                     |     | L     | oreexcavation                     | 1.4.150                   | OreExcavation-1.4.150.jar                                 | None                                     |     | L     | oeintegration                     | 2.3.4                     | oeintegration-2.3.4.jar                                   | None                                     |     | L     | openmods                          | 0.12.2                    | OpenModsLib-1.12.2-0.12.2.jar                             | None                                     |     | L     | openblocks                        | 1.8.1                     | OpenBlocks-1.12.2-1.8.1.jar                               | None                                     |     | L     | packcrashinfo                     | %VERSION%                 | packcrashinfo-1.0.1.jar                                   | None                                     |     | L     | patchouli                         | 1.0-23.6                  | Patchouli-1.0-23.6.jar                                    | None                                     |     | L     | placebo                           | 1.6.0                     | Placebo-1.12.2-1.6.0.jar                                  | None                                     |     | L     | plants2                           | 2.10.7                    | Plants-1.12.2-2.10.7.jar                                  | None                                     |     | L     | portalgun                         | 7.1.0                     | PortalGun-1.12.2-7.1.0.jar                                | None                                     |     | L     | projecte                          | 1.12.2-PE1.4.1            | ProjectE-1.12.2-PE1.4.1.jar                               | None                                     |     | L     | projectintelligence               | 1.0.9                     | ProjectIntelligence-1.12.2-1.0.9.28-universal.jar         | None                                     |     | L     | psi                               | r1.1-78                   | Psi-r1.1-78.2.jar                                         | None                                     |     | L     | redstonearsenal                   | 2.6.6                     | RedstoneArsenal-1.12.2-2.6.6.1-universal.jar              | None                                     |     | L     | xreliquary                        | 1.12.2-1.3.4.796          | Reliquary-1.12.2-1.3.4.796.jar                            | None                                     |     | L     | thermalcultivation                | 0.3.6                     | ThermalCultivation-1.12.2-0.3.6.1-universal.jar           | None                                     |     | L     | thermaldynamics                   | 2.5.6                     | ThermalDynamics-1.12.2-2.5.6.1-universal.jar              | None                                     |     | L     | thermalinnovation                 | 0.3.6                     | ThermalInnovation-1.12.2-0.3.6.1-universal.jar            | None                                     |     | L     | tinker_io                         | rw2.8.3                   | tinker_io-1.12.2-rw2.8.3.jar                              | None                                     |     | L     | traverse                          | 1.6.0                     | Traverse-1.12.2-1.6.0-69.jar                              | None                                     |     | L     | unloader                          | 1.2.0                     | unloader-1.2.0.jar                                        | None                                     |     | L     | waim                              | 1.0.0                     | WAIM-1.0.0.jar                                            | None                                     |     | L     | waystones                         | 4.1.0                     | Waystones_1.12.2-4.1.0.jar                                | None                                     |     | L     | xtones                            | 1.2.2                     | Xtones-1.2.2.jar                                          | None                                     |     | L     | structurize                       | 1.12.2-0.10.277-RELEASE   | structurize-1.12.2-0.10.277-RELEASE.jar                   | None                                     |     | L     | minecolonies                      | 1.12.2-0.11.841-ALPHA     | minecolonies-1.12.2-0.11.841-BETA-universal.jar           | None                                     |     | L     | armoryexpansion-conarm            | 1.4.2                     | armoryexpansion-1.4.2.jar                                 | None                                     |     | L     | librarianliblate                  | 4.22                      | librarianlib-1.12.2-4.22.jar                              | None                                     |     | L     | mysticallib                       | 1.12.2-1.13.0             | mysticallib-1.12.2-1.13.0.jar                             | None                                     |     Loaded coremods (and transformers):  Inventory Tweaks Coremod (InventoryTweaks-1.64+dev.151.jar)   invtweaks.forge.asm.ContainerTransformer 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.15-1.12.2.jar)   pl.asie.foamfix.coremod.FoamFixTransformer LibrarianLib Plugin (librarianlib-1.12.2-4.22.jar)   com.teamwizardry.librarianlib.asm.LibLibTransformer ForgelinPlugin (Forgelin-1.8.4.jar)    OpenModsCorePlugin (OpenModsLib-1.12.2-0.12.2.jar)   openmods.core.OpenModsClassTransformer 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 CTMCorePlugin (CTM-MC1.12.2-1.0.2.31.jar)   team.chisel.ctm.client.asm.CTMTransformer Plugin (NotEnoughIDs-1.5.4.4.jar)   ru.fewizz.neid.asm.Transformer EnderCorePlugin (EnderCore-1.12.2-0.5.76-core.jar)   com.enderio.core.common.transform.EnderCoreTransformer   com.enderio.core.common.transform.SimpleMixinPatcher JustEnoughIDs Extension Plugin (JustEnoughIDs-1.0.4-SNAPSHOT-thin.jar)   org.dimdev.jeid.JEIDTransformer CorePlugin (ForgeEndertech-1.12.2-4.5.6.1-build.0648.jar)    MalisisCorePlugin (malisiscore-1.12.2-6.5.1.jar)        GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.6.0 NVIDIA 531.41' Renderer: 'NVIDIA GeForce RTX 3060/PCIe/SSE2'     Launched Version: forge-14.23.5.2860     LWJGL: 2.9.4     OpenGL: NVIDIA GeForce RTX 3060/PCIe/SSE2 GL version 4.6.0 NVIDIA 531.41, NVIDIA Corporation     GL Caps: Using GL 1.3 multitexturing. Using GL 1.3 texture combiners. Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported. Shaders are available because OpenGL 2.1 is supported. VBOs are available because OpenGL 1.5 is supported.     Using VBOs: Yes     Is Modded: Definitely; Client brand changed to 'fml,forge'     Type: Client (map_client.txt)     Resource Packs:      Current Language: English (US)     Profiler Position: N/A (disabled)     CPU: 12x AMD Ryzen 5 5600X 6-Core Processor 
  • Topics

×
×
  • Create New...

Important Information

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