Jump to content

Drew

Members
  • Posts

    8
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!

Drew's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. Thanks that worked, but I cannot use the new Cleaver which has durability damage to be used in the same recipe again.
  2. I am new to modding and the Java programing language. I have come from scripting with Javascript and PHP. I have my Item package com.nawm.butchery.items; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import com.nawm.butchery.Butchery; public class ItemCleaver extends Item { public ItemCleaver() { super(); setUnlocalizedName("Cleaver"); setTextureName(Butchery.MODID + ":" + getUnlocalizedName().substring(5)); setCreativeTab(CreativeTabs.tabTools); setNoRepair(); setMaxStackSize(1); setMaxDamage(200); } } and my Recipe it is used in GameRegistry.addRecipe(new ItemStack(ModItems.RawBacon, 4), new Object[]{ "XY", 'X', Items.porkchop, 'Y', new ItemStack(ModItems.Cleaver, 1, -1) }); I want my Cleaver Item to return to player with durability damage. Like the SAW from microblocks.
  3. I am running on Linux using Netbeans. It seems no matter what I do I still seem to be missing files. I have tried a couple different versions. including 1060, 1070, and 1074. I ran all these without a fire wall on either my PC or my router. I ran twice one with cleanCache and once without. sudo ./gradlew setupDecompWorkspace --refresh-dependencies sudo ./gradlew cleanCache sudo ./gradlew eclipse I cannot find out why it wont get files.
  4. Refresh and Debugs did not help
  5. 1060 same way, did 1070, and 1074 as well
  6. does not matter if I use Dev or Decomp I still get this error, without cleanCache I get 34 missing dependencies.
  7. Running Linux 64bit. I ran: sudo ./gradlew setupDevWorkspace setupDecompWorkspace sudo ./gradlew cleanCache sudo ./gradlew eclipse Ive tried many methods Ive seen on the forums and none have fixed this issue. I get no errors in terminal when running Java build path problem : Project 'Minecraft' is missing required library: '/home/drew/Forge/unresolved dependency - forgeBin 1.7.2-10.12.1.1074'
  8. I am getting Java Build Path Problems (34) for items in /root/.gradle/ this folder has a file gradle.log and asubfolder 1.11/taskArtifacts/ with cache.properties chache.proterties.lock fileHashes.bin fileSnapshots.bin outputFileStates.bin taskArtifacts.bin I am running KUbuntu 14.04 64bit. I tried : sudo ./gradle cleanCache sudo ./gradle setupDecompWorkspace with and without -refresh-dependencies sudo ./gradle setupDevWorkspace with and without -refresh-dependencies sudo ./gradle eclipse
×
×
  • Create New...

Important Information

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