Examples of restoreDisableSkills()


Examples of l2p.gameserver.model.L2Player.restoreDisableSkills()

                        p.setOnlineStatus(false);
                        p.setOfflineMode(true);
                        p.setConnected(false);
                        p.setNameColor(Config.SERVICES_OFFLINE_TRADE_NAME_COLOR);
                        p.restoreEffects();
                        p.restoreDisableSkills();
                        p.broadcastUserInfo(true);
                        if (p.getClan() != null && p.getClan().getClanMember(p.getObjectId()) != null) {
                            p.getClan().getClanMember(p.getObjectId()).setPlayerInstance(p);
                        }
                        if (Config.SERVICES_OFFLINE_TRADE_SECONDS_TO_KICK > 0) {
View Full Code Here

Examples of l2p.gameserver.model.L2Player.restoreDisableSkills()

    Log.LogChar(activeChar, Log.EnterWorld, "");
    if(first)
    {
      notifyFriends(activeChar, true);
      loadTutorial(activeChar);
      activeChar.restoreDisableSkills();
    }
    else
    {
      packets.add(new L2FriendList(activeChar, false));
    }
View Full Code Here

Examples of lineage2.gameserver.model.Player.restoreDisableSkills()

    }
    if (first)
    {
      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();
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.