Examples of ExBasicActionList


Examples of l2p.gameserver.serverpackets.ExBasicActionList

    {
      packets.add(new L2FriendList(activeChar, false));
    }
    packets.add(new ExStorageMaxCount(activeChar));
    packets.add(new QuestList(activeChar));
    packets.add(new ExBasicActionList());
    // refresh player info
    packets.add(new EtcStatusUpdate(activeChar));
    packets.add(new ExPCCafePointInfo(activeChar));
    sendPackets(packets);
    packets.clear();
View Full Code Here

Examples of lineage2.gameserver.network.serverpackets.ExBasicActionList

      activeChar.getFriendList().notifyFriends(true);
      loadTutorial(activeChar);
      activeChar.restoreDisableSkills();
      activeChar.mentoringLoginConditions();
    }
    sendPacket(new L2FriendList(activeChar), new ExStorageMaxCount(activeChar), new QuestList(activeChar), new ExBasicActionList(activeChar), new EtcStatusUpdate(activeChar));
    activeChar.checkHpMessages(activeChar.getMaxHp(), activeChar.getCurrentHp());
    activeChar.checkDayNightMessages();
    if (Config.PETITIONING_ALLOWED)
    {
      PetitionManager.getInstance().checkPetitionMessages(activeChar);
View Full Code Here

Examples of lineage2.gameserver.network.serverpackets.ExBasicActionList

          _transformationBlue.getEffects(player, player, false, false);
        }
        player.setBlockCheckerArena((byte) _arena);
        player.sendPacket(initialPoints);
        player.sendPacket(_closeUserInterface);
        player.sendPacket(new ExBasicActionList(player));
        broadcastRelationChanged(player);
        player.broadcastCharInfo();
      }
    }
View Full Code Here

Examples of lineage2.gameserver.network.serverpackets.ExBasicActionList

      {
        addSkill(s, false);
      }
    }
    super.setTransformation(transformationId);
    sendPacket(new ExBasicActionList(this));
    sendSkillList();
    sendPacket(new ShortCutInit(this));
    for (int shotId : getAutoSoulShot())
    {
      sendPacket(new ExAutoSoulShot(shotId, true));
View Full Code Here
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.