Jump to content

ClarmonkGaming

Members
  • Posts

    44
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am learning.

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

ClarmonkGaming's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  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. 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
  7. 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
  8. to be clear this is they exact command i ran "gradlew setupDecompWorkspace eclipse"
  9. 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
×
×
  • Create New...

Important Information

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