• 0

    posted a message on Thaumcraft 6.1.BETA26 [no longer being developed]

    Baubles is always a problem... I can't compile, because I get this error:

    java.lang.NoSuchMethodError: baubles.common.items.ItemRing.func_77625_d(I)Lnet/minecraft/item/Item;

    Probably something to do with obfuscation. I'll try to build it myself from the source.

    Posted in: Minecraft Mods
  • 0

    posted a message on Thaumcraft 6.1.BETA26 [no longer being developed]
    Quote from KryptonCaptain»


    First, here's the direct link to that section of code if you want to have a look at the other sections around it, like recipes
    https://github.com/KryptonCaptain/Thaumic-Dyes/blob/master/src/main/java/thaumicdyes/common/ConfigResearch.java#L83

    The numbers after the aspects are for the research point cost if the node is a Secondary/point buy/hexagonal research.


    ResearchComplexity determines how big the grid is for the puzzle. Valid values are 1-3


    A ResearchPage generally either refers to a lang entry (eg. "tc.research_page.TD.crimson.1"), or a recipe handler (variable which I define and register immediately prior to that segment - the way I use means all my recipes and research are all in the same class and grouped with relevant research, rather than between two classes like TC does. Each to their own though, both work, and I use the other for complex/special case recipes)


    The markup for research can be found here, it hasn't changed between TC4/5, so it's all applicable. You can also use vanilla text formatting with § codes - as evident in the lang entries below the guide.


    Thankfully, for setLost and all that, it's commented in here


    I think I got it all. Thank you so much, you helped me a great deal!
    Posted in: Minecraft Mods
  • 0

    posted a message on Thaumcraft 6.1.BETA26 [no longer being developed]
    Quote from KryptonCaptain»

    I'm gonna use my own code from TDyes for examples here

    new ResearchItem("TD.CRIMSON", "DYES", 
    			  (new AspectList()).add(Aspect.ELDRITCH, 4).add(Aspect.ARMOR, 4).add(Aspect.MAGIC, 4),
    			  -2, -1, 2, 
    			  new ItemStack(ConfigItems.itemEldritchObject, 1, 1))
    			  .setPages(new ResearchPage[]{
    					  new ResearchPage("tc.research_page.TD.crimson.1"),
    					  new ResearchPage("tc.research_page.TD.crimson.2"),
    					  new ResearchPage("tc.research_page.TD.crimson.3"),
    					  new ResearchPage(recipeFabricResource),
    					  new ResearchPage(recipeCrimsonBoots)
    					  })
    			  .setParents("CRIMSON", "ENCHFABRIC")
    			  .setLost()
    			  .setSpecial()
    			  .setRound()
    			  .setItemTriggers(new ItemStack(ConfigItems.itemEldritchObject, 1, 1))
    			  .registerResearchItem();
    ThaumcraftApi.addWarpToResearch("TD.CRIMSON", 1);





    Here's how it breaks down: ResearchItem(String "research key", String "tab location", AspectList, int xCoord, int yCoord, int researchComplexity, [ItemStack icon / ResourceLocation])



    For what you're trying to do, obviously the "tab location" needs to match the key for the Eldritch tab, then you'll want to use either .setParents() or .setParentsHidden() with the keys for the appropriate research.

    If you can't find the keys on your own, then maybe you need to do some more research into what you're trying to achieve first




    I thank you very much, and I have a few questions:


    • The aspects we add will be the ones present in the research page, the ones we're supposed to connect, I suppose? What about the numbers when adding them to the AspectList?
    • what is reseachComplexity?
    • what exactly is a ResearchItem and a ResearchPage? See if I got this right: the ResearchItem is the thing you actually research, part of Thaumcraft mechanics, which opens new stuff for you to make. The ResearchPages are the written pages you are able to view after the ResearchItem is available to you. If that assumption is correct, making ResearchPages must require a lot of markup. I intend to avoid fancy pages as much as possible, but I feel like I won't be able to avoid a few links and color codes and stuff like that. Where can I get the documentation on how to write a ResearchPage, or at least good examples of them?
    • what do the methods setLost, setSpecial and setRound do?

    Thanks again. Sorry I didn't understand so much. This part of the Thaumcraft API is kind of esoteric. I don't blame the authors. The stuff the API exposes is complex, and I don't think they could have made it any easier on us users.

    If anyone can help me with those further clarifications, I would appreciate it a lot.

    Posted in: Minecraft Mods
  • 0

    posted a message on Thaumcraft 6.1.BETA26 [no longer being developed]

    This question is about version 4.2.3.5:

    I'm trying to make an addon for Thaumcraft, and I wanted to know how to add a new research to the Eldritch page. It seems to be the most complicated part of making an addon for Thaumcraft, and I can't figure it out just from reading code that does it. I wanted the player to be able to research that after a few Thaumcraft researches, including the second Eldritch revelation.

    Posted in: Minecraft Mods
  • 0

    posted a message on Is there a way to restore a player's inventory using ForgeEssentials?

    The Backup module only works on dimensions (what a weird notion of what a backup is the folks over there have). Maybe PlayerLogger would be better? I wouldn't need this in the first place if the Afterlife module actually worked as intended.

    Posted in: Server Support and Administration
  • 0

    posted a message on [Forge]ForgeEssentials -- Bukkit functionality for your Forge server

    Is there a way to increase the number of pwarps?

    Posted in: Minecraft Mods
  • 0

    posted a message on What do I need to do to host a server from home?

    Apparently, the guy gave up on the project 2 years ago. I can set up a fully functional Minecraft Server. No problem there. My problem is making the host machine let the outside world connect to the server. Is there a simple "8 easy steps" kind of thing that I can follow? I really have no interest in learning anything at all about transport/network protocols or whatever. I don't find any of that remotely interesting, and I just want to make this server work.

    Posted in: Server Support and Administration
  • 0

    posted a message on What do I need to do to host a server from home?

    That sounds less than straight forward, with all the "read the documentation for the respective models" part. Is there an easier way? If I pay that fee, will it do it for me? Or will I still have to do a whole lot of other stuff? You see, that's what bothers me: I pay the fee, and then I still have to configure a ton of stuff. I would feel ripped off.

    Posted in: Server Support and Administration
  • 0

    posted a message on What do I need to do to host a server from home?

    Looks like it could help or not. The port forwarding feature requires me to pay for it. And if it doesn't work (i.e. if I still need to do more stuff to open my server to the outside world) I'll feel scammed.

    Posted in: Server Support and Administration
  • 0

    posted a message on What do I need to do to host a server from home?

    I'll check it out in a moment.

    Posted in: Server Support and Administration
  • 0

    posted a message on What do I need to do to host a server from home?

    Just the very basics of it. I want to host a Forge Server (probably 1.7.10, but maybe 1.10.2, I don't know if that changes anything). I have McAfee Total Protection (I won't be uninstalling it). And I also have Windows Defender (which is mostly kept disabled, but I know it is not completely disabled, and I will have to deal with it before this is over).

    My Internet Provider allocates me a dynamic IP every time my modem gets turned off and on again, and that's not something you guys need to take into account. The server is just for friends and we're practically within shout range from one another.

    My Network is like this: A modem connected to the outside (it is one of those "routed modems, which has more than just one outlet, so I don't know if that complicate things. We just use it like a normal modem: we connect one outlet to the one input of our router number 1). This modem is connected to a router. My PC and a bunch of other stuff, including another PC is connected to this router. Another router is connected to the first router and acts as a "repeater" just so the rest of the stuff can fit into the network. The first router also emits the WiFi signal (the modem's and the second router's WiFi signals are disabled)

    What I want to know is how do I let my friends PCs get inside my network through Minecraft's port?

    Do I need to do something in the modem? (because it's "routed")?
    I need to do port forwarding in the first router. How?
    Do I need to care about the second router?
    What about McAfee and Windows Defender? What do I need to do about them? (Remember, I can't uninstall McAfee).

    Posted in: Server Support and Administration
  • 0

    posted a message on How do I restore a world to a previous state using a zip backup of it created by multicraft?

    I was hoping I could do that without having to download-unzip-upload the files.

    Posted in: Server Support and Administration
  • 0

    posted a message on How do I restore a world to a previous state using a zip backup of it created by multicraft?
    Quote from lcswolf»

    just unzip the backup and then use it to replace the world folder also your java args are incomplete "JVM Flags: 2 total; -Xmx1024M -Xms1024M" they only have ram configured


    How can I do that? And how can I change the JVM arguments? I'm using multicraft, as I mentioned before.
    Posted in: Server Support and Administration
  • 0

    posted a message on How do I restore a world to a previous state using a zip backup of it created by multicraft?

    My world got corrupted and I was wondering, how can I use the zip files in the backup folder to restore my world?


    Bellow is the crash-report I get, maybe someone can help me fix it instead? Whenever I get into the server it crashes and restarts

    ---- Minecraft Crash Report ----
    // Don't be sad, have a hug! <3
    
    Time: 10/1/17 2:40 PM
    Description: Getting block
    
    java.lang.ArrayIndexOutOfBoundsException: 4044
    	at net.minecraft.world.chunk.storage.ExtendedBlockStorage.func_150819_a(SourceFile:34)
    	at net.minecraft.world.chunk.Chunk.func_150810_a(Chunk.java:517)
    	at net.minecraft.world.World.func_147439_a(World.java:346)
    	at net.minecraft.world.gen.feature.WorldGenHellLava.func_76484_a(SourceFile:22)
    	at net.minecraft.world.gen.ChunkProviderHell.func_73153_a(ChunkProviderHell.java:456)
    	at net.minecraft.world.gen.ChunkProviderServer.func_73153_a(ChunkProviderServer.java:279)
    	at net.minecraft.world.chunk.Chunk.func_76624_a(Chunk.java:1045)
    	at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:52)
    	at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:12)
    	at net.minecraftforge.common.util.AsynchronousExecutor$Task.finish(AsynchronousExecutor.java:189)
    	at net.minecraftforge.common.util.AsynchronousExecutor.finishActive(AsynchronousExecutor.java:354)
    	at net.minecraftforge.common.chunkio.ChunkIOExecutor.tick(ChunkIOExecutor.java:30)
    	at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:596)
    	at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:334)
    	at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:547)
    	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:396)
    	at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:685)
    
    
    A detailed walkthrough of the error, its code path and all known details is as follows:
    ---------------------------------------------------------------------------------------
    
    -- Head --
    Stacktrace:
    	at net.minecraft.world.chunk.storage.ExtendedBlockStorage.func_150819_a(SourceFile:34)
    	at net.minecraft.world.chunk.Chunk.func_150810_a(Chunk.java:517)
    
    -- Block being got --
    Details:
    	Location: World: (12,15,12), Chunk: (at 12,0,12 in 0,0; contains blocks 0,0,0 to 15,255,15), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)
    Stacktrace:
    	at net.minecraft.world.World.func_147439_a(World.java:346)
    
    -- Requested block coordinates --
    Details:
    	Found chunk: false
    	Location: World: (12,15,124), Chunk: (at 12,0,12 in 0,7; contains blocks 0,0,112 to 15,255,127), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)
    Stacktrace:
    	at net.minecraft.world.gen.feature.WorldGenHellLava.func_76484_a(SourceFile:22)
    	at net.minecraft.world.gen.ChunkProviderHell.func_73153_a(ChunkProviderHell.java:456)
    	at net.minecraft.world.gen.ChunkProviderServer.func_73153_a(ChunkProviderServer.java:279)
    	at net.minecraft.world.chunk.Chunk.func_76624_a(Chunk.java:1045)
    	at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:52)
    	at net.minecraftforge.common.chunkio.ChunkIOProvider.callStage2(ChunkIOProvider.java:12)
    	at net.minecraftforge.common.util.AsynchronousExecutor$Task.finish(AsynchronousExecutor.java:189)
    	at net.minecraftforge.common.util.AsynchronousExecutor.finishActive(AsynchronousExecutor.java:354)
    	at net.minecraftforge.common.chunkio.ChunkIOExecutor.tick(ChunkIOExecutor.java:30)
    	at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:596)
    	at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:334)
    	at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:547)
    	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:396)
    	at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:685)
    
    -- System Details --
    Details:
    	Minecraft Version: 1.7.10
    	Operating System: Linux (amd64) version 2.6.32-504.30.3.el6.x86_64
    	Java Version: 1.8.0_73, Oracle Corporation
    	Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
    	Memory: 167170744 bytes (159 MB) / 987758592 bytes (942 MB) up to 987758592 bytes (942 MB)
    	JVM Flags: 2 total; -Xmx1024M -Xms1024M
    	AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
    	IntCache: cache: 15, tcache: 0, allocated: 13, tallocated: 95
    	FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1614 111 mods loaded, 111 mods active
    	States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
    	UCHIJAAAA	mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) 
    	UCHIJAAAA	FML{7.10.99.99} [Forge Mod Loader] (forge-1.7.10-10.13.4.1614-1.7.10-universal.jar) 
    	UCHIJAAAA	Forge{10.13.4.1614} [Minecraft Forge] (forge-1.7.10-10.13.4.1614-1.7.10-universal.jar) 
    	UCHIJAAAA	Aroma1997Core{1.0.2.16} [Aroma1997Core] (Aroma1997Core-1.7.10-1.0.2.16.jar) 
    	UCHIJAAAA	CodeChickenCore{1.0.7.47} [CodeChicken Core] (minecraft.jar) 
    	UCHIJAAAA	NotEnoughItems{1.0.5.120} [Not Enough Items] (NotEnoughItems-1.7.10-1.0.5.120-universal.jar) 
    	UCHIJAAAA	ThaumicTinkerer-preloader{0.1} [Thaumic Tinkerer Core] (minecraft.jar) 
    	UCHIJAAAA	WitchingGadgetsCore{1.1.10} [Witching Gadgets Core] (minecraft.jar) 
    	UCHIJAAAA	OpenModsCore{0.10} [OpenModsCore] (minecraft.jar) 
    	UCHIJAAAA	<CoFH ASM>{000} [CoFH ASM] (minecraft.jar) 
    	UCHIJAAAA	FastCraft{1.23} [FastCraft] (fastcraft-1.23.jar) 
    	UCHIJAAAA	debug{1.0} [debug] (denseores-1.6.2.jar) 
    	UCHIJAAAA	additionalcompression{3.0} [Additional Compression] (Additional Compression-1.7.10-3.0.jar) 
    	UCHIJAAAA	AppleCore{1.3.9} [AppleCore] (AppleCore-mc1.7.10-1.3.9.jar) 
    	UCHIJAAAA	ArchitectureCraft{1.7.2} [ArchitectureCraft] (ArchitectureCraft-1.7.2-mc1.7.10.jar) 
    	UCHIJAAAA	Aroma1997CoreHelper{1.0.2.16} [Aroma1997Core|Helper] (Aroma1997Core-1.7.10-1.0.2.16.jar) 
    	UCHIJAAAA	Aroma1997sDimension{1.0} [Aroma1997's Dimensional World] (Aroma1997s-Dimensional-World-1.7.10-1.1.0.1.jar) 
    	UCHIJAAAA	Baubles{1.0.1.10} [Baubles] (Baubles-1.7.10-1.0.1.10.jar) 
    	UCHIJAAAA	Thaumcraft{4.2.3.5} [Thaumcraft] (Thaumcraft-1.7.10-4.2.3.5.jar) 
    	UCHIJAAAA	Waila{1.5.10} [Waila] (Waila-1.5.10_1.7.10.jar) 
    	UCHIJAAAA	Automagy{0.28.2} [Automagy] (Automagy-1.7.10-0.28.2.jar) 
    	UCHIJAAAA	bdlib{1.9.4.109} [BD Lib] (bdlib-1.9.4.109-mc1.7.10.jar) 
    	UCHIJAAAA	BetterAchievements{0.1.0} [Better Achievements] (BetterAchievements-1.7.10-0.1.0.jar) 
    	UCHIJAAAA	BiblioCraft{1.11.7} [BiblioCraft] (BiblioCraft[v1.11.7][MC1.7.10].jar) 
    	UCHIJAAAA	CoFHCore{1.7.10R3.1.4} [CoFH Core] (CoFHCore-[1.7.10]3.1.4-329.jar) 
    	UCHIJAAAA	Forestry{4.2.16.64} [Forestry for Minecraft] (forestry_1.7.10-4.2.16.64.jar) 
    	UCHIJAAAA	BiblioWoodsForestry{1.7} [BiblioWoods Forestry Edition] (BiblioWoods[Forestry][v1.7].jar) 
    	UCHIJAAAA	BinnieCore{2.0.22.7} [Binnie Core] (binnie-mods-1.7.10-2.0.22.7.jar) 
    	UCHIJAAAA	Botany{2.0.22.7} [Botany] (binnie-mods-1.7.10-2.0.22.7.jar) 
    	UCHIJAAAA	ExtraTrees{2.0.22.7} [Extra Trees] (binnie-mods-1.7.10-2.0.22.7.jar) 
    	UCHIJAAAA	Genetics{2.0.22.7} [Genetics] (binnie-mods-1.7.10-2.0.22.7.jar) 
    	UCHIJAAAA	ExtraBees{2.0.22.7} [Extra Bees] (binnie-mods-1.7.10-2.0.22.7.jar) 
    	UCHIJAAAA	TwilightForest{2.3.7} [The Twilight Forest] (twilightforest-1.7.10-2.3.7.jar) 
    	UCHIJAAAA	chisel{2.9.5.11} [Chisel] (Chisel-2.9.5.11.jar) 
    	UCHIJAAAA	CarpentersBlocks{3.3.8.1} [Carpenter's Blocks] (Carpenter's Blocks v3.3.8.1 - MC 1.7.10.jar) 
    	UCHIJAAAA	ChickenChunks{1.3.4.19} [ChickenChunks] (ChickenChunks-1.7.10-1.3.4.19-universal.jar) 
    	UCHIJAAAA	claybucket{1.2} [Clay Bucket] (ClayBucket-1.7.10-1.2.jar) 
    	UCHIJAAAA	cookingbook{1.0.140} [Cooking for Blockheads] (cookingbook-mc1.7.10-1.0.140.jar) 
    	UCHIJAAAA	MineTweaker3{3.0.13} [MineTweaker 3] (CraftTweaker-1.7.10-3.0.13.jar) 
    	UCHIJAAAA	customnpcs{1.7.10d} [CustomNpcs] (CustomNPCs_1.7.10d(19jun17).jar) 
    	UCHIJAAAA	PTRModelLib{1.0.0} [PTRModelLib] (Decocraft-2.4.2_1.7.10.jar) 
    	UCHIJAAAA	props{2.4.2} [Decocraft] (Decocraft-2.4.2_1.7.10.jar) 
    	UCHIJAAAA	DummyCore{1.13} [DummyCore] (DummyCore1.13.jar) 
    	UCHIJAAAA	endercore{1.7.10-0.2.0.39_beta} [EnderCore] (EnderCore-1.7.10-0.2.0.39_beta.jar) 
    	UCHIJAAAA	EnderStorage{1.4.7.37} [EnderStorage] (EnderStorage-1.7.10-1.4.7.37-universal.jar) 
    	UCHIJAAAA	EnderZoo{1.7.10-1.0.15.32} [Ender Zoo] (EnderZoo-1.7.10-1.0.15.32.jar) 
    	UCHIJAAAA	harvestcraft{1.7.10j} [Pam's HarvestCraft] (Pam's HarvestCraft 1.7.10Lb.jar) 
    	UCHIJAAAA	ThermalFoundation{1.7.10R1.2.6} [Thermal Foundation] (ThermalFoundation-[1.7.10]1.2.6-118.jar) 
    	UCHIJAAAA	ImmersiveEngineering{0.7.7} [Immersive Engineering] (ImmersiveEngineering-0.7.7.jar) 
    	UCHIJAAAA	Mantle{1.7.10-0.3.2.jenkins191} [Mantle] (Mantle-1.7.10-0.3.2b.jar) 
    	UCHIJAAAA	TConstruct{1.7.10-1.8.8.build988} [Tinkers' Construct] (TConstruct-1.7.10-1.8.8.jar) 
    	UCHIJAAAA	ExtraTiC{1.4.6} [ExtraTiC] (ExtraTiC-1.7.10-1.4.6.jar) 
    	UCHIJAAAA	FlatSigns{2.1.0.19} [Flat Signs] (FlatSigns-1.7.10-universal-2.1.0.19.jar) 
    	UCHIJAAAA	ThaumicTinkerer{unspecified} [Thaumic Tinkerer] (ThaumicTinkerer-2.5-1.7.10-164.jar) 
    	UCHIJAAAA	ForbiddenMagic{1.7.10-0.575} [Forbidden Magic] (Forbidden Magic-1.7.10-0.575.jar) 
    	UCHIJAAAA	FTBL{1.0.18.2} [FTBLib] (FTBLib-1.7.10-1.0.18.3.jar) 
    	UCHIJAAAA	FTBU{1.0.18.2} [FTBUtilities] (FTBUtilities-1.7.10-1.0.18.3.jar) 
    	UCHIJAAAA	gadomancy{1.0.7.3} [Gadomancy] (gadomancy-1.7.10-1.0.7.3.jar) 
    	UCHIJAAAA	MagicBees{2.4.4} [Magic Bees] (magicbees-1.7.10-2.4.4.jar) 
    	UCHIJAAAA	gendustry{1.6.3.132} [GenDustry] (gendustry-1.6.3.132-mc1.7.10.jar) 
    	UCHIJAAAA	gud_thaumicnei{1.3.0} [Thaumic NEI] (gud_thaumicnei-1.3.0.jar) 
    	UCHIJAAAA	iChunUtil{4.2.3} [iChunUtil] (iChunUtil-4.2.3.jar) 
    	UCHIJAAAA	Hats{4.0.1} [Hats] (Hats-4.0.1.jar) 
    	UCHIJAAAA	HatStand{4.0.0} [HatStand] (HatStand-4.0.0.jar) 
    	UCHIJAAAA	HelpFixer{1.0.7} [HelpFixer] (HelpFixer-1.0.7.jar) 
    	UCHIJAAAA	inventorytweaks{1.59-dev-152-cf6e263} [Inventory Tweaks] (InventoryTweaks-1.59-dev-152.jar) 
    	UCHIJAAAA	IronChest{6.0.60.741} [Iron Chest] (ironchest-1.7.10-6.0.60.741-universal.jar) 
    	UCHIJAAAA	JABBA{1.2.2} [JABBA] (Jabba-1.2.2_1.7.10.jar) 
    	UCHIJAAAA	journeymap{5.1.4p2} [JourneyMap] (journeymap-1.7.10-5.1.4p2-unlimited.jar) 
    	UCHIJAAAA	llor{1.0.7-mc1.7.10} [Light Level Overlay Reloaded] (LLOverlayReloaded-1.0.7-mc1.7.10.jar) 
    	UCHIJAAAA	lootbags{2.0.17} [Loot Bags] (LootBags-1.7.10-2.0.17.jar) 
    	UCHIJAAAA	mdeco{0.3.5} [Magical Decorations] (MagicalDecorations-0.3.5.jar) 
    	UCHIJAAAA	MobProperties{1.0.2} [Mob Properties] (MobProperties-1.7.10-1.0.2.jar) 
    	UCHIJAAAA	modtweaker2{0.9.6} [Mod Tweaker 2] (ModTweaker2-0.9.6.jar) 
    	UCHIJAAAA	Morpheus{1.7.10-1.6.21} [Morpheus] (Morpheus-1.7.10-1.6.21.jar) 
    	UCHIJAAAA	NEIAddons{1.12.14.40} [NEI Addons] (neiaddons-1.12.14.40-mc1.7.10.jar) 
    	UCHIJAAAA	NEIAddons|Developer{1.12.14.40} [NEI Addons: Developer Tools] (neiaddons-1.12.14.40-mc1.7.10.jar) 
    	UCHIJAAAA	NEIAddons|AppEng{1.12.14.40} [NEI Addons: Applied Energistics 2] (neiaddons-1.12.14.40-mc1.7.10.jar) 
    	UCHIJAAAA	NEIAddons|Botany{1.12.14.40} [NEI Addons: Botany] (neiaddons-1.12.14.40-mc1.7.10.jar) 
    	UCHIJAAAA	NEIAddons|Forestry{1.12.14.40} [NEI Addons: Forestry] (neiaddons-1.12.14.40-mc1.7.10.jar) 
    	UCHIJAAAA	NEIAddons|CraftingTables{1.12.14.40} [NEI Addons: Crafting Tables] (neiaddons-1.12.14.40-mc1.7.10.jar) 
    	UCHIJAAAA	NEIAddons|ExNihilo{1.12.14.40} [NEI Addons: Ex Nihilo] (neiaddons-1.12.14.40-mc1.7.10.jar) 
    	UCHIJAAAA	neiintegration{1.1.2} [NEI Integration] (NEIIntegration-MC1.7.10-1.1.2.jar) 
    	UCHIJAAAA	NetherOres{1.7.10R2.3.1} [Nether Ores] (NetherOres-[1.7.10]2.3.1-22.jar) 
    	UCHIJAAAA	NodalMechanics{1.7.10R1.0} [NodalMechanics] (NodalMechanics-1.7-1.0-7.jar) 
    	UCHIJAAAA	neresources{0.1.0.ManuallyBuilt} [Not Enough Resources] (NotEnoughResources-1.7.10-0.1.0-122.jar) 
    	UCHIJAAAA	bt{1.0.2} [NotEnoughThaumcraftTabs] (NotEnoughThaumcraftTabs-1.0.2.jar) 
    	UCHIJAAAA	OpenMods{0.10} [OpenMods] (OpenModsLib-1.7.10-0.10.jar) 
    	UCHIJAAAA	OpenBlocks{1.6} [OpenBlocks] (OpenBlocks-1.7.10-1.6.jar) 
    	UCHIJAAAA	p455w0rdslib{1.0.4} [p455w0rd's Library] (p455w0rdslib-1.7.10-1.0.4.jar) 
    	UCHIJAAAA	SpiceOfLife{1.3.8} [The Spice of Life] (SpiceOfLife-mc1.7.10-1.3.8.jar) 
    	UCHIJAAAA	TaintedMagic{r7.82} [Tainted Magic] (Tainted-Magic-r7.82.jar) 
    	UCHIJAAAA	tcinventoryscan{1.0.11} [TC Inventory Scanning] (tcinventoryscan-mc1.7.10-1.0.11.jar) 
    	UCHIJAAAA	tcnodetracker{1.1.2} [TC Node Tracker] (tcnodetracker-1.7.10-1.1.2.jar) 
    	UCHIJAAAA	thaumcraftneiplugin{@VERSION@} [Thaumcraft NEI Plugin] (thaumcraftneiplugin-1.7.10-1.7a.jar) 
    	UCHIJAAAA	thaumicalchemy{1.7.10-1.0} [Thaumic Alchemy] (thaumicalchemy-1.7.10-1.0.jar) 
    	UCHIJAAAA	thaumicbases{1.3.1710.2} [Thaumic Bases] (ThaumicBases-1.3.1710.4.jar) 
    	UCHIJAAAA	ThaumicExploration{0.6.0} [Thaumic Exploration] (ThaumicExploration-1.7.10-1.1-53.jar) 
    	UCHIJAAAA	ThaumicHorizons{1.1.9} [Thaumic Horizons] (thaumichorizons-1.7.10-1.1.9.jar) 
    	UCHIJAAAA	TiCTooltips{1.2.5} [TiC Tooltips] (TiCTooltips-mc1.7.10-1.2.5.jar) 
    	UCHIJAAAA	TMechworks{0.2.15.106} [Tinkers' Mechworks] (TMechworks-1.7.10-0.2.15.106.jar) 
    	UCHIJAAAA	TravellersGear{1.16.6} [Traveller's Gear] (TravellersGear-1.7.10-1.16.6.jar) 
    	UCHIJAAAA	WailaHarvestability{1.1.6} [Waila Harvestability] (WailaHarvestability-mc1.7.10-1.1.6.jar) 
    	UCHIJAAAA	wailaplugins{MC1.7.10-0.2.0-25} [WAILA Plugins] (WAILAPlugins-MC1.7.10-0.2.0-25.jar) 
    	UCHIJAAAA	wawla{1.3.1} [What Are We Looking At] (Wawla-1.0.5.120.jar) 
    	UCHIJAAAA	witching-engineering{0.1} [Witching Engineering] (witching-engineering-0.1.jar) 
    	UCHIJAAAA	WitchingGadgets{1.1.10} [Witching Gadgets] (WitchingGadgets-1.7.10-1.1.10.jar) 
    	UCHIJAAAA	aobd{2.9.2} [Another One Bites The Dust] (AOBD-2.9.2.jar) 
    	UCHIJAAAA	denseores{1.0} [Dense Ores] (denseores-1.6.2.jar) 
    	UCHIJAAAA	IguanaTweaksTConstruct{1.7.10-2.1.6.163} [Iguana Tinker Tweaks] (IguanaTinkerTweaks-1.7.10-2.1.6.jar) 
    	UCHIJAAAA	UniDict{1.7.10-2.9.2} [UniDict] (UniDict-1.7.10-2.9.2.jar) 
    	OpenModsLib class transformers: [stencil_patches:ENABLED],[movement_callback:ENABLED],[player_damage_hook:FINISHED],[map_gen_fix:FINISHED],[gl_capabilities_hook:ENABLED],[player_render_hook:ENABLED]
    	Class transformer null safety: all safe
    	CoFHCore: -[1.7.10]3.1.4-329
    	ThermalFoundation: -[1.7.10]1.2.6-118
    	Mantle Environment: Environment healthy.
    	TConstruct Environment: Environment healthy.
    	NetherOres: -[1.7.10]2.3.1-22
    	List of loaded APIs: 
    		* AppleCoreAPI (1.2.0) from AppleCore-mc1.7.10-1.3.9.jar
    		* appliedenergistics2|API (rv2) from ThaumicTinkerer-2.5-1.7.10-164.jar
    		* Baubles|API (1.0.1.10) from Baubles-1.7.10-1.0.1.10.jar
    		* BetterAchievements|API (0.1.0) from BetterAchievements-1.7.10-0.1.0.jar
    		* CarpentersBlocks|API (3.3.7) from Carpenter's Blocks v3.3.8.1 - MC 1.7.10.jar
    		* ChiselAPI (0.1.1) from Chisel-2.9.5.11.jar
    		* ChiselAPI|Carving (0.1.1) from Chisel-2.9.5.11.jar
    		* ChiselAPI|Rendering (0.1.1) from Chisel-2.9.5.11.jar
    		* CoFHAPI (1.7.10R1.0.13) from EnderCore-1.7.10-0.2.0.39_beta.jar
    		* CoFHAPI|block (1.7.10R1.3.1) from CoFHCore-[1.7.10]3.1.4-329.jar
    		* CoFHAPI|core (1.7.10R1.3.1) from CoFHCore-[1.7.10]3.1.4-329.jar
    		* CoFHAPI|energy (1.7.10R1.0.2) from p455w0rdslib-1.7.10-1.0.4.jar
    		* CoFHAPI|fluid (1.7.10R1.3.1) from CoFHCore-[1.7.10]3.1.4-329.jar
    		* CoFHAPI|inventory (1.7.10R1.3.1) from CoFHCore-[1.7.10]3.1.4-329.jar
    		* CoFHAPI|item (1.7.10R1.3.1) from CoFHCore-[1.7.10]3.1.4-329.jar
    		* CoFHAPI|modhelpers (1.7.10R1.3.1) from CoFHCore-[1.7.10]3.1.4-329.jar
    		* CoFHAPI|tileentity (1.7.10R1.3.1) from CoFHCore-[1.7.10]3.1.4-329.jar
    		* CoFHAPI|transport (1.7.10R1.0.13) from EnderCore-1.7.10-0.2.0.39_beta.jar
    		* CoFHAPI|world (1.7.10R1.3.1) from CoFHCore-[1.7.10]3.1.4-329.jar
    		* CoFHLib (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar
    		* CoFHLib|audio (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar
    		* CoFHLib|gui (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar
    		* CoFHLib|gui|container (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar
    		* CoFHLib|gui|element (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar
    		* CoFHLib|gui|element|listbox (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar
    		* CoFHLib|gui|slot (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar
    		* CoFHLib|inventory (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar
    		* CoFHLib|render (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar
    		* CoFHLib|render|particle (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar
    		* CoFHLib|util (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar
    		* CoFHLib|util|helpers (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar
    		* CoFHLib|util|position (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar
    		* CoFHLib|world (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar
    		* CoFHLib|world|feature (1.7.10R1.2.1) from CoFHCore-[1.7.10]3.1.4-329.jar
    		* CSLib|API (0.3.0) from Decocraft-2.4.2_1.7.10.jar
    		* ForestryAPI|apiculture (4.8.0) from forestry_1.7.10-4.2.16.64.jar
    		* ForestryAPI|arboriculture (4.2.1) from forestry_1.7.10-4.2.16.64.jar
    		* ForestryAPI|circuits (3.1.0) from forestry_1.7.10-4.2.16.64.jar
    		* ForestryAPI|core (5.0.0) from forestry_1.7.10-4.2.16.64.jar
    		* ForestryAPI|farming (2.1.0) from forestry_1.7.10-4.2.16.64.jar
    		* ForestryAPI|food (1.1.0) from forestry_1.7.10-4.2.16.64.jar
    		* ForestryAPI|fuels (2.0.1) from forestry_1.7.10-4.2.16.64.jar
    		* ForestryAPI|genetics (4.7.1) from forestry_1.7.10-4.2.16.64.jar
    		* ForestryAPI|hives (4.1.0) from forestry_1.7.10-4.2.16.64.jar
    		* ForestryAPI|lepidopterology (1.3.0) from forestry_1.7.10-4.2.16.64.jar
    		* ForestryAPI|mail (3.0.0) from forestry_1.7.10-4.2.16.64.jar
    		* ForestryAPI|multiblock (3.0.0) from forestry_1.7.10-4.2.16.64.jar
    		* ForestryAPI|recipes (5.4.0) from forestry_1.7.10-4.2.16.64.jar
    		* ForestryAPI|storage (3.0.0) from forestry_1.7.10-4.2.16.64.jar
    		* ForestryAPI|world (2.1.0) from forestry_1.7.10-4.2.16.64.jar
    		* gendustryAPI (2.3.0) from gendustry-1.6.3.132-mc1.7.10.jar
    		* ImmersiveEngineering|API (1.0) from ImmersiveEngineering-0.7.7.jar
    		* neresources|API (1.0) from NotEnoughResources-1.7.10-0.1.0-122.jar
    		* OpenBlocks|API (1.1) from OpenBlocks-1.7.10-1.6.jar
    		* RailcraftAPI|crafting (1.0.0) from ImmersiveEngineering-0.7.7.jar
    		* Thaumcraft|API (4.2.2.0) from Pam's HarvestCraft 1.7.10Lb.jar
    		* TravellersGear|API (1.0) from TravellersGear-1.7.10-1.16.6.jar
    		* WailaAPI (1.2) from Waila-1.5.10_1.7.10.jar
    	Chisel: Errors like "[FML]: Unable to lookup ..." are NOT the cause of this crash. You can safely ignore these errors. And update forge while you're at it.
    	Profiler Position: N/A (disabled)
    	Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
    	Is Modded: Definitely; Server brand changed to 'fml,forge'
    	Type: Dedicated Server (map_server.txt)
    Posted in: Server Support and Administration
  • 0

    posted a message on Creating working fluid buckets?

    Is there an equivalent to this universal bucket thing in 1.7.10? I want to create a fluid, this is what I have so far


    public final class ModFluids
    {
    	private ModFluids(){}
    	
    	public static final Fluid moltenRedstoneAlloy = new Fluid("moltenRedstoneAlloy");
    	public static final BlockFluidFinite blockMoltenRedstoneAlloy =(BlockFluidFinite) new BlockFluidFinite(moltenRedstoneAlloy, Material.water).setMaxScaledLight(15).setLightLevel(7);
    	
    	public static void preInit()
    	{
    		FluidRegistry.registerFluid(moltenRedstoneAlloy);
    		GameRegistry.registerBlock(blockMoltenRedstoneAlloy, "blockMoltenRedstoneAlloy");
    	}
    }

    Now I need the bucket, right? Oh and the texture!

    Posted in: Modification Development
  • To post a comment, please .