
ZetaHunter
Members-
Posts
39 -
Joined
-
Last visited
Everything posted by ZetaHunter
-
I dont know how or where did you look but you definetly missed it, I found this in EE3 code just in 5 mins (that includes time of testing it) https://github.com/pahimar/Equivalent-Exchange-3/blob/master/ee3_common/com/pahimar/ee3/item/ItemMiniumStone.java Look at line 65 and 52.
-
The tutorial you have given is highly pointless as to above request. What he needs is block structure guide, not meta-data block guide. I am interested in a guide of this topic aswell. I doubt its hard to make it, basicly its just events and block checking, for example you take ur block and place it in middle, right click and it will begin to check sorounding blocks, using getBlockId or any other similar world class function. If your build matches the test it should do certain things
-
you must specify a entity class to look for, cant check the list of mob entities atm, but its easy to find them.
-
Golden rule of development is to share the error log. Where's ur's sir.
-
Just a suggestion, next time you give a thread subject, do it right, after what you wrote in ur subject completly differs to what the message has to say.
-
Is it possible to make armor invisible?
ZetaHunter replied to thebest108's topic in General Discussion
I would suppose its a keybinding that toggles it and registers the variable into @Mod file or its part of the item class, though first is easier. -
I doubt the @Instance is to blame, there is only one in the code, it cant be the cause of the problem as its only used to access the instance of the mod.
-
Maybe you could post your code so we can see what can be done about it?
-
You will need a custom crafting handler like in redpower its alloy furnace
-
bump, still need help with issue
-
Hello, sorry for grave digging but I am trying to develop with NEI installed, I followed every step and code reads properly. Except moment when I try launch the code, it just throw error (FML throws, not MC) that it cant run with current configuration, so basicly this is the error log: 2013-01-18 21:57:31 [iNFO] [ForgeModLoader] Forge Mod Loader version 4.6.12.511 for Minecraft 1.4.6 loading 2013-01-18 21:57:31 [FINEST] [ForgeModLoader] All core mods are successfully located 2013-01-18 21:57:31 [FINEST] [ForgeModLoader] Discovering coremods 2013-01-18 21:57:31 [FINEST] [ForgeModLoader] Found a candidate coremod CodeChickenCore_dummy.jar 2013-01-18 21:57:31 [FINEST] [ForgeModLoader] Loading coremod CodeChickenCore_dummy.jar 2013-01-18 21:57:31 [FINEST] [ForgeModLoader] Loaded coremod CodeChickenCore_dummy.jar 2013-01-18 21:57:31 [FINEST] [ForgeModLoader] Found a candidate coremod NotEnoughItems_dummy.jar 2013-01-18 21:57:31 [FINEST] [ForgeModLoader] Loading coremod NotEnoughItems_dummy.jar 2013-01-18 21:57:31 [FINEST] [ForgeModLoader] Loaded coremod NotEnoughItems_dummy.jar 2013-01-18 21:57:31 [FINEST] [ForgeModLoader] Found library file argo-2.25.jar present and correct in lib dir 2013-01-18 21:57:31 [FINEST] [ForgeModLoader] Found library file guava-12.0.1.jar present and correct in lib dir 2013-01-18 21:57:31 [FINEST] [ForgeModLoader] Found library file asm-all-4.0.jar present and correct in lib dir 2013-01-18 21:57:31 [FINEST] [ForgeModLoader] Found library file bcprov-jdk15on-147.jar present and correct in lib dir 2013-01-18 21:57:32 [FINEST] [ForgeModLoader] Running coremod plugins 2013-01-18 21:57:32 [FINEST] [ForgeModLoader] Running coremod plugin FMLCorePlugin 2013-01-18 21:57:32 [FINEST] [ForgeModLoader] Coremod plugin FMLCorePlugin run successfully 2013-01-18 21:57:32 [FINEST] [ForgeModLoader] Running coremod plugin FMLForgePlugin 2013-01-18 21:57:32 [FINEST] [ForgeModLoader] Coremod plugin FMLForgePlugin run successfully 2013-01-18 21:57:32 [FINEST] [ForgeModLoader] Running coremod plugin CodeChickenCorePlugin 2013-01-18 21:57:32 [iNFO] [sTDOUT] Adding Accesstransformer map: codechickencore_at.cfg 2013-01-18 21:57:39 [iNFO] [sTDERR] Exception in thread "main" java.lang.RuntimeException: java.lang.RuntimeException: java.lang.RuntimeException: java.lang.reflect.InvocationTargetException 2013-01-18 21:57:39 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.FMLRelauncher.setupHome(FMLRelauncher.java:175) 2013-01-18 21:57:39 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.FMLRelauncher.relaunchClient(FMLRelauncher.java:92) 2013-01-18 21:57:39 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.FMLRelauncher.handleClientRelaunch(FMLRelauncher.java:26) 2013-01-18 21:57:39 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.main(Minecraft.java:2235) 2013-01-18 21:57:39 [iNFO] [sTDERR] at Start.main(Start.java:29) 2013-01-18 21:57:39 [iNFO] [sTDERR] Caused by: java.lang.RuntimeException: java.lang.RuntimeException: java.lang.reflect.InvocationTargetException 2013-01-18 21:57:39 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchLibraryManager.handleLaunch(RelaunchLibraryManager.java:265) 2013-01-18 21:57:39 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.FMLRelauncher.setupHome(FMLRelauncher.java:155) 2013-01-18 21:57:39 [iNFO] [sTDERR] ... 4 more 2013-01-18 21:57:39 [iNFO] [sTDERR] Caused by: java.lang.RuntimeException: java.lang.reflect.InvocationTargetException 2013-01-18 21:57:39 [iNFO] [sTDERR] at codechicken.core.asm.CodeChickenAccessTransformer.readMapFile(CodeChickenAccessTransformer.java:44) 2013-01-18 21:57:39 [iNFO] [sTDERR] at codechicken.core.asm.CodeChickenAccessTransformer.addTransformerMap(CodeChickenAccessTransformer.java:30) 2013-01-18 21:57:39 [iNFO] [sTDERR] at codechicken.core.asm.CodeChickenCorePlugin.call(CodeChickenCorePlugin.java:64) 2013-01-18 21:57:39 [iNFO] [sTDERR] at codechicken.core.asm.CodeChickenCorePlugin.call(CodeChickenCorePlugin.java:1) 2013-01-18 21:57:39 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.RelaunchLibraryManager.handleLaunch(RelaunchLibraryManager.java:261) 2013-01-18 21:57:39 [iNFO] [sTDERR] ... 5 more 2013-01-18 21:57:39 [iNFO] [sTDERR] Caused by: java.lang.reflect.InvocationTargetException 2013-01-18 21:57:39 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-01-18 21:57:39 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2013-01-18 21:57:39 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2013-01-18 21:57:39 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source) 2013-01-18 21:57:39 [iNFO] [sTDERR] at codechicken.core.asm.CodeChickenAccessTransformer.readMapFile(CodeChickenAccessTransformer.java:40) 2013-01-18 21:57:39 [iNFO] [sTDERR] ... 9 more 2013-01-18 21:57:39 [iNFO] [sTDERR] Caused by: java.lang.IllegalArgumentException: resource codechickencore_at.cfg not found. 2013-01-18 21:57:39 [iNFO] [sTDERR] at com.google.common.base.Preconditions.checkArgument(Preconditions.java:119) 2013-01-18 21:57:39 [iNFO] [sTDERR] at com.google.common.io.Resources.getResource(Resources.java:157) 2013-01-18 21:57:39 [iNFO] [sTDERR] at cpw.mods.fml.common.asm.transformers.AccessTransformer.readMapFile(AccessTransformer.java:94) 2013-01-18 21:57:39 [iNFO] [sTDERR] ... 14 more It be awesome if someone could tell me and others who got such problem whats the solution for this, I am using forge.major.number=6 forge.minor.number=5 forge.revision.number=0 forge.build.number=471 aswell as MC 1.4.6 (Obviusly since there isnt 6.5.0.471 for 1.4.7 ) this was a completly clean kit, without any modification done, just to test nei functionality, followed the steps described on Code Chicken Mod's Thread on minecraftforums.
-
Hello Forgers, I am ZetaHunter and I recently started developing a mod, the idea is basic, its just different traps, whatI have made so far is basic triggering, Custom texture's, and other simple stuff, what I have been trouble with is making gui like furnace, cause I want to create a block comptaible with transport mechanics and when I click on block I want to have custom gui with such stuff as fwe inventory slots and buttons and etc. ( I will deal with that myself, just need basic sample of creating it ) next is CustomRendering, not related with this mod, but with another I was thinking of but I fail to understand how to create custom models for blocks, if any help is giving I would be very thankfull, and last but not least is I am wondering how to make it so I could have tile entity storing int Str and call it from the block, so for example touching a block with such tile entity would print to console the stored variable, but sadly last time I tried to print it, it droped null reference exception, but does work from inside tile entity class I have. Thanks to who ever replies and possibly helps me here Dont forget I am just a begginer in Java and FML, though I been coding in PHP and C# in past (like all time...)
-
I get an indefinite black screen after the mojang logo.
ZetaHunter replied to grey00's topic in General Discussion
I'd recomend placing NotEnougItems into coremods folder too... You know, since its a coremod too...