I need a fast way to delete worn items. The was im doing it,
Code:
			try {
			
			c.remove(c.playerEquipment[c.playerWeapon], c.playerWeapon);
				} catch (java.lang.ArrayIndexOutOfBoundsException l) {
			}

			c.deleteItem(4039, 1, c.getItemSlot(4039));
and it puts it in the inventory, (really fast, to fast to click) but i want it to be perfect. any faster way to do this?? thankz.