if ((targetObj != null) && targetObj instanceof L2PcInstance)
{
final L2PcInstance target = targetObj.getActingPlayer();
if (!target.getDietMode() && (target.getMaxLoad() > 0))
{
int weightproc = (int) (((target.getCurrentLoad() - target.calcStat(Stats.WEIGHT_PENALTY, 1, target, null)) * 100) / target.getMaxLoad());
return (weightproc < _weight);
}
}
return false;
}