Jump to content

tuskiomi

Forge Modder
  • Posts

    153
  • Joined

  • Last visited

Everything posted by tuskiomi

  1. This would go into modder support, bud because forge CAN do that. to do this, you would make a fluid block class, and have all the properties set through the constructor. I would reccomend looking at the qcraft source code, that would prolly be a great asset to you. Edit qcraft source: google code
  2. Hello, all. I'm guaging interest on a project. simply all it does is umbrella all mods and make certain features (chunk gen, block mechanics) asyncronus. this would mean that every mod gets its own thread to run on, and process items. frankly, i'm tired of minecraft only using 13.5% of my CPU, and would like to let it use it's full potential on all 8 cores. thoughts?
  3. update: fixed the problem. i did this by instead making sure my mod is required after the child mods, instead of the main mod
  4. UPDATE: I changed the code to find things that are in vanilla minecraft. the code found them. this may be a problem with forge? no. buildcraft is using different methods. I'm going to add code to remove the recipe on the splash screen.
  5. so you want to make a minecraft bot?
  6. excuse me, but why not make your code like so; Calendar c = Calendar.getInstance(); if(c.get(c.MONTH) == 12 && c.get(c.DAY_OF_MONTH) == 25){ //register recipe here }
  7. anyone else want to take a whack at my predicament?
  8. thanks, ben. anyway, I updated the code, the IF statement now is directly comparing the block from item and the quarry block. if I did getIconName(), forge would delete all the recipes. The code will now not find the quarry, but i'll keep you guys updated in the tag code: List<IRecipe> recipes = CraftingManager.getInstance().getRecipeList(); Iterator<IRecipe> recipesIt = recipes.iterator(); int i = -1; System.out.println("finding quarry"); while(recipesIt.hasNext()){ i++; IRecipe rec = recipesIt.next(); ItemStack result = rec.getRecipeOutput(); if(result != null && Block.getBlockFromItem(result.getItem()) ==BuildCraftFactory.quarryBlock){ System.out.println("found quarry"); recipesIt.remove(); } } edit 1: code changed. it behaves the same way. I beleive this to mean that I am comtaring the wrong thing, or the quarry is not being initialised. I think this is because buildcraft throws an error AFTER it tries to look for the quarry, signifying that my dependency parameter is not working as intended. new code: List<IRecipe> recipes = CraftingManager.getInstance().getRecipeList(); Iterator<IRecipe> recipesIt = recipes.iterator(); int i = -1; System.out.println("finding quarry"); while(recipesIt.hasNext()){ i++; IRecipe rec = recipesIt.next(); ItemStack result = rec.getRecipeOutput(); if(result != null && Block.getBlockFromItem(result.getItem()).getLocalizedName() ==BuildCraftFactory.quarryBlock.getLocalizedName()){ System.out.println("found quarry"); recipesIt.remove(); } } Stacktrace: [18:16:56] [Client thread/INFO] [sTDOUT]: [com.tuskiomi.styx.StyxMain:postInit:30]: finding quarry [18:16:57] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 11 mods [18:16:57] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Example Mod, FMLFileResourcePack:Styx, FMLFileResourcePack:BC Silicon, FMLFileResourcePack:BuildCraft, FMLFileResourcePack:BC Transport, FMLFileResourcePack:BC Builders, FMLFileResourcePack:BC Energy, FMLFileResourcePack:BC Factory [18:16:58] [Client thread/INFO]: Created: 512x512 textures/blocks-atlas [18:16:58] [Client thread/ERROR]: Using missing texture, unable to load buildcraft:textures/items/triggers/action_machinecontrol_mode.png java.io.FileNotFoundException: buildcraft:textures/items/triggers/action_machinecontrol_mode.png at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_31] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_31] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_31] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_31] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:85) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?]
  9. won't that remove it from the iterator object, and not forge? edit: just read up on it. Apparently all almost objects in java are pointers to the original object created with the 'new' keyword.
  10. log: changed code to following. forge finds the quarry, and throws a stacktrace as follows: CODE: List<IRecipe> recipes = CraftingManager.getInstance().getRecipeList(); Iterator<IRecipe> recipesIt = recipes.iterator(); int i = -1; System.out.println("finding quarry"); while(recipesIt.hasNext()){ i++; IRecipe rec = recipesIt.next(); ItemStack result = rec.getRecipeOutput(); if(result != null && Block.getBlockFromItem(result.getItem()).getItemIconName() ==BuildCraftFactory.quarryBlock.getItemIconName()){ System.out.println("found quarry"); CraftingManager.getInstance().getRecipeList().remove(i); } } StackTrace: [20:10:22] [Client thread/INFO] [sTDOUT]: [com.tuskiomi.styx.StyxMain:postInit:30]: finding quarry [20:10:22] [Client thread/INFO] [sTDOUT]: [com.tuskiomi.styx.StyxMain:postInit:36]: found quarry [20:10:22] [Client thread/ERROR] [FML]: Fatal errors were detected during the transition from INITIALIZATION to POSTINITIALIZATION. Loading cannot continue [20:10:22] [Client thread/ERROR] [FML]: mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized FML{7.10.85.1291} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.2.1291.jar) Unloaded->Constructed->Pre-initialized->Initialized Forge{10.13.2.1291} [Minecraft Forge] (forgeSrc-1.7.10-10.13.2.1291.jar) Unloaded->Constructed->Pre-initialized->Initialized examplemod{1.0} [Example Mod] (bin) Unloaded->Constructed->Pre-initialized->Initialized Styx{0.0} [styx] (bin) Unloaded->Constructed->Pre-initialized->Errored BuildCraft|Core{6.3.6} [buildCraft] (buildcraft-6.3.6-dev.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Transport{6.3.6} [bC Transport] (buildcraft-6.3.6-dev.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Silicon{6.3.6} [bC Silicon] (buildcraft-6.3.6-dev.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Builders{6.3.6} [bC Builders] (buildcraft-6.3.6-dev.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Energy{6.3.6} [bC Energy] (buildcraft-6.3.6-dev.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Factory{6.3.6} [bC Factory] (buildcraft-6.3.6-dev.jar) Unloaded->Constructed->Pre-initialized->Initialized [20:10:22] [Client thread/ERROR] [FML]: The following problems were captured during this phase [20:10:22] [Client thread/ERROR] [FML]: Caught exception from Styx java.util.ConcurrentModificationException at java.util.ArrayList$Itr.checkForComodification(Unknown Source) ~[?:1.8.0_31] at java.util.ArrayList$Itr.next(Unknown Source) ~[?:1.8.0_31] at com.tuskiomi.styx.StyxMain.postInit(StyxMain.java:33) ~[bin/:?] [b] Line 33: "IRecipe rec = recipesIt.next();"[/b] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_31] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_31] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_31] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_31] at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:513) ~[forgeSrc-1.7.10-10.13.2.1291.jar:?] at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source) ~[?:?] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_31] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_31] at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) ~[guava-17.0.jar:?] at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.post(EventBus.java:275) ~[guava-17.0.jar:?] at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:208) ~[forgeSrc-1.7.10-10.13.2.1291.jar:?] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:187) ~[forgeSrc-1.7.10-10.13.2.1291.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_31] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_31] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_31] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_31] at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) ~[guava-17.0.jar:?] at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) ~[guava-17.0.jar:?] at com.google.common.eventbus.EventBus.post(EventBus.java:275) ~[guava-17.0.jar:?] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:118) [LoadController.class:?] at cpw.mods.fml.common.Loader.initializeMods(Loader.java:691) [Loader.class:?] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:288) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_31] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_31] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_31] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_31] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:85) [start/:?] at GradleStart.main(GradleStart.java:45) [start/:?] [20:10:22] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:388]: ---- Minecraft Crash Report ---- // I just don't know what went wrong Time: 2/19/15 8:10 PM Description: Initializing game java.util.ConcurrentModificationException at java.util.ArrayList$Itr.checkForComodification(Unknown Source) at java.util.ArrayList$Itr.next(Unknown Source) at com.tuskiomi.styx.StyxMain.postInit(StyxMain.java:33) [b]line 33: "IRecipe rec = recipesIt.next();" [/b] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:513) at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:208) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:187) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:118) at cpw.mods.fml.common.Loader.initializeMods(Loader.java:691) at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:288) at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) at net.minecraft.client.Minecraft.run(Minecraft.java:931) at net.minecraft.client.main.Main.main(Main.java:164) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:85) at GradleStart.main(GradleStart.java:45) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Stacktrace: at java.util.ArrayList$Itr.checkForComodification(Unknown Source) at java.util.ArrayList$Itr.next(Unknown Source) at com.tuskiomi.styx.StyxMain.postInit(StyxMain.java:33) [b]line 33: "IRecipe rec = recipesIt.next();" [/b] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:513) at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:208) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:187) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:118) at cpw.mods.fml.common.Loader.initializeMods(Loader.java:691) at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:288) at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) -- Initialization -- Details: Stacktrace: at net.minecraft.client.Minecraft.run(Minecraft.java:931) at net.minecraft.client.main.Main.main(Main.java:164) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:85) at GradleStart.main(GradleStart.java:45) -- System Details -- Details: Minecraft Version: 1.7.10 Operating System: Windows 7 (x86) version 6.1 Java Version: 1.8.0_31, Oracle Corporation Java VM Version: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation Memory: 728875768 bytes (695 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP v9.05 FML v7.10.85.1291 Minecraft Forge 10.13.2.1291 11 mods loaded, 11 mods active mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized FML{7.10.85.1291} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.2.1291.jar) Unloaded->Constructed->Pre-initialized->Initialized Forge{10.13.2.1291} [Minecraft Forge] (forgeSrc-1.7.10-10.13.2.1291.jar) Unloaded->Constructed->Pre-initialized->Initialized examplemod{1.0} [Example Mod] (bin) Unloaded->Constructed->Pre-initialized->Initialized Styx{0.0} [styx] (bin) Unloaded->Constructed->Pre-initialized->Errored BuildCraft|Core{6.3.6} [buildCraft] (buildcraft-6.3.6-dev.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Transport{6.3.6} [bC Transport] (buildcraft-6.3.6-dev.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Silicon{6.3.6} [bC Silicon] (buildcraft-6.3.6-dev.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Builders{6.3.6} [bC Builders] (buildcraft-6.3.6-dev.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Energy{6.3.6} [bC Energy] (buildcraft-6.3.6-dev.jar) Unloaded->Constructed->Pre-initialized->Initialized BuildCraft|Factory{6.3.6} [bC Factory] (buildcraft-6.3.6-dev.jar) Unloaded->Constructed->Pre-initialized->Initialized Launched Version: 1.7.10 LWJGL: 2.9.1 OpenGL: AMD Radeon R9 200 Series GL version 4.4.13283 Compatibility Profile Context 14.501.1003.0, ATI Technologies Inc. GL Caps: Using GL 1.3 multitexturing. Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported. Anisotropic filtering is supported and maximum anisotropy is 16. Shaders are available because OpenGL 2.1 is supported. 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) Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used Anisotropic Filtering: Off (1) [20:10:22] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:398]: #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Brice\workspace\.\crash-reports\crash-2015-02-19_20.10.22-client.txt AL lib: (EE) alc_cleanup: 1 device not closed Java HotSpot(TM) Client VM warning: Using incremental CMS is deprecated and will likely be removed in a future release you'll notice line 33 of my mod is of special notice in this trace here is line 33: line 33: "IRecipe rec = recipesIt.next();"
  11. forge refuses to load my mod when fill that in. edit: fiddled with it it now loads, looks for quarry, and doesn't find it.
  12. press F3 and B at the same time in game. make sure the projectile's hitbox touches said entities hitbox.
  13. because it's not my mod. i'm trying to remove recipes from other mods.
  14. my print statement does not print, no matter which Init I put it into.
  15. my new code: CraftingManager craftMgr = CraftingManager.getInstance(); List<IRecipe> recipes = CraftingManager.getInstance().getRecipeList(); Iterator<IRecipe> recipesIt = recipes.iterator(); int i = -1;//new while(recipesIt.hasNext()){ i++;//new IRecipe rec = recipesIt.next(); ItemStack result = rec.getRecipeOutput(); if(result != null && Block.getBlockFromItem(result.getItem()) ==BuildCraftFactory.quarryBlock){ System.out.println("found quarry"); CraftingManager.getInstance().getRecipeList().remove(i);//new } } still doesn't remove the quarry.
  16. is there any reason that the quarry recipie isn;t getting removed? should I do that in the pre-Init?
  17. I'm having a bit of touble. I want to draw out the type Block from class Itemstack, but the only method that Itemstack Provides is getItem. Here is my code. The error I'm trying to resolve is on the If Statement: CraftingManager craftMgr = CraftingManager.getInstance(); List<IRecipe> recipes = CraftingManager.getInstance().getRecipeList(); Iterator<IRecipe> recipesIt = recipes.iterator(); while(recipesIt.hasNext()){ IRecipe rec = recipesIt.next(); ItemStack result = rec.getRecipeOutput(); if(result != null && result.getItem() ==BuildCraftFactory.quarryBlock){ recipesIt.remove(); } }
  18. so the only thing that's changing is the fact that curse is supporitng forge/ftb in a client.... there is a big gaping hole I see here. how will users install mods? obviously curse will make it easier but This makes it a walled garden. eg: curse can now drop support for any mod it doesn't like for whatever reason.
  19. WHOAH WHOAH WHOAH!!!! you mean to say that the ID system will be obsolete and minecraft can now have over 2 billion blocks & ITEMS? eg you'd register minecraftmod:Modded_block ?
  20. Oh do i see what i think? so if i am correct; i pick a hex color code and translate it to B10. the par1, par2 and, par3 are coords. can i apply this to ANY block?
  21. okay, cna you point me to where i can learn to color blocks properly?
  22. hello forge modders! I have dug all around in the forge leaf class to find how to color block sprites like minecraft does to leaves. in the leaves class i have dug up this: public Icon getBlockTextureFromSideAndMetadata(int par1, int par2) { return (par2 & 3) == 1 ? this.iconArray[this.field_94394_cP][1] : ((par2 & 3) == 3 ? this.iconArray[this.field_94394_cP][3] : this.iconArray[this.field_94394_cP][0]); } I honestly have no clue what ANY of this does (I mean what the heck is field_94394_cP?). could someone please assist me and tell me what this means? edit: iconarray and field_94394_cP are formatted like so: private int field_94394_cP; private Icon[][] iconArray = new Icon[2][];
×
×
  • Create New...

Important Information

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