Package l2p.gameserver.clientpackets

Source Code of l2p.gameserver.clientpackets.RequestSocialAction

package l2p.gameserver.clientpackets;

import l2p.Config;
import l2p.gameserver.cache.Msg;
import l2p.gameserver.model.L2Player;
import l2p.gameserver.modules.FloodProtector;
import l2p.gameserver.serverpackets.SocialAction;
import l2p.util.Util;

public class RequestSocialAction extends L2GameClientPacket
{
  private int _actionId;

  /**
   * packet type id 0x34
   * format:    cd
   */
  @Override
  public void readImpl()
  {
    _actionId = readD();
  }

  @Override
  public void runImpl()
  {
    L2Player activeChar = getClient().getActiveChar();
    if(activeChar == null)
    {
      return;
    }
    if(activeChar.isOutOfControl() || activeChar.getTransformation() != 0)
    {
      activeChar.sendActionFailed();
      return;
    }
    // You cannot do anything else while fishing
    if(activeChar.isFishing())
    {
      activeChar.sendPacket(Msg.YOU_CANNOT_DO_ANYTHING_ELSE_WHILE_FISHING);
      return;
    }
    // internal Social Action check
    if(_actionId < 2 || _actionId > 14)
    {
      Util.handleIllegalPlayerAction(activeChar, "RequestSocialAction[43]", "Character " + activeChar.getName() + " at account " + activeChar.getAccountName() + "requested an internal Social Action " + _actionId, 1);
      return;
    }
    if(activeChar.getPrivateStoreType() == L2Player.STORE_PRIVATE_NONE && !activeChar.isInTransaction() && !activeChar.isActionsDisabled() && !activeChar.isSitting())
    {
      if(Config.ALT_SOCIAL_ACTION_REUSE && FloodProtector.tryPerformAction(activeChar, FloodProtector.Action.DO_SOCIAL))
        activeChar.broadcastPacket(new SocialAction(activeChar.getObjectId(), _actionId));
      else if (!Config.ALT_SOCIAL_ACTION_REUSE)
        activeChar.broadcastPacket(new SocialAction(activeChar.getObjectId(), _actionId));
    }
  }
}
TOP

Related Classes of l2p.gameserver.clientpackets.RequestSocialAction

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.