Package l2p.gameserver.model

Examples of l2p.gameserver.model.L2Alliance


      {
        return;
      }
      if(_response == 1)
      {
        L2Alliance ally = requestor.getAlliance();
        activeChar.sendPacket(Msg.YOU_HAVE_ACCEPTED_THE_ALLIANCE);
        activeChar.getClan().setAllyId(requestor.getAllyId());
        activeChar.getClan().updateClanInDB();
        ally.addAllyMember(activeChar.getClan(), true);
        ally.broadcastAllyStatus(true);
      }
      else
      {
        requestor.sendPacket(Msg.YOU_HAVE_FAILED_TO_INVITE_A_CLAN_INTO_THE_ALLIANCE);
      }
View Full Code Here


    HasFortress = clan.getHasFortress();
    clan_rank = clan.getRank();
    clan_rep = clan.getReputationScore();
    crest_id = clan.getCrestId();
    ally_id = clan.getAllyId();
    L2Alliance ally = clan.getAlliance();
    if(ally != null)
    {
      ally_name = ally.getAllyName();
      ally_crest = ally.getAllyCrestId();
      atwar = clan.isAtWar();
    }
  }
View Full Code Here

TOP

Related Classes of l2p.gameserver.model.L2Alliance

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.