Cant mine any ore with my pickaxe

Issue #36 resolved
protonius created an issue

toolClass = "pickaxe"; harvestLevel = 3; efficiency[0] = 12.0; but coal ore dont mine. why?

Comments (6)

  1. cubex2 repo owner

    It does work for me, so something else might be the problem. Could you provide the full item file?

  2. protonius reporter

    id = config.getItemId("SuperPicaxeId"); name = "SuperPicaxe"; harvestLevel = 3; creativeTab = "tools"; toolClass = "pickaxe"; full3d = true; hasEffect[0] = true;

    maxStack = 1;

    displayName[0] = "Long pickaxe"; addToCreative[0] = true; damage[0] = 4; efficiency[0] = 16.0; maxDamage = 5000;

    onHitEntity[0] = "itemstack.damageItem(1);"; onBlockDestroyed[0] = "itemstack.damageItem(1);";

    textureFile[0] = "superpicaxe.png";

  3. protonius reporter

    I am found error - mod "orechange". But I cant harvest blocks with gui interface. For example - furnace.

  4. cubex2 repo owner

    toolClass and harvestLevel have to have the [0], too. Adding that should fix your problem.

    Edit: This isn't correct. They don't have a [0].

  5. Log in to comment