Can somebody please use this code and make me a destroyGroundItem method? I've tried many times, and I can't seem to get it. Here is the sendGroundItem, please make this into a destroyGroundItem 
Code:
public void sendGroundItem(RSTile tile, Item item, boolean uniqueDrop) {
OutStream out = new OutStream();
out.writePacket(60);
int localX = tile.getX()
- (player.getMask().getRegion().getLastMapRegion().getRegionX() - 6)
* 8;
int localY = tile.getY()
- (player.getMask().getRegion().getLastMapRegion().getRegionY() - 6)
* 8;
if (uniqueDrop)
sendCoordsForUniqueValue(localX, localY, tile.getZ());
else
sendCoords(localX, localY, tile.getZ());
int deltaX = localX - ((localX >> 3) << 3);
int deltaY = localY - ((localY >> 3) << 3);
out.writeByte((0x7 & deltaY) | ((deltaX << 4) & 0x70));
out.writeShortLE128(item.getAmount());
out.writeShort(item.getId());
player.getConnection().write(out);
}