Перейти к содержанию
Авторизация  
1st©

Echo Crystals

Рекомендуемые сообщения

можно ещё if-else заменить на switch()

будет код по меньше

Кому как)

Я делал как знал

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

Ещё надо было добавть пару проверок на наличие итемов)

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты
Ещё надо было добавть пару проверок на наличие итемов)

Я показал как) А дальше сами))

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

Посмотри правельно я вставил еще пару песен?

 

Скрытый текст
/* This program is free software; you can redistribute it and/or modify

* it under the terms of the GNU General Public License as published by

* the Free Software Foundation; either version 2, or (at your option)

* any later version.

*

* This program is distributed in the hope that it will be useful,

* but WITHOUT ANY WARRANTY; without even the implied warranty of

* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the

* GNU General Public License for more details.

*

* You should have received a copy of the GNU General Public License

* along with this program; if not, write to the Free Software

* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA

* 02111-1307, USA.

*

* http://www.gnu.org/copyleft/gpl.html

*/

package com.l2jfrozen.gameserver.handler.itemhandlers;

 

import com.l2jfrozen.gameserver.handler.IItemHandler;

import com.l2jfrozen.gameserver.model.actor.instance.L2ItemInstance;

import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance;

import com.l2jfrozen.gameserver.model.actor.instance.L2PlayableInstance;

import com.l2jfrozen.gameserver.network.serverpackets.ActionFailed;

import com.l2jfrozen.gameserver.network.serverpackets.PlaySound;

import com.l2jfrozen.gameserver.network.serverpackets.MagicSkillUser;

 

/**

* @author devScarlet & mrTJO

*/

public class MusicItem implements IItemHandler

{

private static int[] _itemIds =

{

50000,50001,50002

};

 

@Override

public void useItem(L2PlayableInstance playable, L2ItemInstance item)

{

if(!(playable instanceof L2PcInstance))

return;

 

L2PcInstance activeChar = (L2PcInstance) playable;

int itemId = item.getItemId();

 

if(activeChar.isParalyzed())

{

activeChar.sendMessage("Вы не можете использовать, когда вы парализованы!");

activeChar.sendPacket(ActionFailed.STATIC_PACKET);

return;

}

 

if(itemId == 50000) // Token of Love

{

{

MagicSkillUser MSU = new MagicSkillUser(playable, activeChar, 2140, 1, 1, 0);

activeChar.broadcastPacket(MSU);

PlaySound _snd3 = new PlaySound(1, "triple_kill", 0, 0, 0, 0, 0);

activeChar.sendPacket(_snd3);

playable.destroyItem("Consume", item.getObjectId(), 1, null, false);

}

activeChar = null;

}

else if(itemId == 50001) // Token of Love

{

{

MagicSkillUser MSU = new MagicSkillUser(playable, activeChar, 2140, 1, 1, 0);

activeChar.broadcastPacket(MSU);

PlaySound _snd3 = new PlaySound(1, "triple_kill", 0, 0, 0, 0, 0);

activeChar.sendPacket(_snd3);

playable.destroyItem("Consume", item.getObjectId(), 1, null, false);

}

activeChar = null;

}

else if(itemId == 50002) // Token of Love

{

{

MagicSkillUser MSU = new MagicSkillUser(playable, activeChar, 2140, 1, 1, 0);

activeChar.broadcastPacket(MSU);

PlaySound _snd3 = new PlaySound(1, "triple_kill", 0, 0, 0, 0, 0);

activeChar.sendPacket(_snd3);

playable.destroyItem("Consume", item.getObjectId(), 1, null, false);

}

activeChar = null;

}

else if(itemId == 50003) // Token of Love

{

{

MagicSkillUser MSU = new MagicSkillUser(playable, activeChar, 2140, 1, 1, 0);

activeChar.broadcastPacket(MSU);

PlaySound _snd3 = new PlaySound(1, "triple_kill", 0, 0, 0, 0, 0);

activeChar.sendPacket(_snd3);

playable.destroyItem("Consume", item.getObjectId(), 1, null, false);

}

activeChar = null;

}

else if(itemId == 50004) // Token of Love

{

{

MagicSkillUser MSU = new MagicSkillUser(playable, activeChar, 2140, 1, 1, 0);

activeChar.broadcastPacket(MSU);

PlaySound _snd3 = new PlaySound(1, "triple_kill", 0, 0, 0, 0, 0);

activeChar.sendPacket(_snd3);

playable.destroyItem("Consume", item.getObjectId(), 1, null, false);

}

activeChar = null;

}

else if(itemId == 50005) // Token of Love

{

{

MagicSkillUser MSU = new MagicSkillUser(playable, activeChar, 2140, 1, 1, 0);

activeChar.broadcastPacket(MSU);

PlaySound _snd3 = new PlaySound(1, "triple_kill", 0, 0, 0, 0, 0);

activeChar.sendPacket(_snd3);

playable.destroyItem("Consume", item.getObjectId(), 1, null, false);

}

activeChar = null;

}

else if(itemId == 50006) // Token of Love

{

{

MagicSkillUser MSU = new MagicSkillUser(playable, activeChar, 2140, 1, 1, 0);

activeChar.broadcastPacket(MSU);

PlaySound _snd3 = new PlaySound(1, "triple_kill", 0, 0, 0, 0, 0);

activeChar.sendPacket(_snd3);

playable.destroyItem("Consume", item.getObjectId(), 1, null, false);

}

activeChar = null;

}

}

 

/**

* @see com.l2jfrozen.gameserver.handler.IItemHandler#getItemIds()

*/

@Override

public int[] getItemIds()

{

return _itemIds;

}

}

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

При компиляции пишет ошибку

 

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\CharDeleteFail.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\CharDeleteOk.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\CharInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\CharMoveToLocation.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\CharSelectInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\CharSelected.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\CharTemplates.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ChooseInventoryItem.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ClanHallDecoration.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ClientSetTime.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ConfirmDlg.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\CreatureSay.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\CustomNpcInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\DeleteObject.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\Dice.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\Die.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\DoorInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\DoorStatusUpdate.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\DropItem.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\Earthquake.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\EnchantResult.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\EquipUpdate.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\EtcStatusUpdate.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExAskJoinMPCC.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExAskJoinPartyRoom.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExAutoSoulShot.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExCaptureOrc.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExCloseMPCC.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExClosePartyRoom.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExConfirmCancelItem.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExConfirmVariationGemstone.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExConfirmVariationItem.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExConfirmVariationRefiner.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExCursedWeaponList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExCursedWeaponLocation.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExDuelAskStart.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExDuelEnd.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExDuelReady.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExDuelStart.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExDuelUpdateUserInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExEnchantSkillInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExEnchantSkillList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExFishingEnd.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExFishingHpRegen.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExFishingStart.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExFishingStartCombat.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExGetBossRecord.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExHeroList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExListPartyMatchingWaitingRoom.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExMPCCShowPartyMemberInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExMailArrived.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExManagePartyRoomMember.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExMultiPartyCommandChannelInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExOlympiadMode.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExOlympiadSpelledInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExOlympiadUserInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExOpenMPCC.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExOrcMove.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExPCCafePointInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExPartyRoomMember.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExPledgeCrestLarge.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExQuestInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExRedSky.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExRequestHackShield.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExRestartClient.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExSendManorList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExSetCompassZoneCode.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExShowAdventurerGuideBook.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExShowCropInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExShowCropSetting.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExShowManorDefaultInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExShowProcureCropDetail.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExShowQuestMark.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExShowScreenMessage.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExShowSeedInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExShowSeedSetting.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExShowSellCropList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExShowVariationCancelWindow.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExShowVariationMakeWindow.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExStorageMaxCount.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExUseSharedGroupItem.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExVariationCancelResult.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ExVariationResult.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\FinishRotation.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\FortSiegeAttackerList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\FortSiegeDefenderList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\FortressSiegeInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\FriendList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\FriendRecvMsg.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\GMViewCharacterInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\GMViewItemList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\GMViewPledgeInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\GMViewQuestList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\GMViewSkillInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\GMViewWarehouseWithdrawList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\GameGuardQuery.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\GetItem.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\GetOffVehicle.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\GetOnVehicle.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\HennaEquipList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\HennaInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\HennaItemInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\InventoryUpdate.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ItemList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\JoinParty.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\JoinPledge.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\KeyPacket.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\L2GameServerPacket.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\LeaveWorld.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\MagicEffectIcons.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\MagicSkillCanceld.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\MagicSkillLaunched.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\MagicSkillUser.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ManagePledgePower.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\MonRaceInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\MoveOnVehicle.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\MoveToLocationInVehicle.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\MoveToPawn.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\MultiSellList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\MyTargetSelected.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\NormalCamera.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\NpcHtmlMessage.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\NpcInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\NpcInfoPoly.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ObservationMode.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ObservationReturn.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\OnVehicleCheckLocation.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PackageSendableList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PackageToList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PartyMatchDetail.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PartyMatchList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PartyMemberPosition.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PartySmallWindowAdd.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PartySmallWindowAll.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PartySmallWindowDelete.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PartySmallWindowDeleteAll.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PartySmallWindowUpdate.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PartySpelled.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PetDelete.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PetInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PetInventoryUpdate.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PetItemList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PetStatusShow.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PetStatusUpdate.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PlaySound.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PledgeCrest.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PledgeInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PledgePowerGradeList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PledgeReceiveMemberInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PledgeReceivePowerInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PledgeReceiveSubPledgeCreated.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PledgeReceiveWarList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PledgeShowInfoUpdate.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PledgeShowMemberListAdd.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PledgeShowMemberListAll.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PledgeShowMemberListDelete.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PledgeShowMemberListDeleteAll.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PledgeShowMemberListUpdate.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PledgeSkillList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PledgeSkillListAdd.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PledgeStatusChanged.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PrivateStoreListBuy.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PrivateStoreListSell.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PrivateStoreManageListBuy.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PrivateStoreManageListSell.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PrivateStoreMsgBuy.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\PrivateStoreMsgSell.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\QuestList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\RadarControl.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\RecipeBookItemList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\RecipeItemMakeInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\RecipeShopItemInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\RecipeShopManageList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\RecipeShopMsg.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\RecipeShopSellList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\RelationChanged.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\RestartResponse.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\Revive.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\Ride.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\SSQStatus.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\SellList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\SellListProcure.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\SendMacroList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\SendStatus.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\SendTradeDone.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\SendTradeRequest.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ServerClose.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\SetSummonRemainTime.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\SetToLocation.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\SetupGauge.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ShortBuffStatusUpdate.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ShortCutInit.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ShortCutRegister.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ShowBoard.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ShowCalculator.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ShowMiniMap.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ShowPCCafeCouponShowUI.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ShowTownMap.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ShowXMasSeal.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\SiegeAttackerList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\SiegeDefenderList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\SiegeInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\SignsSky.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\SkillList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\Snoop.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\SocialAction.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\SpawnItem.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\SpawnItemPoly.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\SpecialCamera.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\StartPledgeWar.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\StaticObject.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\StatusUpdate.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\StopMove.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\StopMoveInVehicle.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\StopPledgeWar.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\StopRotation.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\SunRise.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\SunSet.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\SurrenderPledgeWar.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\SystemMessage.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\TargetSelected.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\TargetUnselected.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\TeleportToLocation.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\TitleUpdate.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\TradeOtherAdd.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\TradeOwnAdd.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\TradePressOtherOk.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\TradePressOwnOk.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\TradeStart.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\TradeUpdate.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\TutorialCloseHtml.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\TutorialEnableClientEvent.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\TutorialShowHtml.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\TutorialShowQuestionMark.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\UserInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ValidateLocation.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\ValidateLocationInVehicle.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\VehicleDeparture.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\VehicleInfo.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\WareHouseDepositList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\WareHouseWithdrawalList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\network\serverpackets\WearList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\powerpak\Buffer\BuffHandler.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\powerpak\Buffer\BuffTable.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\powerpak\Buffer\L2BufferInstance.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\powerpak\L2Utils.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\powerpak\PowerPak.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\powerpak\PowerPakConfig.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\powerpak\RaidInfo\RaidInfoHandler.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\powerpak\Servers\Services\PayStream.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\powerpak\Servers\Services\SMSOnline.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\powerpak\Servers\WebServer.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\powerpak\StringTable.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\powerpak\engrave\EngraveExtender.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\powerpak\engrave\EngraveManager.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\powerpak\engrave\EngraveQuest.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\powerpak\globalGK\GKHandler.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\powerpak\gmshop\GMShop.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\powerpak\vote\L2TopDeamon.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\powerpak\xmlrpc\Server.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\powerpak\xmlrpc\XMLRPCServer.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\script\DateRange.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\script\EngineInterface.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\script\EventDroplist.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\script\Expression.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\script\IntList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\script\Parser.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\script\ParserFactory.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\script\ParserNotCreatedException.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\script\ScriptDocument.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\script\ScriptEngine.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\script\ScriptPackage.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\script\ShortList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\script\faenor\FaenorEventParser.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\script\faenor\FaenorInterface.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\script\faenor\FaenorParser.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\script\faenor\FaenorQuestParser.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\script\faenor\FaenorScriptEngine.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\script\faenor\FaenorWorldDataParser.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\scripting\CompiledScriptCache.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\scripting\CompiledScriptHolder.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\scripting\L2ScriptEngineManager.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\scripting\ManagedScript.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\scripting\ScriptManager.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\BaseStats.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\Calculator.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\DocumentBase.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\DocumentItem.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\DocumentSkill.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\Env.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\Formulas.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\SkillHolder.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\SkillsEngine.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\Stats.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\Condition.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionElementSeed.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionForceBuff.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionGameChance.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionGameTime.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionInventory.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionItemId.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionListener.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionLogicAnd.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionLogicNot.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionLogicOr.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionPlayerBaseStats.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionPlayerHp.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionPlayerHpPercentage.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionPlayerLevel.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionPlayerMp.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionPlayerRace.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionPlayerState.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionSkillStats.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionSlotItemId.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionSlotItemType.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionTargetAggro.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionTargetBodyPart.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionTargetClassIdRestriction.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionTargetLevel.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionTargetNone.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionTargetPvp.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionTargetRaceId.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionTargetUsesWeaponKind.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionUsingItemType.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionUsingSkill.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\conditions\ConditionWithSkill.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectBattleForce.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectBestowSkill.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectBetray.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectBigHead.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectBlockBuff.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectBluff.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectBuff.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectCancel.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectChameleonRest.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectCharge.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectCharmOfLuck.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectClanGate.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectCombatPointHealOverTime.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectConfuseMob.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectConfusion.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectDamOverTime.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectDebuff.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectDeflectBuff.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectFakeDeath.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectFear.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectForce.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectFusion.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectGrow.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectHealOverTime.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectImmobileUntilAttacked.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectImobileBuff.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectImobilePetBuff.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectInterrupt.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectInvincible.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectManaDamOverTime.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectManaHealOverTime.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectMeditation.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectMute.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectNegate.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectNoblesseBless.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectParalyze.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectPetrification.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectPhoenixBless.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectProtectionBlessing.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectPsychicalMute.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectRelax.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectRemoveTarget.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectRoot.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectSeed.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectSignet.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectSignetAntiSummon.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectSignetMDam.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectSignetNoise.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectSilenceMagicPhysical.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectSilentMove.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectSleep.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectSpellForce.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectStun.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectStunSelf.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectTargetMe.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\effects\EffectTemplate.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\funcs\Func.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\funcs\FuncAdd.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\funcs\FuncBaseMul.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\funcs\FuncDiv.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\funcs\FuncEnchant.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\funcs\FuncMul.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\funcs\FuncSet.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\funcs\FuncSub.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\funcs\FuncTemplate.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\funcs\Lambda.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\funcs\LambdaCalc.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\funcs\LambdaConst.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\funcs\LambdaRnd.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\funcs\LambdaStats.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\l2skills\L2SkillCharge.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\l2skills\L2SkillChargeDmg.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\l2skills\L2SkillChargeEffect.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\l2skills\L2SkillCreateItem.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\l2skills\L2SkillDefault.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\l2skills\L2SkillDrain.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\l2skills\L2SkillElemental.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\l2skills\L2SkillSeed.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\l2skills\L2SkillSignet.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\l2skills\L2SkillSignetCasttime.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\skills\l2skills\L2SkillSummon.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\taskmanager\AttackStanceTaskManager.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\taskmanager\DecayTaskManager.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\taskmanager\ExclusiveTask.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\taskmanager\KnownListUpdateTaskManager.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\taskmanager\Task.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\taskmanager\TaskManager.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\taskmanager\TaskTypes.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\taskmanager\tasks\TaskCleanUp.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\taskmanager\tasks\TaskJython.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\taskmanager\tasks\TaskOlympiadSave.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\taskmanager\tasks\TaskRaidPointsReset.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\taskmanager\tasks\TaskRecom.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\taskmanager\tasks\TaskRestart.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\taskmanager\tasks\TaskSevenSignsUpdate.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\taskmanager\tasks\TaskShutdown.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\templates\L2Armor.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\templates\L2ArmorType.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\templates\L2CharTemplate.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\templates\L2EtcItem.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\templates\L2EtcItemType.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\templates\L2HelperBuff.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\templates\L2Henna.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\templates\L2Item.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\templates\L2ItemType.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\templates\L2NpcTemplate.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\templates\L2PcTemplate.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\templates\L2Weapon.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\templates\L2WeaponType.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\templates\StatsSet.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\thread\L2Thread.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\thread\LoginServerThread.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\thread\RunnableStatsManager.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\thread\TaskPriority.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\thread\ThreadPoolManager.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\thread\daemons\AutoSave.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\thread\daemons\DeadlockDetector.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\thread\daemons\ItemsAutoDestroy.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\thread\daemons\PcPoint.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\updaters\CastleUpdater.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\util\Broadcast.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\util\DynamicExtension.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\util\EventData.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\util\ExtensionFunction.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\util\FloodProtectorAction.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\util\FloodProtectorConfig.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\util\FloodProtectors.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\util\GMAudit.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\util\IllegalPlayerAction.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\util\JarClassLoader.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\util\MinionList.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\util\MultiSort.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\util\Util.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\util\sql\SQLQuery.java modified in the future.

[javac] Warning: com\l2jfrozen\gameserver\util\sql\SQLQueue.java modified in the future.

[javac] Warning: com\l2jfrozen\gsregistering\GameServerRegister.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\FloodProtectedListener.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\GameServerListener.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\GameServerThread.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\HackingException.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\L2LoginClient.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\L2LoginPacketHandler.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\L2LoginServer.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\LoginController.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\SelectorHelper.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\SessionKey.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\network\clientpackets\AuthGameGuard.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\network\clientpackets\ClientBasePacket.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\network\clientpackets\L2LoginClientPacket.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\network\clientpackets\RequestAuthLogin.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\network\clientpackets\RequestServerList.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\network\clientpackets\RequestServerLogin.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\network\gameserverpackets\BlowFishKey.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\network\gameserverpackets\ChangeAccessLevel.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\network\gameserverpackets\GameServerAuth.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\network\gameserverpackets\PlayerAuthRequest.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\network\gameserverpackets\PlayerInGame.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\network\gameserverpackets\PlayerLogout.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\network\gameserverpackets\ServerStatus.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\network\loginserverpackets\AuthResponse.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\network\loginserverpackets\InitLS.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\network\loginserverpackets\KickPlayer.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\network\loginserverpackets\LoginServerFail.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\network\loginserverpackets\PlayerAuthResponse.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\network\serverpackets\AccountKicked.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\network\serverpackets\GGAuth.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\network\serverpackets\Init.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\network\serverpackets\L2LoginServerPacket.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\network\serverpackets\LoginFail.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\network\serverpackets\LoginOk.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\network\serverpackets\PlayFail.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\network\serverpackets\PlayOk.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\network\serverpackets\ServerBasePacket.java modified in the future.

[javac] Warning: com\l2jfrozen\loginserver\network\serverpackets\ServerList.java modified in the future.

[javac] Warning: com\l2jfrozen\logs\AuditFilter.java modified in the future.

[javac] Warning: com\l2jfrozen\logs\AuditFormatter.java modified in the future.

[javac] Warning: com\l2jfrozen\logs\AuditLogHandler.java modified in the future.

[javac] Warning: com\l2jfrozen\logs\ChatFilter.java modified in the future.

[javac] Warning: com\l2jfrozen\logs\ChatLogFormatter.java modified in the future.

[javac] Warning: com\l2jfrozen\logs\ChatLogHandler.java modified in the future.

[javac] Warning: com\l2jfrozen\logs\ConsoleLogFormatter.java modified in the future.

[javac] Warning: com\l2jfrozen\logs\CreateFolders.java modified in the future.

[javac] Warning: com\l2jfrozen\logs\ErrorFilter.java modified in the future.

[javac] Warning: com\l2jfrozen\logs\ErrorLogHandler.java modified in the future.

[javac] Warning: com\l2jfrozen\logs\FileLogFormatter.java modified in the future.

[javac] Warning: com\l2jfrozen\logs\ItemFilter.java modified in the future.

[javac] Warning: com\l2jfrozen\logs\ItemLogFormatter.java modified in the future.

[javac] Warning: com\l2jfrozen\logs\ItemLogHandler.java modified in the future.

[javac] Warning: com\l2jfrozen\logs\Log.java modified in the future.

[javac] Warning: com\l2jfrozen\netcore\AbstractPacket.java modified in the future.

[javac] Warning: com\l2jfrozen\netcore\Config.java modified in the future.

[javac] Warning: com\l2jfrozen\netcore\IAcceptFilter.java modified in the future.

[javac] Warning: com\l2jfrozen\netcore\IClientFactory.java modified in the future.

[javac] Warning: com\l2jfrozen\netcore\IMMOExecutor.java modified in the future.

[javac] Warning: com\l2jfrozen\netcore\IPacketHandler.java modified in the future.

[javac] Warning: com\l2jfrozen\netcore\MMOClient.java modified in the future.

[javac] Warning: com\l2jfrozen\netcore\MMOConnection.java modified in the future.

[javac] Warning: com\l2jfrozen\netcore\NioNetStackList.java modified in the future.

[javac] Warning: com\l2jfrozen\netcore\NioNetStringBuffer.java modified in the future.

[javac] Warning: com\l2jfrozen\netcore\ReceivablePacket.java modified in the future.

[javac] Warning: com\l2jfrozen\netcore\SelectorConfig.java modified in the future.

[javac] Warning: com\l2jfrozen\netcore\SelectorThread.java modified in the future.

[javac] Warning: com\l2jfrozen\netcore\SendablePacket.java modified in the future.

[javac] Warning: com\l2jfrozen\status\GameStatusThread.java modified in the future.

[javac] Warning: com\l2jfrozen\status\LoginStatusThread.java modified in the future.

[javac] Warning: com\l2jfrozen\status\Status.java modified in the future.

[javac] Warning: com\l2jfrozen\util\CloseUtil.java modified in the future.

[javac] Warning: com\l2jfrozen\util\IPv4Filter.java modified in the future.

[javac] Warning: com\l2jfrozen\util\L2FastList.java modified in the future.

[javac] Warning: com\l2jfrozen\util\L2FastMap.java modified in the future.

[javac] Warning: com\l2jfrozen\util\Memory.java modified in the future.

[javac] Warning: com\l2jfrozen\util\PacketsFloodProtector.java modified in the future.

[javac] Warning: com\l2jfrozen\util\Point3D.java modified in the future.

[javac] Warning: com\l2jfrozen\util\PrimeFinder.java modified in the future.

[javac] Warning: com\l2jfrozen\util\StringUtil.java modified in the future.

[javac] Warning: com\l2jfrozen\util\Util.java modified in the future.

[javac] Warning: com\l2jfrozen\util\XmlEngine.java modified in the future.

[javac] Warning: com\l2jfrozen\util\database\ConnectionCloser.java modified in the future.

[javac] Warning: com\l2jfrozen\util\database\L2DatabaseFactory.java modified in the future.

[javac] Warning: com\l2jfrozen\util\database\L2DatabaseFactory_BoneCP.java modified in the future.

[javac] Warning: com\l2jfrozen\util\database\L2DatabaseFactory_c3p0.java modified in the future.

[javac] Warning: com\l2jfrozen\util\database\SqlUtils.java modified in the future.

[javac] Warning: com\l2jfrozen\util\object\L2ObjectHashMap.java modified in the future.

[javac] Warning: com\l2jfrozen\util\object\L2ObjectHashSet.java modified in the future.

[javac] Warning: com\l2jfrozen\util\object\L2ObjectMap.java modified in the future.

[javac] Warning: com\l2jfrozen\util\object\L2ObjectSet.java modified in the future.

[javac] Warning: com\l2jfrozen\util\object\WorldObjectMap.java modified in the future.

[javac] Warning: com\l2jfrozen\util\object\WorldObjectSet.java modified in the future.

[javac] Warning: com\l2jfrozen\util\object\WorldObjectTree.java modified in the future.

[javac] Warning: com\l2jfrozen\util\random\Rnd.java modified in the future.

[javac] Compiling 1463 source files to E:\gm\server\Core\Core\build\classes

jar:

[jar] Building jar: E:\gm\server\Core\Core\build\l2jfrozen-core.jar

export:

[copy] Warning: log.cfg modified in the future.

[copy] Warning: servername.xml modified in the future.

[copy] Warning: log.cfg modified in the future.

[copy] Warning: bonecp-0.7.1.RELEASE.jar modified in the future.

[copy] Warning: bsh-2.0b5.jar modified in the future.

[copy] Warning: bsh-engine.jar modified in the future.

[copy] Warning: bsh-engine_LICENSE.txt modified in the future.

[copy] Warning: c3p0-0.9.1.2.jar modified in the future.

[copy] Warning: c3p0_LICENSE.txt modified in the future.

[copy] Warning: commons-lang-2.1.jar modified in the future.

[copy] Warning: ecj-3.6.1.jar modified in the future.

[copy] Warning: google-collect-1.0.jar modified in the future.

[copy] Warning: irclib-1.10.jar modified in the future.

[copy] Warning: java-engine.jar modified in the future.

[copy] Warning: java-engine_LICENSE.txt modified in the future.

[copy] Warning: javolution-5.5.1.jar modified in the future.

[copy] Warning: javolution_LICENSE.txt modified in the future.

[copy] Warning: jython-engine.jar modified in the future.

[copy] Warning: jython-engine_LICENSE.txt modified in the future.

[copy] Warning: jython.jar modified in the future.

[copy] Warning: jython_LICENSE.txt modified in the future.

[copy] Warning: mchange-commons-0.2.jar modified in the future.

[copy] Warning: mysql-connector-java-5.1.15-bin.jar modified in the future.

[copy] Warning: mysql-connector-java_LICENSE.txt modified in the future.

[copy] Warning: slf4j-api-1.6.1.jar modified in the future.

[copy] Warning: ws-commons-util-1.0.2.jar modified in the future.

[copy] Warning: xmlrpc-client-3.1.3.jar modified in the future.

[copy] Warning: xmlrpc-common-3.1.3.jar modified in the future.

[copy] Warning: xmlrpc-server-3.1.3.jar modified in the future.

[copy] Warning: bonecp-0.7.1.RELEASE.jar modified in the future.

[copy] Warning: bsh-2.0b5.jar modified in the future.

[copy] Warning: bsh-engine.jar modified in the future.

[copy] Warning: bsh-engine_LICENSE.txt modified in the future.

[copy] Warning: c3p0-0.9.1.2.jar modified in the future.

[copy] Warning: c3p0_LICENSE.txt modified in the future.

[copy] Warning: commons-lang-2.1.jar modified in the future.

[copy] Warning: ecj-3.6.1.jar modified in the future.

[copy] Warning: google-collect-1.0.jar modified in the future.

[copy] Warning: irclib-1.10.jar modified in the future.

[copy] Warning: java-engine.jar modified in the future.

[copy] Warning: java-engine_LICENSE.txt modified in the future.

[copy] Warning: javolution-5.5.1.jar modified in the future.

[copy] Warning: javolution_LICENSE.txt modified in the future.

[copy] Warning: jython-engine.jar modified in the future.

[copy] Warning: jython-engine_LICENSE.txt modified in the future.

[copy] Warning: jython.jar modified in the future.

[copy] Warning: jython_LICENSE.txt modified in the future.

[copy] Warning: mchange-commons-0.2.jar modified in the future.

[copy] Warning: mysql-connector-java-5.1.15-bin.jar modified in the future.

[copy] Warning: mysql-connector-java_LICENSE.txt modified in the future.

[copy] Warning: slf4j-api-1.6.1.jar modified in the future.

[copy] Warning: ws-commons-util-1.0.2.jar modified in the future.

[copy] Warning: xmlrpc-client-3.1.3.jar modified in the future.

[copy] Warning: xmlrpc-common-3.1.3.jar modified in the future.

[copy] Warning: xmlrpc-server-3.1.3.jar modified in the future.

[copy] Warning: LoginServer_loop.sh modified in the future.

[copy] Warning: RegisterGameServer.bat modified in the future.

[copy] Warning: RegisterGameServer.sh modified in the future.

[copy] Warning: anti_ddos.sh modified in the future.

[copy] Warning: startLoginServer.bat modified in the future.

[copy] Warning: GameServer_loop.sh modified in the future.

[copy] Warning: startBackup.bat modified in the future.

[copy] Warning: startBackup.sh modified in the future.

[copy] Warning: startGameServer.bat modified in the future.

[copy] Warning: Start_GameServer_noScreen.sh modified in the future.

[copy] Warning: Start_LoginServer_noScreen.sh modified in the future.

[copy] Warning: chatfilter.txt modified in the future.

[copy] Warning: daemons.properties modified in the future.

[copy] Warning: extensions.properties modified in the future.

[copy] Warning: idfactory.properties modified in the future.

[copy] Warning: key.cfg modified in the future.

[copy] Warning: olympiad.info modified in the future.

[copy] Warning: questionwords.txt modified in the future.

[copy] Warning: script.properties modified in the future.

[copy] Warning: telnet.properties modified in the future.

[copy] Warning: flood.properties modified in the future.

[copy] Warning: mmocore.properties modified in the future.

[copy] Warning: other.properties modified in the future.

[copy] Warning: packets.properties modified in the future.

[copy] Warning: access.properties modified in the future.

[copy] Warning: classDamages.properties modified in the future.

[copy] Warning: crafting.properties modified in the future.

[copy] Warning: developer.properties modified in the future.

[copy] Warning: l2jfrozen.properties modified in the future.

[copy] Warning: physics.properties modified in the future.

[copy] Warning: powerpak.properties modified in the future.

[copy] Warning: pvp.properties modified in the future.

[copy] Warning: altsettings.properties modified in the future.

[copy] Warning: boss.properties modified in the future.

[copy] Warning: clanhall.properties modified in the future.

[copy] Warning: elitclanhall.properties modified in the future.

[copy] Warning: enchant.properties modified in the future.

[copy] Warning: fort.properties modified in the future.

[copy] Warning: geodata.properties modified in the future.

[copy] Warning: olympiad.properties modified in the future.

[copy] Warning: options.properties modified in the future.

[copy] Warning: other.properties modified in the future.

[copy] Warning: rates.properties modified in the future.

[copy] Warning: sevensigns.properties modified in the future.

[copy] Warning: siege.properties modified in the future.

[copy] Warning: powerpak.properties modified in the future.

[copy] Warning: websevices.properties modified in the future.

[copy] Warning: xmlrpc.service modified in the future.

[copy] Warning: paystream.properties modified in the future.

[copy] Warning: smsonline.properties modified in the future.

[copy] Warning: ctf.properties modified in the future.

[copy] Warning: dm.properties modified in the future.

[copy] Warning: eventmanager.properties modified in the future.

[copy] Warning: frozen.properties modified in the future.

[copy] Warning: irc.properties modified in the future.

[copy] Warning: tvt.properties modified in the future.

[copy] Warning: tw.properties modified in the future.

[copy] Warning: away.properties modified in the future.

[copy] Warning: bank.properties modified in the future.

[copy] Warning: champion.properties modified in the future.

[copy] Warning: offline.properties modified in the future.

[copy] Warning: pcBang.properties modified in the future.

[copy] Warning: rebirth.properties modified in the future.

[copy] Warning: wedding.properties modified in the future.

[copy] Warning: gameserver.properties modified in the future.

[copy] Warning: banned_ip.cfg modified in the future.

[copy] Warning: log.cfg modified in the future.

[copy] Warning: servername.xml modified in the future.

[copy] Warning: banned_ip.cfg modified in the future.

[copy] Warning: telnet.properties modified in the future.

[copy] Warning: mmocore.properties modified in the future.

[copy] Warning: loginserver.properties modified in the future.

[delete] Deleting directory E:\gm\server\Core\Core\build\classes

[delete] Deleting: E:\gm\server\Core\Core\build\l2jfrozen-core.jar

dist-local:

[zip] Warning: gameserver modified in the future.

[zip] Warning: gameserver\config modified in the future.

[zip] Warning: gameserver\config\frozen modified in the future.

[zip] Warning: gameserver\config\fun modified in the future.

[zip] Warning: gameserver\config\functions modified in the future.

[zip] Warning: gameserver\config\head modified in the future.

[zip] Warning: gameserver\config\network modified in the future.

[zip] Warning: gameserver\config\powerpak modified in the future.

[zip] Warning: gameserver\config\powerpak\webservices modified in the future.

[zip] Warning: gameserver\config\protected modified in the future.

[zip] Warning: gameserver\config\version modified in the future.

[zip] Warning: gameserver\lib modified in the future.

[zip] Warning: gameserver\log modified in the future.

[zip] Warning: loginserver modified in the future.

[zip] Warning: loginserver\config modified in the future.

[zip] Warning: loginserver\config\network modified in the future.

[zip] Warning: loginserver\config\protected modified in the future.

[zip] Warning: loginserver\lib modified in the future.

[zip] Warning: loginserver\log modified in the future.

[zip] Warning: Start_GameServer_noScreen.sh modified in the future.

[zip] Warning: Start_LoginServer_noScreen.sh modified in the future.

[zip] Warning: gameserver\GameServer_loop.sh modified in the future.

[zip] Warning: gameserver\banned_ip.cfg modified in the future.

[zip] Warning: gameserver\config\chatfilter.txt modified in the future.

[zip] Warning: gameserver\config\daemons.properties modified in the future.

[zip] Warning: gameserver\config\extensions.properties modified in the future.

[zip] Warning: gameserver\config\frozen\ctf.properties modified in the future.

[zip] Warning: gameserver\config\frozen\dm.properties modified in the future.

[zip] Warning: gameserver\config\frozen\eventmanager.properties modified in the future.

[zip] Warning: gameserver\config\frozen\frozen.properties modified in the future.

[zip] Warning: gameserver\config\frozen\irc.properties modified in the future.

[zip] Warning: gameserver\config\frozen\tvt.properties modified in the future.

[zip] Warning: gameserver\config\frozen\tw.properties modified in the future.

[zip] Warning: gameserver\config\fun\away.properties modified in the future.

[zip] Warning: gameserver\config\fun\bank.properties modified in the future.

[zip] Warning: gameserver\config\fun\champion.properties modified in the future.

[zip] Warning: gameserver\config\fun\offline.properties modified in the future.

[zip] Warning: gameserver\config\fun\pcBang.properties modified in the future.

[zip] Warning: gameserver\config\fun\rebirth.properties modified in the future.

[zip] Warning: gameserver\config\fun\wedding.properties modified in the future.

[zip] Warning: gameserver\config\functions\access.properties modified in the future.

[zip] Warning: gameserver\config\functions\classDamages.properties modified in the future.

[zip] Warning: gameserver\config\functions\crafting.properties modified in the future.

[zip] Warning: gameserver\config\functions\developer.properties modified in the future.

[zip] Warning: gameserver\config\functions\l2jfrozen.properties modified in the future.

[zip] Warning: gameserver\config\functions\physics.properties modified in the future.

[zip] Warning: gameserver\config\functions\powerpak.properties modified in the future.

[zip] Warning: gameserver\config\functions\pvp.properties modified in the future.

[zip] Warning: gameserver\config\head\altsettings.properties modified in the future.

[zip] Warning: gameserver\config\head\boss.properties modified in the future.

[zip] Warning: gameserver\config\head\clanhall.properties modified in the future.

[zip] Warning: gameserver\config\head\elitclanhall.properties modified in the future.

[zip] Warning: gameserver\config\head\enchant.properties modified in the future.

[zip] Warning: gameserver\config\head\fort.properties modified in the future.

[zip] Warning: gameserver\config\head\geodata.properties modified in the future.

[zip] Warning: gameserver\config\head\olympiad.properties modified in the future.

[zip] Warning: gameserver\config\head\options.properties modified in the future.

[zip] Warning: gameserver\config\head\other.properties modified in the future.

[zip] Warning: gameserver\config\head\rates.properties modified in the future.

[zip] Warning: gameserver\config\head\sevensigns.properties modified in the future.

[zip] Warning: gameserver\config\head\siege.properties modified in the future.

[zip] Warning: gameserver\config\idfactory.properties modified in the future.

[zip] Warning: gameserver\config\key.cfg modified in the future.

[zip] Warning: gameserver\config\network\gameserver.properties modified in the future.

[zip] Warning: gameserver\config\olympiad.info modified in the future.

[zip] Warning: gameserver\config\powerpak\powerpak.properties modified in the future.

[zip] Warning: gameserver\config\powerpak\webservices\paystream.properties modified in the future.

[zip] Warning: gameserver\config\powerpak\webservices\smsonline.properties modified in the future.

[zip] Warning: gameserver\config\powerpak\websevices.properties modified in the future.

[zip] Warning: gameserver\config\powerpak\xmlrpc.service modified in the future.

[zip] Warning: gameserver\config\protected\flood.properties modified in the future.

[zip] Warning: gameserver\config\protected\mmocore.properties modified in the future.

[zip] Warning: gameserver\config\protected\other.properties modified in the future.

[zip] Warning: gameserver\config\protected\packets.properties modified in the future.

[zip] Warning: gameserver\config\questionwords.txt modified in the future.

[zip] Warning: gameserver\config\script.properties modified in the future.

[zip] Warning: gameserver\config\telnet.properties modified in the future.

[zip] Warning: gameserver\lib\bonecp-0.7.1.RELEASE.jar modified in the future.

[zip] Warning: gameserver\lib\bsh-2.0b5.jar modified in the future.

[zip] Warning: gameserver\lib\bsh-engine.jar modified in the future.

[zip] Warning: gameserver\lib\bsh-engine_LICENSE.txt modified in the future.

[zip] Warning: gameserver\lib\c3p0-0.9.1.2.jar modified in the future.

[zip] Warning: gameserver\lib\c3p0_LICENSE.txt modified in the future.

[zip] Warning: gameserver\lib\commons-lang-2.1.jar modified in the future.

[zip] Warning: gameserver\lib\ecj-3.6.1.jar modified in the future.

[zip] Warning: gameserver\lib\google-collect-1.0.jar modified in the future.

[zip] Warning: gameserver\lib\irclib-1.10.jar modified in the future.

[zip] Warning: gameserver\lib\java-engine.jar modified in the future.

[zip] Warning: gameserver\lib\java-engine_LICENSE.txt modified in the future.

[zip] Warning: gameserver\lib\javolution-5.5.1.jar modified in the future.

[zip] Warning: gameserver\lib\javolution_LICENSE.txt modified in the future.

[zip] Warning: gameserver\lib\jython-engine.jar modified in the future.

[zip] Warning: gameserver\lib\jython-engine_LICENSE.txt modified in the future.

[zip] Warning: gameserver\lib\jython.jar modified in the future.

[zip] Warning: gameserver\lib\jython_LICENSE.txt modified in the future.

[zip] Warning: gameserver\lib\l2jfrozen-core.jar modified in the future.

[zip] Warning: gameserver\lib\mchange-commons-0.2.jar modified in the future.

[zip] Warning: gameserver\lib\mysql-connector-java-5.1.15-bin.jar modified in the future.

[zip] Warning: gameserver\lib\mysql-connector-java_LICENSE.txt modified in the future.

[zip] Warning: gameserver\lib\slf4j-api-1.6.1.jar modified in the future.

[zip] Warning: gameserver\lib\ws-commons-util-1.0.2.jar modified in the future.

[zip] Warning: gameserver\lib\xmlrpc-client-3.1.3.jar modified in the future.

[zip] Warning: gameserver\lib\xmlrpc-common-3.1.3.jar modified in the future.

[zip] Warning: gameserver\lib\xmlrpc-server-3.1.3.jar modified in the future.

[zip] Warning: gameserver\log.cfg modified in the future.

[zip] Warning: gameserver\servername.xml modified in the future.

[zip] Warning: gameserver\startBackup.bat modified in the future.

[zip] Warning: gameserver\startBackup.sh modified in the future.

[zip] Warning: gameserver\startGameServer.bat modified in the future.

[zip] Warning: loginserver\LoginServer_loop.sh modified in the future.

[zip] Warning: loginserver\RegisterGameServer.bat modified in the future.

[zip] Warning: loginserver\RegisterGameServer.sh modified in the future.

[zip] Warning: loginserver\anti_ddos.sh modified in the future.

[zip] Warning: loginserver\config\banned_ip.cfg modified in the future.

[zip] Warning: loginserver\config\network\loginserver.properties modified in the future.

[zip] Warning: loginserver\config\protected\mmocore.properties modified in the future.

[zip] Warning: loginserver\config\telnet.properties modified in the future.

[zip] Warning: loginserver\lib\bonecp-0.7.1.RELEASE.jar modified in the future.

[zip] Warning: loginserver\lib\bsh-2.0b5.jar modified in the future.

[zip] Warning: loginserver\lib\bsh-engine.jar modified in the future.

[zip] Warning: loginserver\lib\bsh-engine_LICENSE.txt modified in the future.

[zip] Warning: loginserver\lib\c3p0-0.9.1.2.jar modified in the future.

[zip] Warning: loginserver\lib\c3p0_LICENSE.txt modified in the future.

[zip] Warning: loginserver\lib\commons-lang-2.1.jar modified in the future.

[zip] Warning: loginserver\lib\ecj-3.6.1.jar modified in the future.

[zip] Warning: loginserver\lib\google-collect-1.0.jar modified in the future.

[zip] Warning: loginserver\lib\irclib-1.10.jar modified in the future.

[zip] Warning: loginserver\lib\java-engine.jar modified in the future.

[zip] Warning: loginserver\lib\java-engine_LICENSE.txt modified in the future.

[zip] Warning: loginserver\lib\javolution-5.5.1.jar modified in the future.

[zip] Warning: loginserver\lib\javolution_LICENSE.txt modified in the future.

[zip] Warning: loginserver\lib\jython-engine.jar modified in the future.

[zip] Warning: loginserver\lib\jython-engine_LICENSE.txt modified in the future.

[zip] Warning: loginserver\lib\jython.jar modified in the future.

[zip] Warning: loginserver\lib\jython_LICENSE.txt modified in the future.

[zip] Warning: loginserver\lib\l2jfrozen-core.jar modified in the future.

[zip] Warning: loginserver\lib\mchange-commons-0.2.jar modified in the future.

[zip] Warning: loginserver\lib\mysql-connector-java-5.1.15-bin.jar modified in the future.

[zip] Warning: loginserver\lib\mysql-connector-java_LICENSE.txt modified in the future.

[zip] Warning: loginserver\lib\slf4j-api-1.6.1.jar modified in the future.

[zip] Warning: loginserver\lib\ws-commons-util-1.0.2.jar modified in the future.

[zip] Warning: loginserver\lib\xmlrpc-client-3.1.3.jar modified in the future.

[zip] Warning: loginserver\lib\xmlrpc-common-3.1.3.jar modified in the future.

[zip] Warning: loginserver\lib\xmlrpc-server-3.1.3.jar modified in the future.

[zip] Warning: loginserver\log.cfg modified in the future.

[zip] Warning: loginserver\servername.xml modified in the future.

[zip] Warning: loginserver\startLoginServer.bat modified in the future.

BUILD SUCCESSFUL

Total time: 32 seconds

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

Кароче я добавил все в исходники,скомпилил сборку,в базе сделал в etcitem итем просто взял кристал музыкальный 4412 заменил на ид 50000 как в исходнике,все сборка запустилась, жму на итем и 0 реакций,че делать?

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

А название песни с папки music и в коде совпадают?

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

ну triple_kill же, то да,+ даже нету анимации когда нажимаю на итем,хз в чем трабла

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты
А название песни с папки music и в коде совпадают?

Да неужели мы тупые такие)

:rolleyes: конечно совпадает...нету реакции вообще...понимаешь?)

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

2iceman

 

Кста, ты ставил? пробовал?так активно отписываешь...

:rolleyes: шота спать хачу...

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

я как бы не говорил что кто то тупуй!)

завтро проверю если время будет)

если конечно сами не сделаете

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты
я как бы не говорил что кто то тупуй!)

завтро проверю если время будет)

если конечно сами не сделаете

я вооще чувствую что кк то перепишу CrystalCarol.java да и все :rolleyes:

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

Зачем вам это вообще нужно?

Что бы нарушать права не только нксофта а и авторские права исполнителей тех песен?

 

Да и народу оно по сути и нафиг не нужно в основном, только патчи гигантские клепать.

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

Зачем вам это вообще нужно?

Что бы нарушать права не только нксофта а и авторские права исполнителей тех песен?

 

Да и народу оно по сути и нафиг не нужно в основном, только патчи гигантские клепать.

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты
Зачем вам это вообще нужно?

Что бы нарушать права не только нксофта а и авторские права исполнителей тех песен?

 

Да и народу оно по сути и нафиг не нужно в основном, только патчи гигантские клепать.

Права НЦСОФТ-а были нарушены еще тогда, когда в 2004 году произошла утечка серверной части Lineage II...так по сути можно сказать, что те разрабы, которые в привате, в шаре работают с исходниками даже теми же, выпускают свои ревизии - тоже нарушают его...имхо...так что...мне как то пофиг... <_<

 

народ юзает исходники, ставят свои сервера, донат, итд...они не делятся с НЦСОФТом...это тоже нарушение авторских прав...но людей не садят...не ебут за это...так что...все нормально

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

С каких это пор исходники эмулятора и пожертвования нарушают чьи то права?

Единственное нарушение которое можно предъявить непосредственно к самому эмулятору, это то что идет копирование игрового мира, и только в том случае если это максимальный "оффлайк".

 

Ну а донат - это пожертвование, а не продажа игровых ценностей, так же как и взятки в реале, если они даются как взятки - это незаконно, если даются как пожертвование и в качестве благодарности вам дают что-то за это, то все вполне легально.

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты
С каких это пор исходники эмулятора и пожертвования нарушают чьи то права?

Единственное нарушение которое можно предъявить непосредственно к самому эмулятору, это то что идет копирование игрового мира, и только в том случае если это максимальный "оффлайк".

 

Ну а донат - это пожертвование, а не продажа игровых ценностей, так же как и взятки в реале, если они даются как взятки - это незаконно, если даются как пожертвование и в качестве благодарности вам дают что-то за это, то все вполне легально.

Ты тупишь...

 

Единственное нарушение которое можно предъявить непосредственно к самому эмулятору, это то что идет копирование игрового мира -

 

это не причина? да ? из за которой вытекает то что в большинстве случаев сервы подымаются для материальной выгоды для себя...а если мы юзаем то, что ТАКИ НАРУШАЕТ тем или инным образом права, да еще и рубим капусту на этом - не банальные ли воры мы??? <_< да еще + не делимся с авторами, ведь именно их серверная часть ушла в шару..именно из за этого разрабы дорасли до того, что таки появились первые эмуляторы файлы которого модифицировались ассемблером, HEX-редакторами и DLL-инъекциями для адаптации сервера к изменениям последующих хроник.

 

я прав...а то что написал ты (Что бы нарушать права не только нксофта а и авторские права исполнителей тех песен?) - БРЕД...имхо

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

Идя по твоей логике, можно так же сказать что если все так просто, то почему же тогда не прикрывают сервера которые имеют общий онлайн как на оффе 3-4 сервера? Или им деньги не нужны с сотен тысяч игроков?

Или почему не прикрывают эмуляторы других игр? Или тех же разработчиков основных.

 

Хотя что с тобой спорить, пусть будет по твоему, а то такое ощущение что у тебя сейчас пена пойдет и за рта и монтировкой начнешь бить по экрану.

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты
Идя по твоей логике, можно так же сказать что если все так просто, то почему же тогда не прикрывают сервера которые имеют общий онлайн как на оффе 3-4 сервера? Или им деньги не нужны с сотен тысяч игроков?

Или почему не прикрывают эмуляторы других игр? Или тех же разработчиков основных.

 

Хотя что с тобой спорить, пусть будет по твоему, а то такое ощущение что у тебя сейчас пена пойдет и за рта и монтировкой начнешь бить по экрану.

что я за тобой заметил - так это то что ты лазишь по темам и срешь, где попало, как маленький котенок, которого не обучили...харош оффтоп свой разводить...80% твоих сообщений - банальная школяцкая критика...ты очень редко можешь помочь...тупая критика..мне тут в теме оффтоп не нужен.чтото не нравится- на форуме для тебя еды хватит...гнилой тролль <_<:unsure:<_<

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

Сори времени особо нету но вот вроде бы нашёл одну ошибку хотя это не ошибка а просто он это упустил

в файле ItemHandler он добавил только импорт а ещё надо в конструктор добавить registerItemHandler(new MusicItem());

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты
Сори времени особо нету но вот вроде бы нашёл одну ошибку хотя это не ошибка а просто он это упустил

в файле ItemHandler он добавил только импорт а ещё надо в конструктор добавить registerItemHandler(new MusicItem());

А нубу можешь разжевать) куда это сунуть? не в ItemHandler? <_<

 

Стоп) он же прописал вот

 

После registerItemHandler(new ChristmasTree());

Ставим registerItemHandler(new MusicItem());

 

 

вродь все хватает)

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

да в этот же файл кароче)

там есть ведь пример)

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

Вопрос к скриптеру.

 

как сделать реализовать чтобы работало сие творение как вещатель.тоесть как реализовано в CrystalCarol.java

 

 

if(itemId == 5562)

{ //crystal_carol_01

MagicSkillUser MSU = new MagicSkillUser(playable, activeChar, 2140, 1, 1, 0);

activeChar.broadcastPacket(MSU);

//playCrystalSound(activeChar,"SkillSound2.crystal_carol_01");

}

 

тоесть с анимацией над головой+ музыка якобы вещалась, за что отвечает activeChar.broadcastPacket(MSU);

 

как такое замутить?

 

 

UP Bопрос отпал

 

 

 

ответ

 

 

 

Вариант 2

Добавил эффект как у оригинальных Echo Crystals

Скрытый текст
/* This program is free software; you can redistribute it and/or modify

* it under the terms of the GNU General Public License as published by

* the Free Software Foundation; either version 2, or (at your option)

* any later version.

*

* This program is distributed in the hope that it will be useful,

* but WITHOUT ANY WARRANTY; without even the implied warranty of

* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the

* GNU General Public License for more details.

*

* You should have received a copy of the GNU General Public License

* along with this program; if not, write to the Free Software

* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA

* 02111-1307, USA.

*

* http://www.gnu.org/copyleft/gpl.html

*/

package com.l2jfrozen.gameserver.handler.itemhandlers;

 

import com.l2jfrozen.gameserver.handler.IItemHandler;

import com.l2jfrozen.gameserver.model.actor.instance.L2ItemInstance;

import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance;

import com.l2jfrozen.gameserver.model.actor.instance.L2PlayableInstance;

import com.l2jfrozen.gameserver.network.serverpackets.ActionFailed;

import com.l2jfrozen.gameserver.network.serverpackets.PlaySound;

import com.l2jfrozen.gameserver.network.serverpackets.MagicSkillUser;

 

/**

* @author devScarlet & mrTJO

*/

public class MusicItem implements IItemHandler

{

private static int[] _itemIds =

{

50000

};

 

@Override

public void useItem(L2PlayableInstance playable, L2ItemInstance item)

{

if(!(playable instanceof L2PcInstance))

return;

 

L2PcInstance activeChar = (L2PcInstance) playable;

int itemId = item.getItemId();

 

if(activeChar.isParalyzed())

{

activeChar.sendMessage("Вы не можете использовать, когда вы парализованы!");

activeChar.sendPacket(ActionFailed.STATIC_PACKET);

return;

}

 

if(itemId == 50000) // Token of Love

{

MagicSkillUser MSU = new MagicSkillUser(playable, activeChar, 2140, 1, 1, 0);

activeChar.broadcastPacket(MSU);

PlaySound _snd3 = new PlaySound(1, "triple_kill", 0, 0, 0, 0, 0);

activeChar.sendPacket(_snd3);

playable.destroyItem("Consume", item.getObjectId(), 1, null, false);

}

activeChar = null;

}

 

/**

* @see com.l2jfrozen.gameserver.handler.IItemHandler#getItemIds()

*/

@Override

public int[] getItemIds()

{

return _itemIds;

}

}

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

Думаю, всем все понятно)

 

Тему можно закрывать?)

Поделиться сообщением


Ссылка на сообщение
Поделиться на другие сайты

Для публикации сообщений создайте учётную запись или авторизуйтесь

Вы должны быть пользователем, чтобы оставить комментарий

Создать учетную запись

Зарегистрируйте новую учётную запись в нашем сообществе. Это очень просто!

Регистрация нового пользователя

Войти

Уже есть аккаунт? Войти в систему.

Войти
Авторизация  

  • Последние посетители   0 пользователей онлайн

    Ни одного зарегистрированного пользователя не просматривает данную страницу

×
×
  • Создать...