Package lineage2.gameserver.model.pledge

Examples of lineage2.gameserver.model.pledge.Clan.broadcastClanStatus()


        }
        int crestId = 0;
        crestId = CrestCache.getInstance().savePledgeCrestLarge(clan.getClanId(), CrestCache.getInstance().crestLargeTmp);
        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.setCrestLargeId(crestId);
        clan.broadcastClanStatus(false, true, false);
      }
    }
    else if (_request == 0 && _data == null)
    {
      Player activeChar = getClient().getActiveChar();
View Full Code Here


        {
          CrestCache.getInstance().removePledgeCrestLarge(clan.getClanId());
          activeChar.sendMessage("Large Crest Deleted.");
        }
        clan.setCrestLargeId(crestId);
        clan.broadcastClanStatus(false, true, false);
      }
    }
  }
}
View Full Code Here

      else if (clan.hasCrest())
      {
        CrestCache.getInstance().removePledgeCrest(clan.getClanId());
      }
      clan.setCrestId(crestId);
      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.