Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

ClarmonkGaming

Members
  • Joined

  • Last visited

  1. Recommended or latest MC forge for developing? which one should I choose? i have used API's before and i have java experience.
  2. That was the problem thank you :);):);):);):);):);):);):);):);):);):);):);):);):);):);):);):);):);):);):);):);):);):);):);):);):);):);):);):);):);):);):);):);):);):);):);):);):);):);):);):);):);):);):) thanks for helping me how do I change the title of this thread to solved
  3. so i changed teh modidd to somecraft and teh folder structure thing to somecraft and it is still not working
  4. i tried changing someCraft to somecraft and it still does not work
  5. I cannot get textures to work. file structure C:\Developing\Freetime\MC\1.7.2\someCraft\src\main\resources\assets\someCraft\textures\items my modid is someCraft here is my code main class package clarmonk.mc.somecraft; import clarmonk.mc.somecraft.item.somoniomItem; import clarmonk.mc.somecraft.proxy.commonProxy; import cpw.mods.fml.common.Mod; import cpw.mods.fml.common.Mod.Instance; import cpw.mods.fml.common.SidedProxy; import cpw.mods.fml.common.event.FMLInitializationEvent; import cpw.mods.fml.common.event.FMLPostInitializationEvent; import cpw.mods.fml.common.event.FMLPreInitializationEvent; import cpw.mods.fml.common.registry.GameRegistry; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.item.Item; @Mod(modid = info.MOD_ID, name = info.MOD_NAME, version = info.MOD_VERSION) public class someCraft { public static Item reflectorItem; public static Item somoniomIngot; @Instance(value = info.MOD_ID) public static someCraft Instance; @SidedProxy(clientSide = "clarmonk.mc.somecraft.proxy.clientProxy", serverSide = "clarmonk.mc.somecraft.proxy.commonProxy") public static commonProxy proxy; @Mod.EventHandler public void preInit(FMLPreInitializationEvent event) { somoniomIngot = new somoniomItem().setMaxStackSize(64).setCreativeTab(CreativeTabs.tabMaterials).setUnlocalizedName("somoniom_Ingot").setTextureName("someCraft:somoniom_Ingot"); reflectorItem = new somoniomItem().setMaxStackSize(16).setCreativeTab(CreativeTabs.tabMisc).setUnlocalizedName("reflector_Item").setTextureName("someCraft:reflector"); GameRegistry.registerItem(reflectorItem, reflectorItem.getUnlocalizedName()); GameRegistry.registerItem(somoniomIngot, somoniomIngot.getUnlocalizedName()); } @Mod.EventHandler public void Init(FMLInitializationEvent event) { } @Mod.EventHandler public void postInit(FMLPostInitializationEvent event) { } } info class package clarmonk.mc.somecraft; public class info { public static final String MOD_ID = "someCraft"; public static final String MOD_NAME = "SomeCraft"; public static final String MOD_VERSION = "1.0.A"; } item class package clarmonk.mc.somecraft.item; import net.minecraft.item.Item; public class somoniomIngot extends Item { } and my main item class package clarmonk.mc.somecraft.item; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.item.Item; public class somoniomItem extends Item { public somoniomItem() { setMaxStackSize(64); setCreativeTab(CreativeTabs.tabMisc); } } I am using method chaining to declare stack size and texture name and such thank you for helping me --ClarmonkGaming
  6. Okay gr8 advice Thank you for helping me -ClarmonkGaming
  7. so should i learn basic advanced or expert java knowledge
  8. I was wondering How much java should I know before starting serious modding. by serious modding i mean not just items and blocks. I want to do custom rendered blocks and power systems and multi blocks and stuff like that. anyways thanks everyone for helping me like always Sincerely, ClarmonkGaming
  9. okay i think it is good now thx everyone
  10. okay i still have nothing in the jars folder
  11. okay new error i ran gradlew eclipse again to make sure and in my workspace i got this "The method func_149739_a() is undefined for the type Block" in the example Mod class file link to pic http://i.imgur.com/3ZN3mGK.png Thank You Sincerely, ClarmonkGaming
  12. to be clear this is they exact command i ran "gradlew setupDecompWorkspace eclipse"
  13. This is something that has been to me a lot I have re ran ("gradlew setupDecompWorkspace") eclipse about 5 times now.P.S i ran it in a folder that had all the files from the forge zip in it the folder was named Forge please help =============================================================================== link to picture =============================================================================== Thank You Sincerely, ClarmonkGaming
  14. Thank you sir rookie mistake

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.