final int y = location.getY() - methods.game.getBaseY();
final int plane = methods.client.getPlane();
final org.rsbot.client.RSGround rsGround = methods.client.getRSGroundArray()[plane][x][y];
if (rsGround != null) {
final RSGroundEntity obj = rsGround.getGroundObject();
if (obj != null) {
final org.rsbot.client.Model model = ((RSGroundObject) obj).getModel();
if (model != null) {
return new RSGroundItemModel(methods, model, obj, this);
}