* @param itemID The ID of items to destroy.
* @return <tt>true</tt> if the items were destroyed; otherwise
* <tt>false</tt>.
*/
public boolean destroyItem(final int itemID) {
RSItem item = getItem(itemID);
if (item == null || !item.hasAction("Destroy")) {
return false;
}
while ((item = getItem(itemID)) != null) {
if (methods.interfaces.get(94).isValid()) {
methods.interfaces.getComponent(94, 3).doClick();
} else {
item.interact("Destroy");
}
sleep(random(700, 1100));
}
return true;
}