Package l2p.gameserver.model

Examples of l2p.gameserver.model.L2Clan.broadcastClanStatus()


    if(mOption.price(player, Config.ClanChangeNameId, Config.ClanChangeNameCount))
    {
      L2Clan clan = player.getClan();
      clan.setName(args[0]);
      clan.updateClanInDB();
      clan.broadcastClanStatus(true, true, true);
      clan.broadcastToOnlineMembers(new PledgeInfo(clan));
      for(L2Player ch : L2World.getAroundPlayers(player))
      {
        if(ch != null && ch.getClan() != clan)
        {
View Full Code Here


      if(_data != null && _data.length <= 2176)
      {
        CrestCache.savePledgeCrestLarge(clan, _data);
        activeChar.sendPacket(Msg.THE_CLANS_EMBLEM_WAS_SUCCESSFULLY_REGISTERED__ONLY_A_CLAN_THAT_OWNS_A_CLAN_HALL_OR_A_CASTLE_CAN_GET_THEIR_EMBLEM_DISPLAYED_ON_CLAN_RELATED_ITEMS);
      }
      clan.broadcastClanStatus(false, true, false);
    }
  }
}
View Full Code Here

      }
      if(_data != null && _length != 0)
      {
        CrestCache.savePledgeCrest(clan, _data);
      }
      clan.broadcastClanStatus(false, true, false);
    }
  }
}
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.