/*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If
* not, see <http://www.gnu.org/licenses/>.
*/
package silentium.gameserver.network.clientpackets;
import silentium.gameserver.model.L2World;
import silentium.gameserver.model.actor.instance.L2PcInstance;
import silentium.gameserver.network.SystemMessageId;
import silentium.gameserver.network.serverpackets.SystemMessage;
import silentium.gameserver.network.serverpackets.UserInfo;
public final class RequestEvaluate extends L2GameClientPacket
{
private int _targetId;
@Override
protected void readImpl()
{
_targetId = readD();
}
@Override
protected void runImpl()
{
final L2PcInstance activeChar = getClient().getActiveChar();
if (activeChar == null)
return;
final L2PcInstance target = L2World.getInstance().getPlayer(_targetId);
if (target == null)
{
activeChar.sendPacket(SystemMessageId.TARGET_IS_INCORRECT);
return;
}
// Exploit
if (activeChar.getTarget() != target)
return;
if (activeChar.getLevel() < 10)
{
activeChar.sendPacket(SystemMessageId.ONLY_LEVEL_SUP_10_CAN_RECOMMEND);
return;
}
if (activeChar.getRecomLeft() <= 0)
{
activeChar.sendPacket(SystemMessageId.NO_MORE_RECOMMENDATIONS_TO_HAVE);
return;
}
if (activeChar.equals(target))
{
activeChar.sendPacket(SystemMessageId.YOU_CANNOT_RECOMMEND_YOURSELF);
return;
}
if (target.getRecomHave() >= 255)
{
activeChar.sendPacket(SystemMessageId.YOUR_TARGET_NO_LONGER_RECEIVE_A_RECOMMENDATION);
return;
}
if (!activeChar.canRecom(target))
{
activeChar.sendPacket(SystemMessageId.THAT_CHARACTER_IS_RECOMMENDED);
return;
}
activeChar.giveRecom(target);
activeChar.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.YOU_HAVE_RECOMMENDED_S1_YOU_HAVE_S2_RECOMMENDATIONS_LEFT).addPcName(target).addNumber(activeChar.getRecomLeft()));
target.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.YOU_HAVE_BEEN_RECOMMENDED_BY_S1).addPcName(activeChar));
activeChar.sendPacket(new UserInfo(activeChar));
target.broadcastUserInfo();
}
}