• Guest, HEROCRAFT PUBLIC RELEASE IS HAPPENING AN HOUR EARLIER! TONIGHT @ 7PM CST GET READY FOR IT! play.hc.to
    Read up on the guides and new systems! Here.
    View the LIVE Map here @ hc.to/map
    Stuck or have a problem? use "/pe create" to to open a ticket with staff (There are some known issues and other hotfixes we will be pushing asap)
  • Guest, Make sure to use our LAUNCHER! Read more here!

Resolved Stone and Wood tools can not be deconstructed

Status
Not open for further replies.

Glent

Glowing Redstone
Joined
Feb 15, 2012
Well, you may not know it - but deconstruct gets stronger as you level, @draconis99
This means at level 20 - you can only deconstruct stone/wood - stuff ... at level 55 you can deconstruct everything.
Deconstruct was always designed to target a workbench - through a config error it was usable without a workbench - this has never been the design of the skill to be used without a workbench.

A level 24 smith was unable to deconstruct any stone or wooden tools (as well as bows). It was missing from the config attached to Kainzo's quoted post, leading me to assume that this is the reason why they could not.
 

Kainzo

The Disposable Hero
Staff member
Founder
Adventure Team
Joined
Jan 7, 2011
Location
The 7th Circle of Heaven
A level 24 smith was unable to deconstruct any stone or wooden tools (as well as bows). It was missing from the config attached to Kainzo's quoted post, leading me to assume that this is the reason why they could not.
Wanna do some config work for me?
 

Glent

Glowing Redstone
Joined
Feb 15, 2012
Wanna do some config work for me?

I'm just saying, that it wasn't in the extract you posted, and you mentioned they'd be able to do it at level 20, which they are unable to.

Config for Deconstruct:
Code:
  IRON_AXE:
    level: 30
    exp: 0
    min-durability: 0.1
    IRON_INGOT: 1
    STICK: 1
  IRON_SWORD:
    IRON_INGOT: 1
    level: 30
    min-durability: 0.5
  IRON_HOE:
    IRON_INGOT: 1
    level: 30
    min-durability: 0.5
  IRON_SPADE:
    IRON_INGOT: 1
    level: 30
    min-durability: 0.5
  IRON_PICKAXE:
    IRON_INGOT: 2
    level: 30
    min-durability: 0.5
  IRON_HELMET:
    IRON_INGOT: 3
    level: 30
    min-durability: 0.5
  IRON_CHESTPLATE:
    IRON_INGOT: 4
    level: 30
    min-durability: 0.5
  IRON_LEGGINGS:
    IRON_INGOT: 3
    level: 30
    min-durability: 0.5
  IRON_BOOTS:
    IRON_INGOT: 2
    level: 30
    min-durability: 0.5
  DIAMOND_AXE:
    DIAMOND: 1
    level: 40
    min-durability: 0.5
  DIAMOND_SWORD:
    DIAMOND: 1
    level: 40
    min-durability: 0.5
  DIAMOND_HOE:
    DIAMOND: 1
    level: 40
    min-durability: 0.5
  DIAMOND_SPADE:
    DIAMOND: 1
    level: 40
    min-durability: 0.5
  DIAMOND_PICKAXE:
    DIAMOND: 2
    level: 40
    min-durability: 0.5
  DIAMOND_HELMET:
    DIAMOND: 2
    level: 40
    min-durability: 0.5
  DIAMOND_CHESTPLATE:
    DIAMOND: 3
    level: 40
    min-durability: 0.5
  DIAMOND_LEGGINGS:
    DIAMOND: 2
    level: 40
    min-durability: 0.5
  DIAMOND_BOOTS:
    DIAMOND: 1
    level: 40
    min-durability: 0.5
  GOLD_AXE:
    GOLD_INGOT: 1
    level: 50
    min-durability: 0.5
  GOLD_SWORD:
    GOLD_INGOT: 1
    level: 50
    min-durability: 0.5
  GOLD_HOE:
    GOLD_INGOT: 1
    level: 50
    min-durability: 0.5
  GOLD_SPADE:
    GOLD_INGOT: 1
    level: 50
    min-durability: 0.5
  GOLD_PICKAXE:
    GOLD_INGOT: 2
    level: 50
    min-durability: 0.5
  GOLD_HELMET:
    GOLD_INGOT: 2
    level: 50
    min-durability: 0.5
  GOLD_CHESTPLATE:
    GOLD_INGOT: 3
    level: 50
    min-durability: 0.5
  GOLD_LEGGINGS:
    GOLD_INGOT: 3
    level: 50
    min-durability: 0.5
  GOLD_BOOTS:
    GOLD_INGOT: 2
    level: 50
    min-durability: 0.5
  LEATHER_HELMET:
    LEATHER: 3
    level: 50
    min-durability: 0.5
  LEATHER_CHESTPLATE:
    LEATHER: 4
    level: 20
    min-durability: 0.5
  LEATHER_LEGGINGS:
    LEATHER: 3
    level: 20
    min-durability: 0.5
  LEATHER_BOOTS:
    LEATHER: 2
    level: 20
    min-durability: 0.5
  CHAINMAIL_HELMET:
    IRON_FENCE: 2
    level: 25
    min-durability: 0.5
  CHAINMAIL_CHESTPLATE:
    IRON_FENCE: 3
    level: 25
    min-durability: 0.5
  CHAINMAIL_LEGGINGS:
    IRON_FENCE: 2
    level: 25
    min-durability: 0.5
  CHAINMAIL_BOOTS:
    IRON_FENCE: 1
    level: 25
    min-durability: 0.5


I'm assuming something like this is missing:

Code:
  WOODEN_AXE:
    WOODEN_PLANKS: 1
    level: 20
    min-durability: 0.5
  WOODEN_SWORD:
    WOODEN_PLANKS: 1
    level: 20
    min-durability: 0.5
  WOODEN_HOE:
    WOODEN_PLANKS: 1
    level: 20
    min-durability: 0.5
  WOODEN_SPADE:
    WOODEN_PLANKS: 1
    level: 20
    min-durability: 0.5
  WOODEN_PICKAXE:
    WOODEN_PLANKS: 2
    level: 20
    min-durability: 0.5
  STONE_AXE:
    COBBLESTONE: 1
    level: 20
    min-durability: 0.5
  STONE_SWORD:
    COBBLESTONE: 1
    level: 20
    min-durability: 0.5
  STONE_HOE:
    COBBLESTONE: 1
    level: 20
    min-durability: 0.5
  STONE_SPADE:
    COBBLESTONE: 1
    level: 20
    min-durability: 0.5
  STONE_PICKAXE:
    COBBLESTONE: 2
    level: 20
    min-durability: 0.5

But I don't know if that's configured appropriately.
 

Kainzo

The Disposable Hero
Staff member
Founder
Adventure Team
Joined
Jan 7, 2011
Location
The 7th Circle of Heaven
I'm just saying, that it wasn't in the extract you posted, and you mentioned they'd be able to do it at level 20, which they are unable to.




I'm assuming something like this is missing:

Code:
  WOODEN_AXE:
    level: 20
    min-durability: 0.1
    WOODEN_PLANKS: 1
    STICK: 1
  WOODEN_SWORD:
    WOODEN_PLANKS: 1
    level: 20
    min-durability: 0.5
  WOODEN_HOE:
    WOODEN_PLANKS: 1
    level: 20
    min-durability: 0.5
  WOODEN_SPADE:
    WOODEN_PLANKS: 1
    level: 20
    min-durability: 0.5
  WOODEN_PICKAXE:
    WOODEN_PLANKS: 2
    level: 20
    min-durability: 0.5
  STONE_AXE:
    COBBLESTONE: 1
    level: 20
    min-durability: 0.5
  STONE_SWORD:
    COBBLESTONE: 1
    level: 20
    min-durability: 0.5
  STONE_HOE:
    COBBLESTONE: 1
    level: 20
    min-durability: 0.5
  STONE_SPADE:
    COBBLESTONE: 1
    level: 20
    min-durability: 0.5
  STONE_PICKAXE:
    COBBLESTONE: 2
    level: 20
    min-durability: 0.5

But I don't know if that's configured appropriately.

That'll work :) thanks
 
Status
Not open for further replies.
Top