Package l2p.gameserver.serverpackets

Examples of l2p.gameserver.serverpackets.JoinPledge


    }
    if(_response == 1)
    {
      if(activeChar.canJoinClan())
      {
        activeChar.sendPacket(new JoinPledge(requestor.getClanId()));
        L2Clan clan = requestor.getClan();
        clan.addClanMember(activeChar);
        activeChar.setClan(clan);
        clan.getClanMember(activeChar.getName()).setPlayerInstance(activeChar);
        if(clan.isAcademy(activeChar.getPledgeType()))
View Full Code Here

TOP

Related Classes of l2p.gameserver.serverpackets.JoinPledge

Copyright © 2018 www.massapicom. 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.